class Google::Apis::GenomicsV1::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. For more genomics resource definitions,
see [Fundamentals of Google Genomics](cloud.google.com/genomics/ fundamentals-of-google-genomics)
Attributes
The dataset to which this read group set belongs. 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 server-generated read group set ID, unique for all read group sets. Corresponds to the JSON property `id` @return [String]
A map of additional read group set information. Corresponds to the JSON property `info` @return [Hash<String,Array<Object>>]
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::GenomicsV1::ReadGroup>]
The reference set to which the reads in this read group set are aligned. Corresponds to the JSON property `referenceSetId` @return [String]
Public Class Methods
# File generated/google/apis/genomics_v1/classes.rb, line 1342 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1/classes.rb, line 1347 def update!(**args) @id = args[:id] if args.key?(:id) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @reference_set_id = args[:reference_set_id] if args.key?(:reference_set_id) @name = args[:name] if args.key?(:name) @filename = args[:filename] if args.key?(:filename) @read_groups = args[:read_groups] if args.key?(:read_groups) @info = args[:info] if args.key?(:info) end