Skip to content

Commit

Permalink
Remove thread scaling in fastp
Browse files Browse the repository at this point in the history
That was for scaling memory on Rackham before
  • Loading branch information
zjnolen committed Feb 1, 2024
1 parent 324e640 commit 741b47f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/1.0_preprocessing.smk
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ rule fastp_mergedout:
params:
extra=lambda w: config["params"]["fastp"]["extra"]
+ f" --merge --overlap_len_require {get_min_overlap(w)}",
threads: lambda wildcards, attempt: attempt * 2
threads: 2
resources:
runtime=lambda wildcards, attempt: attempt * 480,
mem_mb=lambda wildcards, input, attempt: int(attempt * (input.size_mb / 2)),
Expand Down

0 comments on commit 741b47f

Please sign in to comment.