vcftools报错:Writing PLINK PED and MAP files ... Error: Could not open temporary file.解决方案
Posted chenwenyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vcftools报错:Writing PLINK PED and MAP files ... Error: Could not open temporary file.解决方案相关的知识,希望对你有一定的参考价值。
用vcftools的“--plink”参数生成plink格式文件时,小样本量测试可以正常生成plink格式,用大样本量时产生Writing PLINK PED and MAP files ... Error: Could not open temporary file.报错,于是尝试将“--plink"参数修改为”--plink-tped“参数,成功运行,具体如下:
/bin/vcftools --vcf 1000Genomes.vcf --plink-tped --out 1000Genomes
之后生成tfam和tped格式的中间文件,再将这个中间文件生成plink常用的格式文件
比如,生成ped和map格式:
plink --tfile 1000Genomes --recode --out 1000Genomes
生成bed,bim,fam格式文件:
plink --tfile 1000Genomes --make-bed --out 1000Genomes
以上是关于vcftools报错:Writing PLINK PED and MAP files ... Error: Could not open temporary file.解决方案的主要内容,如果未能解决你的问题,请参考以下文章
2021-03-17 在linux上将vcf文件转plink的格式bed,bim,fam
解决plink报错:.bim file has a split chromosome. Use --make-bed by itself to remedy this.