pub struct Aligner<A: Algorithm> { /* private fields */ }
Expand description
An alignment executor.
Implementations§
Source§impl<A: Algorithm> Aligner<A>
impl<A: Algorithm> Aligner<A>
Sourcepub fn get_mismatch_penalty(&self) -> u32
pub fn get_mismatch_penalty(&self) -> u32
Get mismatch penalty
Sourcepub fn get_gap_open_penalty(&self) -> u32
pub fn get_gap_open_penalty(&self) -> u32
Get gap-open penalty
Sourcepub fn get_gap_extend_penalty(&self) -> u32
pub fn get_gap_extend_penalty(&self) -> u32
Get gap-extend penalty
Sourcepub fn get_minimum_length(&self) -> u32
pub fn get_minimum_length(&self) -> u32
Get minimum length
Sourcepub fn get_maximum_penalty_per_length(&self) -> f32
pub fn get_maximum_penalty_per_length(&self) -> f32
Get maximum penalty per length
Sourcepub fn get_pattern_size(&self) -> u32
pub fn get_pattern_size(&self) -> u32
Get size of pattern
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for Aligner<A>where
A: Freeze,
impl<A> RefUnwindSafe for Aligner<A>where
A: RefUnwindSafe,
impl<A> Send for Aligner<A>
impl<A> !Sync for Aligner<A>
impl<A> Unpin for Aligner<A>where
A: Unpin,
impl<A> UnwindSafe for Aligner<A>where
A: UnwindSafe,
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