compact-genome 12.5.0

Representation of genomes
Documentation
1
2
3
4
5
6
7
8
9
//! This crate abstracts over the representation of a genome string, allowing for different implementations that are catered to different use-cases.
#![warn(missing_docs)]
#![forbid(clippy::mod_module_files)]

/// Different implementations of genome string representations.
pub mod implementation;
pub mod interface;
#[cfg(feature = "io")]
pub mod io;