omics_core/
lib.rs

1//! Common components used within the `omics` family of crates.
2
3/// The separator character between elements within a variant.
4pub const VARIANT_SEPARATOR: &str = ":";
5
6/// The character representing a missing nucleotide.
7pub const MISSING_NUCLEOTIDE: &str = ".";