compact-genome 0.3.1-alpha.1

Representation of genomes
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod ascii_vec_sequence;
pub mod slice_sequence;
pub mod two_bit_vec_sequence;

pub mod vec_sequence_store;

/// The default genome type that achieves a good balance between speed and size.
pub type DefaultGenome = two_bit_vec_sequence::TwoBitVectorGenome;
/// The default genome subsequence type that achieves a good balance between speed and size.
pub type DefaultSubGenome = two_bit_vec_sequence::TwoBitVectorSubGenome;