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
//! SAM format support (Sequence Alignment/Map)
//!
//! SAM is the human-readable text version of BAM (Binary Alignment/Map).
//! It uses tab-delimited columns with optional tags for alignment metadata.

// Public API
pub mod reader;
pub mod stats;

// Re-export commonly used types
pub use reader::{SamReader, SamRecord, SamHeader};
pub use stats::SamStats;