1 2 3 4 5 6 7 8 9 10 11 12 13
//! Encodings for degenerate 1-bit nucleotide encodings. pub mod mk; pub mod ry; pub mod ws; pub use mk::MK; pub use ry::RY; pub use ws::WS; //#[cfg(test)] //mod tests { //}