diff options
-rwxr-xr-x | scripts/turbo-index-slurm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/turbo-index-slurm b/scripts/turbo-index-slurm index f05c78b9..b20af403 100755 --- a/scripts/turbo-index-slurm +++ b/scripts/turbo-index-slurm @@ -64,7 +64,8 @@ for FILE in split-events-${RUN}.lst*; do echo "#SBATCH --partition=mypartition" >> $SLURMFILE # Set your partition here echo "#SBATCH --time=01:00:00" >> $SLURMFILE echo "#SBATCH --nodes=1" >> $SLURMFILE - echo "#SBATCH --nice=100" >> $SLURMFILE # Set priority very low to allow other jobs through + # It may be polite to set the priority very low to allow other jobs through: + #echo "#SBATCH --nice=100" >> $SLURMFILE echo >> $SLURMFILE echo "#SBATCH --workdir $PWD" >> $SLURMFILE |