class Google::Apis::GenomicsV1beta2::ReferenceBound
ReferenceBound records an upper bound for the starting coordinate of variants in a particular reference.
Attributes
reference_name[RW]
The reference the bound is associate with. Corresponds to the JSON property `referenceName` @return [String]
upper_bound[RW]
An upper bound (inclusive) on the starting coordinate of any variant in the reference sequence. Corresponds to the JSON property `upperBound` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 2060 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 2065 def update!(**args) @reference_name = args[:reference_name] unless args[:reference_name].nil? @upper_bound = args[:upper_bound] unless args[:upper_bound].nil? end