class Google::Apis::GenomicsV1beta2::CallSet
A call set is a collection of variant calls, typically for one sample. It belongs to a variant set.
Attributes
The date this call set was created in milliseconds from the epoch. Corresponds to the JSON property `created` @return [String]
The Google generated ID of the call set, immutable. Corresponds to the JSON property `id` @return [String]
A string which maps to an array of values. Corresponds to the JSON property `info` @return [Hash<String,Array<String>>]
The call set name. Corresponds to the JSON property `name` @return [String]
The sample ID this call set corresponds to. Corresponds to the JSON property `sampleId` @return [String]
The IDs of the variant sets this call set belongs to. Corresponds to the JSON property `variantSetIds` @return [Array<String>]
Public Class Methods
# File generated/google/apis/genomics_v1beta2/classes.rb, line 475 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 480 def update!(**args) @created = args[:created] unless args[:created].nil? @id = args[:id] unless args[:id].nil? @info = args[:info] unless args[:info].nil? @name = args[:name] unless args[:name].nil? @sample_id = args[:sample_id] unless args[:sample_id].nil? @variant_set_ids = args[:variant_set_ids] unless args[:variant_set_ids].nil? end