Enum bio_types::alignment::AlignmentMode [−][src]
pub enum AlignmentMode {
Local,
Semiglobal,
Global,
Custom,
}Expand description
The modes of alignment supported by the aligner include standard modes such as Global, Semi-Global and Local alignment. In addition to this, user can also invoke the custom mode. In the custom mode, users can explicitly specify the clipping penalties for prefix and suffix of strings ‘x’ and ‘y’ independently. Under the hood the standard modes are implemented as special cases of the custom mode with the clipping penalties appropriately set.
The default alignment mode is Global.
Variants
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AlignmentMode
impl Send for AlignmentMode
impl Sync for AlignmentMode
impl Unpin for AlignmentMode
impl UnwindSafe for AlignmentMode
Blanket Implementations
Mutably borrows from an owned value. Read more