class Google::Apis::GenomicsV1beta2::CallReadGroupSetsRequest
The read group set call request.
Attributes
Required. The ID of the dataset the called variants will belong to. The caller must have WRITE permissions to this dataset. Corresponds to the JSON property `datasetId` @return [String]
The IDs of the read group sets which will be called. The caller must have READ permissions for these read group sets. One of readGroupSetId or sourceUris must be provided. Corresponds to the JSON property `readGroupSetId` @return [String]
A list of URIs pointing at BAM files in Google Cloud Storage which will be called. FASTQ files are not allowed. The caller must have READ permissions for these files. One of readGroupSetId or sourceUris must be provided. Corresponds to the JSON property `sourceUris` @return [Array<String>]
Public Class Methods
# File generated/google/apis/genomics_v1beta2/classes.rb, line 409 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 414 def update!(**args) @dataset_id = args[:dataset_id] unless args[:dataset_id].nil? @read_group_set_id = args[:read_group_set_id] unless args[:read_group_set_id].nil? @source_uris = args[:source_uris] unless args[:source_uris].nil? end