class Google::Apis::GenomicsV1beta2::TranscriptExon

Attributes

end[RW]

The end position of the exon on this annotation's reference sequence, 0-based exclusive. Note that this is relative to the reference start, and not the containing annotation start. Corresponds to the JSON property `end` @return [String]

frame[RW]

Wrapper message for `int32`. The JSON representation for `Int32Value` is JSON number. Corresponds to the JSON property `frame` @return [Google::Apis::GenomicsV1beta2::Int32Value]

start[RW]

The start position of the exon on this annotation's reference sequence, 0- based inclusive. Note that this 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_v1beta2/classes.rb, line 3033
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_v1beta2/classes.rb, line 3038
def update!(**args)
  @end = args[:end] unless args[:end].nil?
  @frame = args[:frame] unless args[:frame].nil?
  @start = args[:start] unless args[:start].nil?
end