zoe 0.0.31

A nightly library for viral genomics
Documentation
//! Mappings for transforming sequence-like data.
//!
//! This includes byte-to-byte mappings with [`ByteMap`] and [`ByteIndexMap`],
//! as well as amino acid translation from nucleotide sequences in
//! [`StdGeneticCode`].

pub(crate) mod aa;
pub(crate) mod byte_index;
mod disambiguation;
pub(crate) mod dna;
pub(crate) mod gc;
mod validator;

#[cfg(test)]
mod test;

pub use aa::*;
pub use byte_index::*;
pub use disambiguation::*;
pub use dna::*;
pub use gc::*;
pub use validator::*;