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

created[RW]

The date this call set was created in milliseconds from the epoch. Corresponds to the JSON property `created` @return [String]

id[RW]

The Google generated ID of the call set, immutable. Corresponds to the JSON property `id` @return [String]

info[RW]

A string which maps to an array of values. Corresponds to the JSON property `info` @return [Hash<String,Array<String>>]

name[RW]

The call set name. Corresponds to the JSON property `name` @return [String]

sample_id[RW]

The sample ID this call set corresponds to. Corresponds to the JSON property `sampleId` @return [String]

variant_set_ids[RW]

The IDs of the variant sets this call set belongs to. Corresponds to the JSON property `variantSetIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 475
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_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