sigalign_impl/pattern_index/
mod.rs

1/*!
2Implementations for the trait `sigalign_core::reference::PatternIndex`.
3
4**Current Implementations**
5- Using `LtFmIndex` (<https://github.com/baku4/lt-fm-index>):
6  - `static_lfi`: Has a maximum number of characters that can be indexed.
7  - `dynamic_lfi`: Can adjust the internal type by the number of characters (slightly slower than static version).
8*/
9pub mod static_lfi;
10pub mod dynamic_lfi;