snippetbashTip
nextflow — Run computational pipelines. Mostly used for bioinformatics workflows. More information: <https://ww
Viewed 0 times
commandrunpipelinescomputationalusednextflowclimostly
Problem
How to use the
nextflow command: Run computational pipelines. Mostly used for bioinformatics workflows. More information: <https://www.nextflow.io/docs/latest/cli.html>.Solution
nextflow — Run computational pipelines. Mostly used for bioinformatics workflows. More information: <https://www.nextflow.io/docs/latest/cli.html>.Run a pipeline, use cached results from previous runs:
nextflow run {{main.nf}} -resumeRun a specific release of a remote workflow from GitHub:
nextflow run {{user/repo}} -revision {{release_tag}}Run with a given work directory for intermediate files, save execution report:
nextflow run {{workflow}} -work-dir {{path/to/directory}} -with-report {{report.html}}Show details of previous runs in current directory:
nextflow logRemove cache and intermediate files for a specific run:
nextflow clean -force {{run_name}}List all downloaded projects:
nextflow listPull the latest version of a remote workflow from Bitbucket:
nextflow pull {{user/repo}} -hub bitbucketUpdate Nextflow:
nextflow self-updateCode Snippets
Run a pipeline, use cached results from previous runs
nextflow run {{main.nf}} -resumeRun a specific release of a remote workflow from GitHub
nextflow run {{user/repo}} -revision {{release_tag}}Run with a given work directory for intermediate files, save execution report
nextflow run {{workflow}} -work-dir {{path/to/directory}} -with-report {{report.html}}Show details of previous runs in current directory
nextflow logRemove cache and intermediate files for a specific run
nextflow clean -force {{run_name}}Context
tldr-pages: common/nextflow
Revisions (0)
No revisions yet.