Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f578e271d6
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if base.endswith('.gz'): | ||
| base = base[:-3] | ||
| if base.endswith(('.fq', '.fastq')): |
There was a problem hiding this comment.
Support zstd filenames when inferring chunk input format
prepare_chunking_fifos now strips only .gz before checking FASTA/FASTQ suffixes, so non-.gz compressed names fall through to the new exception path. In SearchPipe.run, chunking is applied after prepare_zstd_fifos, which renames zstd inputs to FIFOs like *.zst.fifo; with --read-chunk-size/--read-chunk-number, these files no longer match the FASTA/FASTQ suffix checks and the pipeline aborts instead of chunking reads. This introduces a regression for chunked zstd input workflows.
Useful? React with 👍 / 👎.
No description provided.