Versions Compared

Key

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

Prepared by the eResearch Office, QUT.

...

In the folder you have created for this run create launch.pbs using a text editor (i.e., vim, nano)

Code Block
#!/bin/bash -l
#PBS -N nfrna2
#PBS -l select=1:ncpus=2:mem=4gb
#PBS -l walltime=24:00:00

cd $PBS_O_WORKDIR
module load java
NXF_OPTS='-Xms1g -Xmx4g'

nextflow run nf-core/rnaseq -profile condasingularity --input samplesheet.csv --genome GRCm38 --alignedaligner star_rsem --min_mapped_reads 5 

...