Skip to main content

holodeck_lib/output/
mod.rs

1//! Output writers for simulated reads and ground truth files.
2//!
3//! Provides FASTQ output (always) and optional golden BAM output for
4//! benchmarking alignment pipelines.  Supports single-threaded and
5//! multi-threaded BGZF compression via pooled-writer.
6
7pub mod fastq;
8pub mod golden_bam;