pub enum ScoringModel {
Blosum(i32),
Jtt(i32),
Tm(i32),
Dna,
UserDefined,
}Expand description
Which substitution matrix model to use.
Jtt(pam) and Tm(pam) carry the PAM value (C MAFFT default = 200,
DEFAULTPAMN in JTT.c). Pass non-200 values to mirror mafft --jtt N
or mafft --tm N.
Variants§
Trait Implementations§
Source§impl Clone for ScoringModel
impl Clone for ScoringModel
Source§fn clone(&self) -> ScoringModel
fn clone(&self) -> ScoringModel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScoringModel
Source§impl Debug for ScoringModel
impl Debug for ScoringModel
impl Eq for ScoringModel
Source§impl PartialEq for ScoringModel
impl PartialEq for ScoringModel
impl StructuralPartialEq for ScoringModel
Auto Trait Implementations§
impl Freeze for ScoringModel
impl RefUnwindSafe for ScoringModel
impl Send for ScoringModel
impl Sync for ScoringModel
impl Unpin for ScoringModel
impl UnsafeUnpin for ScoringModel
impl UnwindSafe for ScoringModel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more