Enum bio_types::alignment::AlignmentMode[][src]

pub enum AlignmentMode {
    Local,
    Semiglobal,
    Global,
    Custom,
}

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

impl Debug for AlignmentMode
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AlignmentMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AlignmentMode
[src]

impl Copy for AlignmentMode
[src]

impl Clone for AlignmentMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AlignmentMode
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations