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

SPAdes

常用 de novo 组装器,覆盖细菌基因组、单细胞和宏基因组等场景。Popular de novo assembler for short-read and hybrid assembly workflows.

速览 | Quick Look

安装 | Install

mamba install -c bioconda spades

常用命令 | Common Commands

双端短读长组装:

spades.py -1 sample_R1.fq.gz -2 sample_R2.fq.gz \
  -o spades_out -t 16 -m 64

宏基因组模式:

metaspades.py -1 meta_R1.fq.gz -2 meta_R2.fq.gz \
  -o metaspades_out -t 16 -m 128

混合组装:

spades.py -1 R1.fq.gz -2 R2.fq.gz --nanopore long_reads.fq.gz \
  -o hybrid_out -t 16 -m 128

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References