mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2025-01-03 03:44:15 +00:00
43ebf660ee
* Update priors * Update submit * Update README * Relax width of calibration priors * Relax width of calibration priors * Update smooth scales * Update settings * Update README * Update submit * Add names * Update nb * Fix bug * Update script * Move files * Small bug fix * Add script * Add script * Add script * Add more power * Update script * Quick fix * Rm blank line * Update nb * Update nb * Update nb
25 lines
508 B
Bash
Executable file
25 lines
508 B
Bash
Executable file
#!/bin/bash
|
|
nthreads=1
|
|
memory=16
|
|
on_login=${1}
|
|
queue="berg"
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="quijote_pecvel_covmat.py"
|
|
|
|
|
|
if [ "$on_login" != "1" ] && [ "$on_login" != "0" ]; then
|
|
echo "Invalid input: 'on_login' (1). Please provide 1 or 0."
|
|
exit 1
|
|
fi
|
|
|
|
pythoncm="$env $file"
|
|
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
|