pub enum ProteinFilter {
SpectralCounts(u16),
SequenceCounts(u16),
ExcludeReverse,
}Expand description
Protein-level filter
Variants§
SpectralCounts(u16)
Include only proteins that have spectral counts >= N
SequenceCounts(u16)
Include only proteins that have sequence counts >= N
ExcludeReverse
Include only proteins that do not have “Reverse” in their UniProt accession
Trait Implementations§
Source§impl Clone for ProteinFilter
impl Clone for ProteinFilter
Source§fn clone(&self) -> ProteinFilter
fn clone(&self) -> ProteinFilter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProteinFilter
impl Debug for ProteinFilter
Source§impl PartialEq for ProteinFilter
impl PartialEq for ProteinFilter
Source§impl PartialOrd for ProteinFilter
impl PartialOrd for ProteinFilter
impl Copy for ProteinFilter
impl StructuralPartialEq for ProteinFilter
Auto Trait Implementations§
impl Freeze for ProteinFilter
impl RefUnwindSafe for ProteinFilter
impl Send for ProteinFilter
impl Sync for ProteinFilter
impl Unpin for ProteinFilter
impl UnwindSafe for ProteinFilter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more