Skip to main content

snp_index/
lib.rs

1pub mod genome;
2pub mod index;
3pub mod locus;
4pub mod read;
5pub mod vcf;
6
7pub use genome::Genome;
8pub use index::{DEFAULT_BIN_WIDTH, SnpIndex, SnpReadMatch};
9pub use locus::SnpLocus;
10pub use read::{AlignedRead, ObservedBase, ReadOp, ReadOpKind, RefineOptions, Strand};
11pub use vcf::{RawSnpRecord, SnpVcfReader, VcfReadOptions};