class Google::Apis::GenomicsV1beta2::ReadGroupProgram
Attributes
command_line[RW]
The command line used to run this program. Corresponds to the JSON property `commandLine` @return [String]
id[RW]
The user specified locally unique ID of the program. Used along with prevProgramId to define an ordering between programs. Corresponds to the JSON property `id` @return [String]
name[RW]
The name of the program. Corresponds to the JSON property `name` @return [String]
prev_program_id[RW]
The ID of the program run before this one. Corresponds to the JSON property `prevProgramId` @return [String]
version[RW]
The version of the program run. Corresponds to the JSON property `version` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1905 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1910 def update!(**args) @command_line = args[:command_line] unless args[:command_line].nil? @id = args[:id] unless args[:id].nil? @name = args[:name] unless args[:name].nil? @prev_program_id = args[:prev_program_id] unless args[:prev_program_id].nil? @version = args[:version] unless args[:version].nil? end