pub struct Penalties {
pub mismatch_pen: u32,
pub open_pen: u32,
pub extd_pen: u32,
}
Expand description
Penalties used for WFA.
Fields§
§mismatch_pen: u32
There is a single mismatch penalty for every char combination. WFA requires that the match penalty is set to 0.
open_pen: u32
Gap opening penalty.
extd_pen: u32
Gap extension penalty. It is also applied when a gap is opened.
Trait Implementations§
impl Eq for Penalties
impl StructuralPartialEq for Penalties
Auto Trait Implementations§
impl Freeze for Penalties
impl RefUnwindSafe for Penalties
impl Send for Penalties
impl Sync for Penalties
impl Unpin for Penalties
impl UnwindSafe for Penalties
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