qbix 0.0.3

Random access to BAM records by read name using a compact .qbi index
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod api;
pub mod c_api;
pub mod cli;
mod commands;
pub mod error;
mod hts;
mod index;

pub use api::{
    build_index, read_index_records, validate_index, BuildOptions, IndexRecord, IndexedBam,
    LookupHit, LookupOptions, OutputOrder, ValidateOptions, VirtualOffset,
};
pub use error::{Error, PublicResult as Result};

pub const VERSION: &str = env!("CARGO_PKG_VERSION");