pub struct TandemRepeatParams {
pub min_period: usize,
pub max_period: usize,
pub min_copies: usize,
}Expand description
Parameters for tandem repeat detection.
Fields§
§min_period: usizeMinimum repeat unit period (default: 1).
max_period: usizeMaximum repeat unit period (default: 6).
min_copies: usizeMinimum number of complete repeat copies (default: 3).
Trait Implementations§
Source§impl Clone for TandemRepeatParams
impl Clone for TandemRepeatParams
Source§fn clone(&self) -> TandemRepeatParams
fn clone(&self) -> TandemRepeatParams
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 TandemRepeatParams
impl Debug for TandemRepeatParams
Auto Trait Implementations§
impl Freeze for TandemRepeatParams
impl RefUnwindSafe for TandemRepeatParams
impl Send for TandemRepeatParams
impl Sync for TandemRepeatParams
impl Unpin for TandemRepeatParams
impl UnsafeUnpin for TandemRepeatParams
impl UnwindSafe for TandemRepeatParams
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