[][src]Struct debruijn::filter::CountFilterSet

pub struct CountFilterSet<D> { /* 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 a vector of the unique data values observed for that kmer.

Methods

impl<D> CountFilterSet<D>[src]

pub fn new(min_kmer_obs: usize) -> CountFilterSet<D>[src]

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

Trait Implementations

impl<D: Ord> KmerSummarizer<D, Vec<D>> for CountFilterSet<D>[src]

Auto Trait Implementations

impl<D> Send for CountFilterSet<D> where
    D: Send

impl<D> Sync for CountFilterSet<D> where
    D: Sync

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.