LinuxCommandLibrary

nextflow

nextflow

TLDR

Run a pipeline, use cached results from previous runs

$ nextflow run [main.nf] -resume
copy


Run a specific release of a remote workflow from GitHub
$ nextflow run [user/repo] -revision [release_tag]
copy


Run with a given work directory for intermediate files, save execution report
$ nextflow run [workflow] -work-dir [path/to/directory] -with-report [report.html]
copy


Show details of previous runs in current directory
$ nextflow log
copy


Remove cache and intermediate files for a specific run
$ nextflow clean -force [run_name]
copy


List all downloaded projects
$ nextflow list
copy


Pull the latest version of a remote workflow from Bitbucket
$ nextflow pull [user/repo] -hub bitbucket
copy


Update Nextflow
$ nextflow self-update
copy

Copied to clipboard