1
2
3
4
5
6
7
8
9
10
11
12
13
//! A module to contain all alignment related structures and algorithms.

mod align_type;
mod alignment;
mod mass_alignment;
mod piece;
mod scoring;

pub use align_type::Type;
pub use alignment::Alignment;
pub use mass_alignment::align;
pub use piece::Piece;
pub use scoring::{MatchType, BLOSUM62};