Class: Google::Apis::GenomicsV1::ListCoverageBucketsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::ListCoverageBucketsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/representations.rb
Instance Attribute Summary collapse
-
#bucket_width ⇒ Fixnum
The length of each coverage bucket in base pairs.
-
#coverage_buckets ⇒ Array<Google::Apis::GenomicsV1::CoverageBucket>
The coverage buckets.
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCoverageBucketsResponse
constructor
A new instance of ListCoverageBucketsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCoverageBucketsResponse
Returns a new instance of ListCoverageBucketsResponse
1258 1259 1260 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1258 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_width ⇒ Fixnum
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
1241 1242 1243 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1241 def bucket_width @bucket_width end |
#coverage_buckets ⇒ Array<Google::Apis::GenomicsV1::CoverageBucket>
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
1249 1250 1251 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1249 def coverage_buckets @coverage_buckets end |
#next_page_token ⇒ String
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
1256 1257 1258 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1256 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1263 1264 1265 1266 1267 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1263 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 |