Class: Google::Apis::GenomicsV1beta2::CallReadGroupSetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::CallReadGroupSetsRequest
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb
Overview
The read group set call request.
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
Required.
-
#read_group_set_id ⇒ String
The IDs of the read group sets which will be called.
-
#source_uris ⇒ Array<String>
A list of URIs pointing at BAM files in Google Cloud Storage which will be called.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CallReadGroupSetsRequest
constructor
A new instance of CallReadGroupSetsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CallReadGroupSetsRequest
Returns a new instance of CallReadGroupSetsRequest
409 410 411 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 409 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
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
393 394 395 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 393 def dataset_id @dataset_id end |
#read_group_set_id ⇒ 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
400 401 402 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 400 def read_group_set_id @read_group_set_id end |
#source_uris ⇒ Array<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
407 408 409 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 407 def source_uris @source_uris end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
414 415 416 417 418 |
# 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 |