Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
#!/bin/bash

#PBS -l ncpus=4
#PBS -l walltime=24:00:00
#PBS -l mem=4Gb
#PBS -l jobfs=20gb
#PBS -l wd

# Load module, always specify version number.
module load dalton/2020

# Must include `#PBS -l storage=scratch/ab12+gdata/yz98` if the job
# needs access to `/scratch/ab12/` and `/g/data/yz98/`. Details on:
# https://opus.nci.org.au/display/Help/PBS+Directives+Explained

dalton -N $PBS_NCPUS -o output input

...