Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Ensure complete reading of multi-member .gz FASTA files (#14)
`flate2::read::GzDecoder` only reads the first member in a multi-member gzip file, which can result in incomplete reading of the reference FASTA file. Replacing it with `flate2::read::MultiGzDecoder` ensures that all members of the input gzipped FASTA file can be processed, aligning the decoding behavior with standard tools like `gzip`, `gunzip`, and `zcat`.
- Loading branch information