//! Shared I/O primitives used by both BAM and VCF writers.
//!
//! This module provides BGZF compression and index-building types that are
//! format-agnostic. Use these when working with [`crate::bam::BamWriter`] or
//! [`crate::vcf::Writer`] output.
// BGZF compression layer
pub use crate;
pub use crateBgzfWriter;
// Single-pass index co-production
pub use ;