class Google::Apis::GenomicsV1::CallSet
A call set is a collection of variant calls, typically for one sample. It belongs to a variant set. For more genomics resource definitions, see [ Fundamentals of Google Genomics](cloud.google.com/genomics/ fundamentals-of-google-genomics)
Attributes
The date this call set was created in milliseconds from the epoch. Corresponds to the JSON property `created` @return [String]
The server-generated call set ID, unique across all call sets. Corresponds to the JSON property `id` @return [String]
A map of additional call set information. This must be of the form map (string key mapping to a list of string values). Corresponds to the JSON property `info` @return [Hash<String,Array<Object>>]
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. This field must have exactly length one, as a call set belongs to a single variant set. This field is repeated for compatibility with the [GA4GH 0.5.1 API](github.com/ ga4gh/schemas/blob/v0.5.1/src/main/resources/avro/variants.avdl#L76). Corresponds to the JSON property `variantSetIds` @return [Array<String>]
Public Class Methods
# File generated/google/apis/genomics_v1/classes.rb, line 3163 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1/classes.rb, line 3168 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @sample_id = args[:sample_id] if args.key?(:sample_id) @variant_set_ids = args[:variant_set_ids] if args.key?(:variant_set_ids) @created = args[:created] if args.key?(:created) @info = args[:info] if args.key?(:info) end