bio/alignment/
mod.rs

1// Copyright 2014-2015 Johannes Köster, Vadim Nazarov, Patrick Marks
2// Licensed under the MIT license (http://opensource.org/licenses/MIT)
3// This file may not be copied, modified, or distributed
4// except according to those terms.
5
6//! Various alignment and distance computing algorithms.
7
8pub mod distance;
9pub mod pairwise;
10pub mod poa;
11pub mod sparse;
12
13// Re-export the alignment types.
14pub use bio_types::alignment::*;