Skip to main content

Run Nextflow workflows

Nextflow enables scalable and reproducible scientific workflows using software containers. It allows the adaptation of pipelines written in the most common scripting languages.

Nextflow has been developed by the genomic research scientific community and is built to run bioinformatics pipeline.

Define your workflow in a Bash script fashion, providing input, output and the command to run. Without the need to create and use Docker container for Conda pipelines

Install Nextflow

Install the nextflow client on your computer:

wget -qO- https://get.nextflow.io | bash
Official documentation

Run workflow

Try the hello world workflow from Nextflow using an existing storage:

nextflow kuberun https://github.com/nextflow-io/hello -v pvc-mapr-projects-showcase:/data
Use Conda environments

You can easily define Conda environments and workflows with Nextflow.