Versions Compared

Key

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

...

For a more comprehensive nextflow.config template for usage at Pawsey, see Nextflow.

Alternative solution

In the sbatch job script, add the line unset SBATCH_EXPORT before running Nextflow. The below is an example of submitting a job script for a Nextflow main.nf script to run:


Column
width900px


Code Block
languagebash
themeEmacs
titleListing 1: Nextflow example script
#!/bin/bash -l

#SBATCH --account=$PAWSEY_PROJECT
#SBATCH --partition=workq
#SBATCH --job-name=nextflow-example
#SBATCH --time=1:00:00
#SBATCH --export=NONE

unset SBATCH_EXPORT

module load nextflow
module load singularity

nextflow run main.nf -profile zeus


...