use cores not jobs

This commit is contained in:
Daylin Morgan 2023-06-12 11:19:44 -05:00
parent c86d6ad02e
commit f0ec2f9013
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -3,5 +3,5 @@
if [[ "$*" == *"-j"* || "$*" == *"--jobs"* || "$*" == *"--cores"* ]]; then if [[ "$*" == *"-j"* || "$*" == *"--jobs"* || "$*" == *"--cores"* ]]; then
snakemake $@ snakemake $@
else else
snakemake -j all $@ snakemake --cores all $@
fi fi