class Google::Apis::GenomicsV1::ListCoverageBucketsResponse

Attributes

bucket_width[RW]

The length of each coverage bucket in base pairs. Note that buckets at the end of a reference sequence may be shorter. This value is omitted if the bucket width is infinity (the default behaviour, with no range or `targetBucketWidth`) . Corresponds to the JSON property `bucketWidth` @return [String]

coverage_buckets[RW]

The coverage buckets. The list of buckets is sparse; a bucket with 0 overlapping reads is not returned. A bucket never crosses more than one reference sequence. Each bucket has width `bucketWidth`, unless its end is the end of the reference sequence. Corresponds to the JSON property `coverageBuckets` @return [Array<Google::Apis::GenomicsV1::CoverageBucket>]

next_page_token[RW]

The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. This field will be empty if there aren't any additional results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 1551
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 1556
def update!(**args)
  @bucket_width = args[:bucket_width] if args.key?(:bucket_width)
  @coverage_buckets = args[:coverage_buckets] if args.key?(:coverage_buckets)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end