Class: Google::Apis::GenomicsV1beta2::ReadGroupProgram
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::ReadGroupProgram
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#command_line ⇒ String
The command line used to run this program.
-
#id ⇒ String
The user specified locally unique ID of the program.
-
#name ⇒ String
The name of the program.
-
#prev_program_id ⇒ String
The ID of the program run before this one.
-
#version ⇒ String
The version of the program run.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReadGroupProgram
constructor
A new instance of ReadGroupProgram.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReadGroupProgram
Returns a new instance of ReadGroupProgram
1905 1906 1907 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1905 def initialize(**args) update!(**args) end |
Instance Attribute Details
#command_line ⇒ String
The command line used to run this program.
Corresponds to the JSON property commandLine
1882 1883 1884 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1882 def command_line @command_line end |
#id ⇒ String
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
1888 1889 1890 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1888 def id @id end |
#name ⇒ String
The name of the program.
Corresponds to the JSON property name
1893 1894 1895 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1893 def name @name end |
#prev_program_id ⇒ String
The ID of the program run before this one.
Corresponds to the JSON property prevProgramId
1898 1899 1900 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1898 def prev_program_id @prev_program_id end |
#version ⇒ String
The version of the program run.
Corresponds to the JSON property version
1903 1904 1905 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1903 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1910 1911 1912 1913 1914 1915 1916 |
# 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 |