Class: Google::Apis::GenomicsV1::MergeVariantsRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV1::MergeVariantsRequest
 
 
- 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 
Instance Attribute Summary collapse
- 
  
    
      #info_merge_config  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A mapping between info field keys and the InfoMergeOperations to be performed on them.
 - 
  
    
      #variant_set_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The destination variant set.
 - 
  
    
      #variants  ⇒ Array<Google::Apis::GenomicsV1::Variant> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The variants to be merged with existing variants.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MergeVariantsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MergeVariantsRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MergeVariantsRequest
Returns a new instance of MergeVariantsRequest
      1418 1419 1420  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1418 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#info_merge_config ⇒ Hash<String,String>
A mapping between info field keys and the InfoMergeOperations to
be performed on them.
Corresponds to the JSON property infoMergeConfig
      1406 1407 1408  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1406 def info_merge_config @info_merge_config end  | 
  
#variant_set_id ⇒ String
The destination variant set.
Corresponds to the JSON property variantSetId
      1411 1412 1413  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1411 def variant_set_id @variant_set_id end  | 
  
#variants ⇒ Array<Google::Apis::GenomicsV1::Variant>
The variants to be merged with existing variants.
Corresponds to the JSON property variants
      1416 1417 1418  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1416 def variants @variants end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1423 1424 1425 1426 1427  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1423 def update!(**args) @info_merge_config = args[:info_merge_config] if args.key?(:info_merge_config) @variant_set_id = args[:variant_set_id] if args.key?(:variant_set_id) @variants = args[:variants] if args.key?(:variants) end  |