FASTQ-aware by design
Sequences, qualities, read IDs, and paired-end layout are encoded as separate archive concerns instead of being hidden inside a generic compressed stream.
A block-indexed `.fqc` archive tool for compressing, restoring, inspecting, and verifying FASTQ data without turning project maintenance into a platform.
| Need | Command shape |
|---|---|
| Standard single-end archive | fqc compress -i reads.fastq -o reads.fqc |
| Low-memory compression | fqc compress -i reads.fastq -o reads.fqc --streaming --memory-limit 1024 |
| Paired-end input | fqc compress -i reads_R1.fastq -2 reads_R2.fastq -o paired.fqc |
| Check an archive before use | fqc verify -i reads.fqc |
| Inspect codecs and blocks | fqc info -i reads.fqc --detailed --show-codecs |
Start with the Quick Start if you want the shortest path from FASTQ to .fqc, or jump to the CLI reference for flags and mode details.