class Google::Apis::GenomicsV1::CodingSequence
Attributes
end[RW]
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` @return [String]
start[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 513 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/genomics_v1/classes.rb, line 518 def update!(**args) @start = args[:start] if args.key?(:start) @end = args[:end] if args.key?(:end) end