Class: Google::Apis::GenomicsV1::ExportReadGroupSetRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1::ExportReadGroupSetRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
 generated/google/apis/genomics_v1/representations.rb,
 generated/google/apis/genomics_v1/representations.rb
Overview
The read group set export request.
Instance Attribute Summary collapse
- 
  
    
      #export_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #reference_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The reference names to export. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExportReadGroupSetRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ExportReadGroupSetRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExportReadGroupSetRequest
Returns a new instance of ExportReadGroupSetRequest
| 887 888 889 | # File 'generated/google/apis/genomics_v1/classes.rb', line 887 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#export_uri ⇒ String
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
| 872 873 874 | # File 'generated/google/apis/genomics_v1/classes.rb', line 872 def export_uri @export_uri end | 
#project_id ⇒ String
Required. The Google Cloud project ID that owns this
export. The caller must have WRITE access to this project.
Corresponds to the JSON property projectId
| 878 879 880 | # File 'generated/google/apis/genomics_v1/classes.rb', line 878 def project_id @project_id end | 
#reference_names ⇒ Array<String>
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
| 885 886 887 | # File 'generated/google/apis/genomics_v1/classes.rb', line 885 def reference_names @reference_names end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 892 893 894 895 896 | # File 'generated/google/apis/genomics_v1/classes.rb', line 892 def update!(**args) @export_uri = args[:export_uri] if args.key?(:export_uri) @project_id = args[:project_id] if args.key?(:project_id) @reference_names = args[:reference_names] if args.key?(:reference_names) end |