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

Snakemake

Python 风格的可复现工作流引擎,常用于本地、HPC 和云端生信流程编排。Pythonic workflow engine for reproducible pipelines.

速览 | Quick Look

安装 | Install

mamba install -c conda-forge -c bioconda snakemake

常用命令 | Common Commands

本地运行:

snakemake --cores 8

空跑查看计划:

snakemake --dry-run --printshellcmds

使用 Conda 环境:

snakemake --cores 8 --use-conda

生成 DAG:

snakemake --dag | dot -Tpdf > dag.pdf

生成 HTML report:

snakemake --report report.html

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References