Skip to content
Snippets Groups Projects

Fix paths in example batch script.

Merged László Szücs requested to merge lszucs-master-patch-21077 into master
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
+ 5
5
@@ -70,17 +70,17 @@ echo `#!/bin/bash
#PBS -N casa_6.2.0-118_main
#PBS -l walltime=02:00:00:00
#PBS -d /lustre/cv/users/lszucs/2021.1.1_to_main/main/2017.1.00670.S/rawdata main/2017.1.00670.S/working
#PBS -L tasks=1:lprocs=9:memory=490gb
#PBS -d /lustre/cv/users/lszucs/2021.1.1_to_main/main/2017.1.00670.S/working
#PBS -L tasks=1:lprocs=9
#PBS -V
#PBS -j oe
#PBS -m abe
#PBS -M lszucs@nrao.edu
CASAPATH=/users/lszucs/casa/casa-6.2.0-118/bin/
SCIPIPE_HEURISTICS=/users/lszucs/pipeline_src/main/
CASAPATH=/users/lszucs/casa/casa-6.2.0-118/
SCIPIPE_HEURISTICS=/users/lszucs/pipeline_src/main/pipeline
xvfb-run -d mpicasa -machinefile $PBS_NODEFILE casa --nologger --log2term -c "pipeline.recipereducer.reduce(vis=['../rawdata/uid___A002_Xca8fbf_X5733'], procedure='procedure_hifa_calimage.xml')" >& pipe.log` > ../working/batch_script.sh
xvfb-run -d $CASAPATH/mpicasa -machinefile $PBS_NODEFILE $CASAPATH/casa --nologger --log2term -c "pipeline.recipereducer.reduce(vis=['../rawdata/uid___A002_Xca8fbf_X5733'], procedure='procedure_hifa_calimage.xml')" >& main_pipe.log` > ../working/batch_script.sh
```
The working directory (`PBS -d`), `SCIPIPE_HEURISTICS`, your e-mail address for notification (`PBS -M`) and the name of the measurement set needs to be changed for other setups.
Loading