#!/usr/bin/bash
# Request Resources
#PBS -l select=1:ncpus=48
# Name of the Job
#PBS -N HARENode
# WallTime
#PBS -l walltime=48:00:00
# Merge output and error file
#PBS -j oe
# Project Name
#PBS -P other_ldrd
# Email  a=aboarted, e=terminates, b=begin
#PBS -m bae
# Specifc Email address
#PBS -M cam472@uw.edu
# Specific PBS software
#PBS -l software=undetermined

cd "$PBS_O_WORKDIR"

#--------------------------------------#
# Purge all Modules
module purge all
# Load Python Anaconda
module load python/3.7-anaconda-2019.10
# Activate specific environment
source activate hare
# Run the code
python ./HARE.py
