IQtree 是一款用于构建系统发育树的软件,支持 Phylip、Fasta、Nexus、Clustalw 等多序列比对后的数据格式。但随着 SNP 数据费用的大幅下降,研究人员利用 SNP 数据构建系统发育树的情况越大越多。本文为用 vcf 格式的 SNP 数据构建系统发育树的教程,主要包括:Vcf 文件转 Phylip 文件、Phylip 文件输入 IQtree 建树 两部分。
本教程使用的数据集矩阵大小为 577 × 10000。样本取自 577 个玉米品系,包含 70 个大刍草(par)、208 个热带品系(tst)、172 个温带品系(temp)、127 个混合品系(mixed)。SNP 取自 3 号染色体上 743w SNP,经过过滤(maf > 0,miss = 0)与随机抽样后,最终得到 1w SNP。数据已上传(链接如下),免费下载(0 积分)。
python vcf2phylip.py --input Maize_Chr3.maf_0.miss_0.10000SNP.vcf
--input FILENAME Name of the input VCF file,
can be gzipped (but the extension must be .vcf.gz)
输出文件:Maize_Chr3.maf_0.miss_0.10000SNP.min4.phy
使用 vcf2phylip.py 脚本将 vcf 文件转化为 phylip 格式。vcf2phylip.py 脚本格式转换速度较快,例如,处理 20GB VCF(约 300w SNP x 650 个体)约 27 分钟。除了默认的输出格式 PHYLIP 外,还支持将 VCF 转换为 FASTA、NEXUS 或二进制 NEXUS 格式。
vcf2phylip.py 脚本的下载、详细介绍参见:https://github.com/edgardomortiz/vcf2phylip
iqtree -s Maize_Chr3.maf_0.miss_0.10000SNP.min4.phy -keep-ident -m GTR+F+R6+ASC -fast -nt 50
-s 输入文件
-keep-ident 保留序列相同的样本
-m 选择替换模型(substitution model)
-fast 加速建树
-nt 最大线程数
程序大概率会报错(Error)并输出文件:Maize_Chr3.maf_0.miss_0.10000SNP.varsites.phy
iqtree -s Maize_Chr3.maf_0.miss_0.10000SNP.varsites.phy -m GTR+F+G4+ASC -fast -nt 50
将输出文件 Maize_Chr3.maf_0.miss_0.10000SNP.varsites.phy.treefile 放入 iTOL 中即可观察所构建出的系统发育树结构。
IQtree 将位点(site)分为 3 类:constant(invariant)、singleton、informative(variable)。constant site 指位点在所有样本中只包含 1 种碱基;singleton site 指位点包含 2 种类型碱基,但突变仅出现 1 次;informative site 指位点包含 2 种类型碱基,且每种碱基出现至少 2 次。从算法角度来说,IQtree 无法利用 singleton 对样本分群,即无法提供分群信息,所以 constant 与 singleton 位点属于 uninformative site 。
IQtree 对歧义位点(Ambiguous site)位点采用交集(intersection)形式分析:如果交集非空则忽略歧义碱基,若为空则视为 variant,同列中歧义碱基不堆叠。
site 1234567
species_1 CCCCCCC
species_2 RTCYRCC
species_3 CYTYYRT
species_4 CCCYCRT
site1 is singleton, because R={A or G}, which exclude C, uninformative.
site2 is singleton, because Y={C or T}, which include C, ignore Y, uninformative.
site3 is singleton, uninformative.
site4 is constant, because Y={C or T}, which include C, ignore Y, uninformative.
site5 is singleton, because R={A or G}, which exclude C, Y={C or T}, which include C, ignore Y, uninformative.
site6 is singleton, because R={A or G}, which exclude C, uninformative.
site7 is informative.
由于歧义位点的交集策略,当同列中仅包含非空歧义碱基时,位点会被判定为 constant site(如上例中 site 4)。因此 SNP 数据从 vcf 转 phylip 后存在部分 site 被判定为 constant 的情况。如本教程 1w SNP 中包括 1807 parsimony-informative sites,1867 singleton sites,6466 constant sites。
IQtree 构建系统发育树时,informative sites 用于推断树的拓扑结构与分枝长度,uninformative site 则用于矫正。由于个体间固定长度区间内 SNP 越多,说明个体间积累的突变越多,分离的时间越长。所以 SNP 构成的 Fasta 数据大幅增加了突变的密度,使个体间分离时间大幅提前,导致 分枝过长。
同时,分枝过长 会压缩祖先之间的分枝长度,降低 祖先之间拓扑结构推断的 准确性。因为祖先与个体之间时间跨度越长,祖先的可能性就越多,如果祖先对应一个概率分布,则祖先与祖先之间的分布交集就越大。
例如 A / B 的祖先是 D,C 的祖先是 E,D / E 的祖先是 F,如果 A / B / C 与 D / E 的距离越远,D / E 的可能序列就越多,D / E 分布重合的区间就越大;因为 D / E 间相似度高,所以 D / E 与 F 的距离会缩短,即压缩 D / E 与祖先 F 之间的分枝长度,降低树结构预测的准确性。
为了矫正输入 SNP 数据导致发育树分枝过长的情况,IQtree 提供 +ASC 参数(ascertainment bias correction)。使用本教程数据,分别评测了 GTR+F+G4 和 GTR+F+G4+ASC 两种替换模型下的树结构,结果参见下节(Test 2&3)。+ASC 虽然对 Log-likelihood 影响较小(1.2%=1-79848/80786),但对树结构影响较大(23.3%=1-5.536/7.216),且能够大幅提高稳定性(148%->0%)。
Test | input | model | optimize | Log-likelihood | Total tree length | Sum of internal branch lengths (ratio) | near-zero internal branches | Lmap not informative ratio |
---|---|---|---|---|---|---|---|---|
1 | min4.phy | GTR+F+G4 | fast | -95636 | 3.751 | 0.799 (21%) | 93 | 8.48% |
2 | varsites.phy | GTR+F+G4 | fast | -80786 | 7.216 | 1.549 (21%) | 97 | 14.82% |
3 | varsites.phy | GTR+F+G4+ASC | fast | -79848 | 5.536 | 1.185 (21%) | 101 | 0% |
4 | varsites.phy | GTR+F+R6+ASC | fast | -77426 | 1.327 | 0.269 (20%) | 263 | 0% |
5 | varsites.phy | GTR+F+R6+ASC | complete | -77239 | 1.079 | 0.210 (19%) | 316 | 0% |
iqtree -s Maize_Chr3.maf_0.miss_0.10000SNP.varsites.phy -m GTR+F+R6+ASC -p 1wSNP_varsites.nex -fast -nt 50
Repeat | Log-likelihood | Total tree length | Sum of internal branch lengths (ratio) | near-zero internal branches |
---|---|---|---|---|
1 | -72435 | 1.383 | 0.281(20%) | 287 |
2 | -72046 | 1.892 | 0.385 (20%) | 217 |
3 | -72416 | 1.724 | 0.345 (20%) | 234 |
4 | -72531 | 1.607 | 0.332 (20%) | 220 |
http://www.iqtree.org/doc/Substitution-Models
- Binary and morphological models
- Ascertainment bias correction
http://www.iqtree.org/doc/Frequently-Asked-Questions
- Why does IQ-TREE complain about the use of +ASC model?
- What are the differences between alignment columns/sites and patterns?