sars 0.1.0

SARS is a Lightweight Suffix Arrays Library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

pub mod commons;
pub mod suffix_array;
pub mod query_mode;
pub mod fasta_file;
pub mod prefix_table;

pub use commons::*;
pub use suffix_array::*;
pub use prefix_table::*;
pub use fasta_file::*;
pub use query_mode::*;