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