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.
-
A read group set belongs to one dataset.
-
A read group belongs to one read group set.
-
A read belongs to one read group.
Attributes
The dataset ID. Corresponds to the JSON property `datasetId` @return [String]
The filename of the original source file for this read group set, if any. Corresponds to the JSON property `filename` @return [String]
The read group set ID. 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 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]
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>]
The reference set the reads in this read group set are aligned to. Corresponds to the JSON property `referenceSetId` @return [String]
Public Class Methods
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1965 def initialize(**args) update!(**args) end
Public Instance Methods
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