class Google::Apis::GenomicsV1::CoverageBucket
A bucket over which read coverage has been precomputed. A bucket corresponds to a specific range of the reference sequence.
Attributes
mean_coverage[RW]
The average number of reads which are aligned to each individual reference base in this bucket. Corresponds to the JSON property `meanCoverage` @return [Float]
range[RW]
A 0-based half-open genomic coordinate range for search requests. Corresponds to the JSON property `range` @return [Google::Apis::GenomicsV1::Range]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 1579 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 1584 def update!(**args) @range = args[:range] if args.key?(:range) @mean_coverage = args[:mean_coverage] if args.key?(:mean_coverage) end