seqair 0.1.0

Pure-Rust BAM/SAM/CRAM/FASTA reader and pileup engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Reference sequence access. Open a FASTA file with [`IndexedFastaReader`] to fetch
//! subsequences by name and coordinate range. Supports plain and bgzf-compressed FASTA.

mod gzi;
mod index;
mod reader;

pub use gzi::{BlockLocation, GziError, GziIndex};
pub use index::{FaiEntry, FaiEntryError, FaiError, FastaIndex};
pub use reader::{FastaError, IndexedFastaReader};