Struct google_genomics1::CoverageBucket[][src]

pub struct CoverageBucket {
    pub mean_coverage: Option<f32>,
    pub range: Option<Range>,
}

A bucket over which read coverage has been precomputed. A bucket corresponds to a specific range of the reference sequence.

This type is not used in any activity, and only used as part of another schema.

Fields

The average number of reads which are aligned to each individual reference base in this bucket.

The genomic coordinate range spanned by this bucket.

Trait Implementations

impl Default for CoverageBucket
[src]

Returns the "default value" for a type. Read more

impl Clone for CoverageBucket
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CoverageBucket
[src]

Formats the value using the given formatter. Read more

impl Part for CoverageBucket
[src]

Auto Trait Implementations