Skip to content

Commit

Permalink
move a comment in run.bash outside of the snakemake command
Browse files Browse the repository at this point in the history
because it caused issues when placed inside of the snakemake command
  • Loading branch information
aryarm authored Jun 23, 2021
1 parent da82836 commit f914000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.bash
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ fi

# check: are we being executed from within qsub?
if [ "$ENVIRONMENT" = "BATCH" ]; then
# if we have parallel environment in the future, we could use the following for --cluster:
# --cluster "qsub -pe [NAME OF THE PARALLEL ENV] {threads} -t 1 -V -S /bin/bash -j y -cwd -o $out_path/qlog" \
snakemake \
--cluster "qsub -t 1 -V -S /bin/bash -j y -cwd -o $out_path/qlog" \
# if we have parallel environment in the future, we could do the following instead:
# --cluster "qsub -pe [NAME OF THE PARALLEL ENV] {threads} -t 1 -V -S /bin/bash -j y -cwd -o $out_path/qlog" \
--config out="$out_path" \
--latency-wait 60 \
--use-conda \
Expand Down

0 comments on commit f914000

Please sign in to comment.