class Google::Apis::GenomicsV1::Program

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 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` @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_v1/classes.rb, line 1510
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_v1/classes.rb, line 1515
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