LinuxCommandLibrary

nextflow

workflow orchestration tool

TLDR

Run pipeline

$ nextflow run [pipeline.nf]
copy
Run with parameters
$ nextflow run [pipeline.nf] --input [data.txt]
copy
Run from GitHub
$ nextflow run [user/repo]
copy
Resume failed run
$ nextflow run [pipeline.nf] -resume
copy
Run with Docker
$ nextflow run [pipeline.nf] -with-docker
copy
Show pipeline info
$ nextflow info [pipeline]
copy
List runs
$ nextflow log
copy

SYNOPSIS

nextflow [command] [options]

DESCRIPTION

nextflow is a workflow orchestration tool. It runs data-driven computational pipelines.
The tool handles parallel execution. Supports cloud and HPC deployments.

PARAMETERS

COMMAND

Nextflow command.
run PIPELINE
Execute pipeline.
-resume
Resume from checkpoint.
-with-docker
Run in Docker containers.
info
Show pipeline info.
log
Show execution history.
--help
Display help information.

CAVEATS

Java-based. Requires Java 11+. Bioinformatics focused but general purpose.

HISTORY

Nextflow was created at CRG Barcelona for scalable, reproducible scientific workflows.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community