sigalign_impl/sequence_storage/
mod.rs

1/*!
2Implementations for the trait `sigalign_core::reference::SequenceStorage`.
3
4**Current Implementations**
5- `in_memory`: Stores the sequences in memory.
6  - Generally most fast.
7  - Requires enough memory to store all sequences.
8*/
9
10pub mod in_memory;