dotfiles/home/private_dot_config/zsh/functions/executable_sm

8 lines
149 B
Text
Raw Normal View History

2023-06-12 11:04:10 -05:00
#!/usr/bin/env zsh
if [[ "$*" == *"-j"* || "$*" == *"--jobs"* || "$*" == *"--cores"* ]]; then
snakemake $@
else
2023-06-12 11:19:44 -05:00
snakemake --cores all $@
2023-06-12 11:04:10 -05:00
fi