diff --git a/pages/merlin6/05-Software-Support/gothic.md b/pages/merlin6/05-Software-Support/gothic.md index 77ab1cd..ee78776 100644 --- a/pages/merlin6/05-Software-Support/gothic.md +++ b/pages/merlin6/05-Software-Support/gothic.md @@ -181,8 +181,12 @@ the job, as showed above. /data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK gth_exit_code=$? - + + # Clean up data in /scratch rm -rf /scratch/$USER/$SLURM_JOB_ID + + # Return exit code from GOTHIC + exit $gth_exit_code ``` * Requesting 22 CPUs from a node, with default memory per CPU (4000MB/CPU): ```bash @@ -204,6 +208,9 @@ the job, as showed above. /data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK gth_exit_code=$? + # Clean up data in /scratch rm -rf /scratch/$USER/$SLURM_JOB_ID + + # Return exit code from GOTHIC exit $gth_exit_code ```