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

FreeBayes

基于 haplotype 的变异检测工具,可从 BAM/CRAM 中调用 SNP、indel 和复杂变异。Haplotype-based variant caller for alignment data.

速览 | Quick Look

安装 | Install

mamba install -c bioconda freebayes

常用命令 | Common Commands

单样本 calling:

freebayes -f reference.fa sample.sorted.bam > sample.freebayes.vcf

多样本 calling:

freebayes -f reference.fa -L bam.list > cohort.freebayes.vcf

限制区域:

freebayes -f reference.fa -t targets.bed -L bam.list > cohort.targets.vcf

基础过滤:

bcftools view -i 'QUAL>=20 && INFO/DP>=10' cohort.freebayes.vcf \
  -Oz -o cohort.filtered.vcf.gz

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References