pub struct SwParams {
pub match_score: Score,
pub mismatch_penalty: Score,
pub gap_open: Score,
pub gap_extend: Score,
pub band_width: usize,
pub min_score: Score,
}Expand description
Parameters for Smith-Waterman alignment
Fields§
§match_score: ScoreMatch score
mismatch_penalty: ScoreMismatch penalty
gap_open: ScoreGap open penalty
gap_extend: ScoreGap extend penalty
band_width: usizeBand width for banded alignment (0 = no banding)
min_score: ScoreMinimum score threshold
Trait Implementations§
impl Copy for SwParams
impl Eq for SwParams
impl StructuralPartialEq for SwParams
Auto Trait Implementations§
impl Freeze for SwParams
impl RefUnwindSafe for SwParams
impl Send for SwParams
impl Sync for SwParams
impl Unpin for SwParams
impl UnsafeUnpin for SwParams
impl UnwindSafe for SwParams
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