12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
|
#!/bin/bash
|
||
|
#SBATCH --time=10:00:00
|
||
|
#SBATCH --tasks-per-node=8
|
||
|
#SBATCH --qos=avandewa-condo
|
||
|
#SBATCH -J A5_lv3
|
||
|
|
||
|
for (( id=0 ; id<8 ; id++ ))
|
||
|
do
|
||
|
mcsqs -n=48 -ip=$id &
|
||
|
done
|
||
|
wait
|