纠正错误 / Fix 添加实例 / Add example
文件格式 / Formats

Nextflow

面向可复现生信流程的工作流引擎,常与 nf-core、Conda、Docker/Singularity 配合使用。Workflow engine for reproducible bioinformatics pipelines, commonly used with nf-core, Conda, Docker, and Singularity.

速览 | Quick Look

安装 | Install

mamba install -c bioconda nextflow

常用命令 | Common Commands

运行 nf-core/rnaseq:

nextflow run nf-core/rnaseq \
  -profile docker \
  --input samplesheet.csv \
  --outdir results \
  --genome GRCh38

恢复中断任务:

nextflow run nf-core/rnaseq -resume -profile conda --input samplesheet.csv --outdir results

查看执行记录:

nextflow log
nextflow log <run_name> -f process,hash,status,exit,workdir

清理 work 目录中无用缓存:

nextflow clean -f

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References