Struct faimm::BaseCounts[][src]

pub struct BaseCounts {
    pub a: usize,
    pub c: usize,
    pub g: usize,
    pub t: usize,
    pub n: usize,
    pub other: usize,
}

Object that contains count occurences of the most common bases in DNA genome references: A, C, G, T, N and other.

Fields

Trait Implementations

impl Debug for BaseCounts
[src]

Formats the value using the given formatter. Read more

impl Clone for BaseCounts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for BaseCounts
[src]

impl PartialEq for BaseCounts
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for BaseCounts
[src]

Initialize basecount with zeros

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

Auto Trait Implementations

impl Send for BaseCounts

impl Sync for BaseCounts