Converting Thousand genome BCF file into VCF with BCFtools
1
0
Entering edit mode
7.8 years ago
always_learning ★ 1.1k

Hi All.

I am trying to convert 1000 Genome BCF files into VCF files using bcftools and process is getting quit automatically after just converting 2-3 chromosomes. Just wondering if some one else is getting same problem as well ?

bcftools view ALL.wgs.phase3_shapeit2_mvncall_integrated_v5.20130502.genotypes.bcf | bgzip -c > ALL.wgs.phase3_shapeit2_mvncall_integrated_v5.20130502.vcf.gz

If problem is due to bgzip or bcftools ?

This one is version of BCFtools that I am using. bcftools 1.3 Using htslib 1.3

bcftools • 4.7k views
ADD COMMENT
0
Entering edit mode

Is there an error message? How large is your bcf?

ADD REPLY
2
Entering edit mode
7.8 years ago

instead of piping the output to bgzip, try creating the output file directly:

bcftools view -Oz \
-o ALL.wgs.phase3_shapeit2_mvncall_integrated_v5.20130502.vcf.gz \
ALL.wgs.phase3_shapeit2_mvncall_integrated_v5.20130502.genotypes.bcf

you do know you have the latest .vcf files already available, don't you?

ADD COMMENT
0
Entering edit mode

Yes I know but since I had .bcf file already to trying to convert that only. Thanks

ADD REPLY

Login before adding your answer.

Traffic: 2023 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6