gcta 计算 fst 实践
Posted 小虾米2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gcta 计算 fst 实践相关的知识,希望对你有一定的参考价值。
1、测试数据下载
链接:https://pan.baidu.com/s/1EfffExvtxZYI1QLuxUZQ_g
提取码:5wfe
数据为plink 格式数据test.map、test.ped ;
一共包含三个品种,DOR、GMM、SUN各20个样本。
2、提取两个品种数据
grep -E "DOR|SUN" test.ped > a && mv a test.ped
一共40 个样本,DOR 20,SUN 20。
3、准备 subpopu.txt 文件
awk \'{print$1,$2,$1}\' test.ped > subpopu.txt
4、将测试数据转化为二进制
plink --file test --make-bed --sheep --out test
5、gcta 计算 fst
gcta64 --bfile test --fst --autosome-num 26 --sub-popu subpopu.txt --out test
查看结果如下:
参考:https://cnsgenomics.com/software/gcta/#Fst
以上是关于gcta 计算 fst 实践的主要内容,如果未能解决你的问题,请参考以下文章
Fst/Pi/Dxy的计算、基因岛屿与曼哈顿图(1) - 个人笔记