Skip to content

Commit

Permalink
fix: adjusting the sctransform mem resources
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasLienhard committed Oct 8, 2024
1 parent e1dc06f commit 775e973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/scAmpi_basic_rules.smk
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ rule sctransform_preprocessing:
conda:
"../envs/sctransform_preprocessing.yaml"
resources:
mem_mb=lambda wc, input: min(4000 + 20 * input.size_mb, max_mem_mb),
mem_mb=lambda wc, input: min(8000 + 20 * input.size_mb, max_mem_mb),
runtime=config["computingResources"]["runtime"]["medium"],
threads: config["computingResources"]["threads"]["medium"]
log:
Expand Down

0 comments on commit 775e973

Please sign in to comment.