Class: Google::Apis::GenomicsV1::Program
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::Program
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/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 display 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) ⇒ Program
constructor
A new instance of Program.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Program
Returns a new instance of Program
1674 1675 1676 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1674 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
1650 1651 1652 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1650 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
1656 1657 1658 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1656 def id @id end |
#name ⇒ String
The display name of the program. This is typically the colloquial name of
the tool used, for example 'bwa' or 'picard'.
Corresponds to the JSON property name
1662 1663 1664 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1662 def name @name end |
#prev_program_id ⇒ String
The ID of the program run before this one.
Corresponds to the JSON property prevProgramId
1667 1668 1669 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1667 def prev_program_id @prev_program_id end |
#version ⇒ String
The version of the program run.
Corresponds to the JSON property version
1672 1673 1674 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1672 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1679 1680 1681 1682 1683 1684 1685 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1679 def update!(**args) @command_line = args[:command_line] if args.key?(:command_line) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @prev_program_id = args[:prev_program_id] if args.key?(:prev_program_id) @version = args[:version] if args.key?(:version) end |