mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-23 00:08:02 +00:00
24 lines
468 B
Bash
Executable file
24 lines
468 B
Bash
Executable file
memory=4
|
|
on_login=${1}
|
|
nthreads=${2}
|
|
ksmooth=${3}
|
|
|
|
queue="berg"
|
|
env="/mnt/users/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="flow_validation.py"
|
|
|
|
catalogue="A2"
|
|
simname="Carrick2015"
|
|
|
|
|
|
pythoncm="$env $file --catalogue $catalogue --simname $simname --ksmooth $ksmooth"
|
|
if [ $on_login -eq 1 ]; then
|
|
echo $pythoncm
|
|
$pythoncm
|
|
else
|
|
cm="addqueue -q $queue -n $nthreads -m $memory $pythoncm"
|
|
echo "Submitting:"
|
|
echo $cm
|
|
echo
|
|
eval $cm
|
|
fi
|