Skip to content

Commit

Permalink
[skip CI] Allow snakemake parallelization with local jobs
Browse files Browse the repository at this point in the history
馃拵 suggested by @Xentrics in issue #120
  • Loading branch information
franciscozorrilla committed Jan 26, 2023
1 parent ec01c24 commit ff4ac0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaGEM.sh
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ submitLocal() {
while true; do
read -p "Do you wish to submit this batch of jobs on your local machine? (y/n)" yn
case $yn in
[Yy]* ) echo "snakemake all -j 1 -k"|bash; break;;
[Yy]* ) echo "snakemake all -j $njobs -c $ncores -k"|bash; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
Expand Down

0 comments on commit ff4ac0d

Please sign in to comment.