[][src]Trait perbase_lib::read_filter::ReadFilter

pub trait ReadFilter {
    pub fn filter_read(&self, read: &Record) -> bool;
}

Anything that implements ReadFilter can apply a filter set to read.

Required methods

pub fn filter_read(&self, read: &Record) -> bool[src]

filters a read, true is pass, false if fail

Loading content...

Implementors

impl ReadFilter for DefaultReadFilter[src]

pub fn filter_read(&self, read: &Record) -> bool[src]

Filter reads based SAM flags and mapping quality

Loading content...