genomicframe-core 0.2.0

High-performance genomics I/O and interoperability layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! BAM format support (Binary Alignment/Map)
//!
//! BAM is the compressed binary version of SAM (Sequence Alignment/Map).
//! It uses BGZF (blocked gzip) compression for random access and parallel processing.

// Public API
pub mod block_parsing;
pub mod expression;
pub mod filters;
pub mod reader;
pub mod stats;
// Re-export commonly used types
pub use block_parsing::scan_bgzf_blocks;
pub use reader::{BamHeader, BamReader, BamRecord, CigarOp, RefSeq, TagValue};
pub use stats::BamStats;