[][src]Enum census_proteomics::PeptideFilter

pub enum PeptideFilter<'a> {
    SequenceMatch(&'a str),
    SequenceExclude(&'a str),
    TotalIntensity(u32),
    ChannelCV(Vec<usize>, f64),
    ChannelIntensity(usizeu32),
    Tryptic,
    Unique,
}

Peptide-level filter

Filter individual peptides within a protein based on sequence mactches, total intensities, coefficient of variance between channels, or intensity values on specified channels.

Peptide can also be filtered based on whether they have 2 tryptic ends, or if they are unique.

Variants

SequenceMatch(&'a str)

Include only peptides that have a sequence matching the pattern

SequenceExclude(&'a str)

Include only peptides that do NOT have a sequence matching the pattern

TotalIntensity(u32)

Include only peptides that have a total ion itensity >= N

ChannelCV(Vec<usize>, f64)

ChannelCV(channels, N)

Include only peptides where the coeff. of variance is < N between the specified channels

ChannelIntensity(usizeu32)

ChannelIntensity(channel, cutoff)

Include only peptides that have an ion intensity >= N in the specified channel

Tryptic

Include only tryptic peptides

Unique

Include only unique peptides

Trait Implementations

impl<'a> Clone for PeptideFilter<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> PartialOrd<PeptideFilter<'a>> for PeptideFilter<'a>[src]

impl<'a> PartialEq<PeptideFilter<'a>> for PeptideFilter<'a>[src]

impl<'a> Debug for PeptideFilter<'a>[src]

Auto Trait Implementations

impl<'a> Send for PeptideFilter<'a>

impl<'a> Sync for PeptideFilter<'a>

Blanket Implementations

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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