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

DIAMOND

高速蛋白序列比对工具,常作为 BLASTP/BLASTX 的快速替代。Fast protein sequence aligner for large-scale homology search.

速览 | Quick Look

安装 | Install

mamba install -c bioconda diamond

常用命令 | Common Commands

构建数据库:

diamond makedb --in proteins.fa -d proteins.dmnd

蛋白对蛋白搜索:

diamond blastp -d proteins.dmnd -q query_proteins.fa \
  -o matches.tsv -f 6 qseqid sseqid pident length evalue bitscore \
  --threads 8

核酸翻译搜索:

diamond blastx -d proteins.dmnd -q contigs.fa \
  -o blastx.tsv -f 6 --threads 8 --evalue 1e-5

更敏感模式:

diamond blastp -d proteins.dmnd -q query.fa -o sensitive.tsv \
  --sensitive --threads 8

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References