Skip to content

Nextflow Installation

Mike Lloyd edited this page Mar 17, 2022 · 1 revision

Nextflow Installation

Note: the convention for this document is to use symbol $ to delineate bash prompt where commands should to be entered. Do not copy the $ symbol in the commands below. Comments are denoted by hash tags #. Variables to be changed are denoted with brackets < >. Pseudo variables will be in all uppercases.

Requirements = Linux OS, Java, Singularity

Part A: Once on Sumner, request an interactive node (must be on compute node for singularity) $ srun -p compute -t 02:00:00 --mem 2G --pty bash

Part B: Load the Singularity module $ module load singularity

Part C: Go to Home Directory (note: the symbol ~ is a shortcut for your home directory. You can also type the full path to your home directory.) $ cd ~

Part D: Download Nextflow Using Curl (only needs to be completed once by each user) $ curl -s https://get.nextflow.io/ | bash

Part E: Test Nextflow installation $ ~/nextflow run hello

Output: Ciao world! Bonjour world! Hello world! Hola world!

Clone this wiki locally