This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How does one determine whether a deletion is homogeneous or heterogeneous by reading a vcf file with genotype information?

I got the file union.2010_06.deletions.genotypes.vcf.gz at the 1000genomes ftp site. What information in the file can help me which deletions are homogeneous and which are heterogeneous? Thank for your help in advance.

The beginning of the file header is as follows:

##fileformat=VCFv4.0
##ALT=<ID=DEL,Description="Deletion">
##FILTER=<ID=LowQual,Description="Genotype call confidence below LOD 1.3">
##FORMAT=<ID=CN,Number=1,Type=Integer,Description="Copy number genotype for imprecise events">
[...]
next-gen sequence

1 answer

The header from your VCF states that it's in the VCF format version 4.0, so this should get you started:

http://www.1000genomes.org/node/101

(I am deleting the rest of your header, as it doesn't add any information concerning your question)

Log in to answer this question.