[][src]Struct debruijn::filter::CountFilter

pub struct CountFilter { /* fields omitted */ }

A simple KmerSummarizer that only accepts kmers that are observed at least a given number of times. The metadata returned about a Kmer is the number of times it was observed, capped at 2^16.

Methods

impl CountFilter[src]

pub fn new(min_kmer_obs: usize) -> CountFilter[src]

Construct a CountFilter KmerSummarizer only accepts kmers that are observed at least min_kmer_obs times.

Trait Implementations

impl<D> KmerSummarizer<D, u16> for CountFilter[src]

Auto Trait Implementations

impl Send for CountFilter

impl Sync for CountFilter

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.