class Google::Apis::GenomicsV1beta2::CallReadGroupSetsRequest

The read group set call request.

Attributes

dataset_id[RW]

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]

read_group_set_id[RW]

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]

source_uris[RW]

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

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 409
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 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