Skip to content

Commit

Permalink
Fix assignemnt of array ID variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gdevenyi committed Apr 18, 2016
1 parent 34c6573 commit 3a23ef8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/qbatch
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ LSF_HEADER_TEMPLATE = """
#BSUB {o_options}
{env}
{header_commands}
ARRAY_IND=LSB_JOBINDEX
ARRAY_IND=$LSB_JOBINDEX
""".strip()


Expand Down Expand Up @@ -285,8 +285,8 @@ if __name__ == "__main__":
group.add_argument(
"-b", default=SYSTEM, choices=['pbs', 'sge', 'lsf', 'local'],
help="""The type of queueing system to use. 'pbs' and 'sge' both make
calls to qsub to submit jobs. 'local' runs the entire command list
(without chunking) locally.""")
calls to qsub to submit jobs. 'lsf' makes calls to bsub. 'local' runs
the entire command list (without chunking) locally.""")
group.add_argument(
"--no-env", action="store_true",
help="""Do not copy the current environment into the job script(s)""")
Expand Down

0 comments on commit 3a23ef8

Please sign in to comment.