pub enum AlignmentMode {
FftNs2,
FftNsi {
iterations: usize,
},
GInsi {
iterations: usize,
},
LInsi {
iterations: usize,
},
EInsi {
iterations: usize,
},
QInsi {
iterations: usize,
},
XInsi {
iterations: usize,
},
}Expand description
Alignment mode (strategy).
Variants§
FftNs2
FFT-NS-2: fast progressive (default).
FftNsi
FFT-NS-i: progressive + limited iterative refinement.
GInsi
G-INS-i: global alignment + iterative refinement.
LInsi
L-INS-i: local alignment + iterative refinement.
EInsi
E-INS-i: generalized affine + iterative refinement.
QInsi
Q-INS-i: RNA alignment with McCaskill base-pair probabilities.
XInsi
X-INS-i: RNA alignment with CONTRAfold structure predictions.
Trait Implementations§
Source§impl Clone for AlignmentMode
impl Clone for AlignmentMode
Source§fn clone(&self) -> AlignmentMode
fn clone(&self) -> AlignmentMode
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 moreSource§impl Debug for AlignmentMode
impl Debug for AlignmentMode
Auto Trait Implementations§
impl Freeze for AlignmentMode
impl RefUnwindSafe for AlignmentMode
impl Send for AlignmentMode
impl Sync for AlignmentMode
impl Unpin for AlignmentMode
impl UnsafeUnpin for AlignmentMode
impl UnwindSafe for AlignmentMode
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