Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
nextflow Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# nextflow
> Run computational pipelines. Mostly used for bioinformatics workflows.
> More information: <https://www.nextflow.io>.
- Run a pipeline, use cached results from previous runs:
`nextflow run {{main.nf}} -resume`
- Run 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 log`
- Remove cache and intermediate files for a specific run:
`nextflow clean -force {{run_name}}`
- List all downloaded projects:
`nextflow list`
- Pull the latest version of a remote workflow from Bitbucket:
`nextflow pull {{user/repo}} -hub bitbucket`
- Update Nextflow:
`nextflow self-update`