class Google::Apis::GenomicsV1::ReferenceBound

ReferenceBound records an upper bound for the starting coordinate of variants in a particular reference.

Attributes

reference_name[RW]

The name of the reference associated with this reference bound. 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_v1/classes.rb, line 2559
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 2564
def update!(**args)
  @reference_name = args[:reference_name] if args.key?(:reference_name)
  @upper_bound = args[:upper_bound] if args.key?(:upper_bound)
end