//! Input/output abstractions.
//!
//! The reader subsystem provides a unified interface to read records from any
//! supported format (FASTQ, FASTQ.gz, FASTA, BAM). All modules consume `Record`
//! instances from a `RecordReader` trait object, isolating them from format
//! details.
pub use ;