class Google::Apis::GenomicsV1::ExportReadGroupSetRequest

The read group set export request.

Attributes

export_uri[RW]

Required. A Google Cloud Storage URI for the exported BAM file. The currently authenticated user must have write access to the new file. An error will be returned if the URI already contains data. Corresponds to the JSON property `exportUri` @return [String]

project_id[RW]

Required. The Google Developers Console project ID that owns this export. The caller must have WRITE access to this project. Corresponds to the JSON property `projectId` @return [String]

reference_names[RW]

The reference names to export. If this is not specified, all reference sequences, including unmapped reads, are exported. Use `*` to export only unmapped reads. Corresponds to the JSON property `referenceNames` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 1214
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_v1/classes.rb, line 1219
def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @export_uri = args[:export_uri] if args.key?(:export_uri)
  @reference_names = args[:reference_names] if args.key?(:reference_names)
end