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

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 server-generated call set ID, unique across all call sets. Corresponds to the JSON property `id` @return [String]

info[RW]

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>>]

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. 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

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