Class: Google::Apis::GenomicsV1::CodingSequence
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::CodingSequence
- 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
-
#end ⇒ Fixnum
The end of the coding sequence on this annotation's reference sequence, 0-based exclusive.
-
#start ⇒ Fixnum
The start of the coding sequence on this annotation's reference sequence, 0-based inclusive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CodingSequence
constructor
A new instance of CodingSequence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CodingSequence
Returns a new instance of CodingSequence
439 440 441 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 439 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end ⇒ Fixnum
The end of the coding sequence on this annotation's reference sequence,
0-based exclusive. Note that this position is relative to the reference
start, and not the containing annotation start.
Corresponds to the JSON property end
430 431 432 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 430 def end @end end |
#start ⇒ Fixnum
The start of the coding sequence on this annotation's reference sequence,
0-based inclusive. Note that this position is relative to the reference
start, and not the containing annotation start.
Corresponds to the JSON property start
437 438 439 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 437 def start @start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
444 445 446 447 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 444 def update!(**args) @end = args[:end] if args.key?(:end) @start = args[:start] if args.key?(:start) end |