Class: Google::Apis::GenomicsV1beta2::TranscriptCodingSequence
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::TranscriptCodingSequence
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#end ⇒ String
The end of the coding sequence on this annotation's reference sequence, 0- based exclusive.
-
#start ⇒ String
The start of the coding sequence on this annotation's reference sequence, 0- based inclusive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TranscriptCodingSequence
constructor
A new instance of TranscriptCodingSequence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TranscriptCodingSequence
Returns a new instance of TranscriptCodingSequence
2998 2999 3000 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end ⇒ String
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
2989 2990 2991 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2989 def end @end end |
#start ⇒ String
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
2996 2997 2998 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2996 def start @start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3003 3004 3005 3006 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 3003 def update!(**args) @end = args[:end] unless args[:end].nil? @start = args[:start] unless args[:start].nil? end |