pub struct DustParams {
pub window: usize,
pub threshold: f64,
pub linker: usize,
}Expand description
Parameters for the DUST low-complexity filter (DNA).
Fields§
§window: usizeSliding window size (default: 64).
threshold: f64Score threshold; regions scoring above are masked (default: 20.0).
linker: usizeJoin regions within this many bases (default: 1).
Trait Implementations§
Source§impl Clone for DustParams
impl Clone for DustParams
Source§fn clone(&self) -> DustParams
fn clone(&self) -> DustParams
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 DustParams
impl Debug for DustParams
Auto Trait Implementations§
impl Freeze for DustParams
impl RefUnwindSafe for DustParams
impl Send for DustParams
impl Sync for DustParams
impl Unpin for DustParams
impl UnsafeUnpin for DustParams
impl UnwindSafe for DustParams
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