-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSubmit_July27v2.sh
26 lines (22 loc) · 1.06 KB
/
Submit_July27v2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#SBATCH -n 48 # Number of cores
#SBATCH -N 1 # Ensure that all cores are on one machine
#SBATCH -t 02-08:00 # Runtime in D-HH:MM, minimum of 10 minutes
#SBATCH -p shared
#SBATCH --mem 100G
#SBATCH --mail-type=ALL
#SBATCH [email protected]
#SBATCH -o myoutput.out # File to which STDOUT will be written, %j inserts jobid
#SBATCH -e myerrors.err # File to which STDERR will be written, %j inserts jobid
module load gcc/10.2.0-fasrc01
module load hdf5/1.10.7-fasrc01
module load python/3.10.9-fasrc01
python July25_t95_3000_tor4_lower_mask200_temp.py & # missing
python July25_t95_3000_tor4_mask200_temp.py & # missing
python July25_t95_3000_tor4_lower_mask5_temp.py & # missing
python July25_t95_3000_tor4_mask5_temp.py & # missing
python July25_10000_tor4_pr45_100Myr_lower_mask200_temp.py & # missing
python July25_10000_tor4_pr45_100Myr_mask200_temp.py & # missing
python July25_10000_tor4_pr45_100Myr_lower_mask5_temp.py & # missing
python July25_10000_tor4_pr45_100Myr_mask5_temp.py & # missing
wait