pub struct SegParams {
pub window: usize,
pub lowcut: f64,
pub highcut: f64,
}Expand description
Parameters for the SEG low-complexity filter (protein).
Fields§
§window: usizeSliding window size (default: 12).
lowcut: f64Trigger masking when entropy ≤ lowcut (default: 2.2).
highcut: f64Stop extending when entropy reaches highcut (default: 2.5).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SegParams
impl RefUnwindSafe for SegParams
impl Send for SegParams
impl Sync for SegParams
impl Unpin for SegParams
impl UnsafeUnpin for SegParams
impl UnwindSafe for SegParams
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