Skip to content

Commit

Permalink
Use gzip instead of pigz for kraken2 output compression
Browse files Browse the repository at this point in the history
  • Loading branch information
boulund committed Aug 9, 2024
1 parent 0c15e99 commit 8136f63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ situations.
container specifications for most rules. This also enables easier use of
local copies of containers (e.g. in HPC environments without external network
access).
- Changed compression of kraken2 host removal artifacts to use gzip instead of
pigz due to the latter not being present in the kraken2 biocontainer.

### Deprecated

Expand Down
3 changes: 1 addition & 2 deletions workflow/rules/preproc/host_removal.smk
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ if config["host_removal"]["kraken2"]:
{params.extra} \
{input.read1} {input.read2} \
2> {log.stderr}
pigz \
--processes {threads} \
gzip \
--verbose \
--force \
{params.fq_to_compress} \
Expand Down

0 comments on commit 8136f63

Please sign in to comment.