Class: Google::Apis::GenomicsV1::Range
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GenomicsV1::Range
 
 
- 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
A 0-based half-open genomic coordinate range for search requests.
Instance Attribute Summary collapse
- 
  
    
      #end  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The end position of the range on the reference, 0-based exclusive.
 - 
  
    
      #reference_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reference sequence name, for example
chr1,1, orchrX. - 
  
    
      #start  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start position of the range on the reference, 0-based inclusive.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Range 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Range.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Range
Returns a new instance of Range
      1841 1842 1843  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1841 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#end ⇒ Fixnum
The end position of the range on the reference, 0-based exclusive.
Corresponds to the JSON property end
      1828 1829 1830  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1828 def end @end end  | 
  
#reference_name ⇒ String
The reference sequence name, for example chr1,
1, or chrX.
Corresponds to the JSON property referenceName
      1834 1835 1836  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1834 def reference_name @reference_name end  | 
  
#start ⇒ Fixnum
The start position of the range on the reference, 0-based inclusive.
Corresponds to the JSON property start
      1839 1840 1841  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1839 def start @start end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1846 1847 1848 1849 1850  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 1846 def update!(**args) @end = args[:end] if args.key?(:end) @reference_name = args[:reference_name] if args.key?(:reference_name) @start = args[:start] if args.key?(:start) end  |