You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
via Christopher Schröder in snakemake google group, Aug 3 2023 -
Hey Georg,
You can define a custom resource and use it for limiting.
rule a:
input: ...
output: ...
resources:
foo=1
shell:
"..."
$ snakemake --resources foo=1
Now you provide only one "foo" and rule a takes one "foo" on execution.
Best
Christo
via Christopher Schröder in snakemake google group, Aug 3 2023 -
see practical use for benchmarking here dib-lab/2022-branchwater-benchmarking@83a5b6a :)
The text was updated successfully, but these errors were encountered: