-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_tempAnalysis.sh
More file actions
18 lines (15 loc) · 867 Bytes
/
run_tempAnalysis.sh
File metadata and controls
18 lines (15 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Script to move files and then run the aggregation script
# Theodore Barnhart | tbarnhart@usgs.gov
#SBATCH --job-name=temperature_analysis # name that you chose
#SBATCH -n 1 # number of cores needed
#SBATCH -p normal # the partition you want to use, for this case prod is best
#SBATCH --account=wymtwsc # your account
#SBATCH --time=20:00:00 # Overestimated guess at time, the process will be cancelled at the time limit (this case 6 hours), prod allows 21 day jobs.
#SBATCH --mail-type=ALL # Send email on all events
#SBATCH --mail-user=tbarnhart@usgs.gov
#SBATCH -o %j.log # Sets output log file to %j ( will be the jobId returned by sbatch)
#SBATCH --mem=20000 #memory in MB
module load python/anaconda
source activate py36
python -u temperatureAnalysis.py