Class: Google::Apis::GenomicsV1::Range

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Range

Returns a new instance of Range



1918
1919
1920
# File 'generated/google/apis/genomics_v1/classes.rb', line 1918

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#endFixnum

The end position of the range on the reference, 0-based exclusive. Corresponds to the JSON property end

Returns:

  • (Fixnum)


1910
1911
1912
# File 'generated/google/apis/genomics_v1/classes.rb', line 1910

def end
  @end
end

#reference_nameString

The reference sequence name, for example chr1, 1, or chrX. Corresponds to the JSON property referenceName

Returns:

  • (String)


1916
1917
1918
# File 'generated/google/apis/genomics_v1/classes.rb', line 1916

def reference_name
  @reference_name
end

#startFixnum

The start position of the range on the reference, 0-based inclusive. Corresponds to the JSON property start

Returns:

  • (Fixnum)


1905
1906
1907
# File 'generated/google/apis/genomics_v1/classes.rb', line 1905

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1923
1924
1925
1926
1927
# File 'generated/google/apis/genomics_v1/classes.rb', line 1923

def update!(**args)
  @start = args[:start] if args.key?(:start)
  @end = args[:end] if args.key?(:end)
  @reference_name = args[:reference_name] if args.key?(:reference_name)
end