class Google::Apis::GenomicsV1beta2::ReadGroupSet

A read group set is a logical collection of read groups, which are collections of reads produced by a sequencer. A read group set typically models reads corresponding to one sample, sequenced one way, and aligned one way.

Attributes

dataset_id[RW]

The dataset ID. Corresponds to the JSON property `datasetId` @return [String]

filename[RW]

The filename of the original source file for this read group set, if any. Corresponds to the JSON property `filename` @return [String]

id[RW]

The read group set ID. 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 read group set name. By default this will be initialized to the sample name of the sequenced data contained in this set. Corresponds to the JSON property `name` @return [String]

read_groups[RW]

The read groups in this set. There are typically 1-10 read groups in a read group set. Corresponds to the JSON property `readGroups` @return [Array<Google::Apis::GenomicsV1beta2::ReadGroup>]

reference_set_id[RW]

The reference set the reads in this read group set are aligned to. Corresponds to the JSON property `referenceSetId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1965
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 1970
def update!(**args)
  @dataset_id = args[:dataset_id] unless args[:dataset_id].nil?
  @filename = args[:filename] unless args[:filename].nil?
  @id = args[:id] unless args[:id].nil?
  @info = args[:info] unless args[:info].nil?
  @name = args[:name] unless args[:name].nil?
  @read_groups = args[:read_groups] unless args[:read_groups].nil?
  @reference_set_id = args[:reference_set_id] unless args[:reference_set_id].nil?
end