meaning of genotype
1
0
Entering edit mode
22 months ago

Hello

I want to ask a question: when I look to vcf file I found this number in genotype (GT): 0/2, 1/2, 2/2, 0/3, 1/3,2/3,3/3,0/4,1/4,2/4,3/4, 4/4, 0/5,1/5,2/5,3/5,4/5,5/5,0/6,1/6,2/6,3/6,4/6,5/6,6/6 I didn't underatand the meaning of the number can any one explain the meaning of this genotype

vcf genotype • 803 views
ADD COMMENT
1
Entering edit mode
ADD REPLY
0
Entering edit mode

I didn't see before 6 ALTs . I have 2 queations here: 1- what is the maximum ALT ? 2- how can I know the number of ALT in my vcf? ( when I open using note is appear like just Alt only )

ADD REPLY
0
Entering edit mode
22 months ago

what is the maximum ALT ?

in the htslib api, the number of alleles is 2^16: https://github.com/samtools/htslib/blob/develop/htslib/vcf.h#L221

uint32_t n_info:16, n_allele:16;

how can I know the number of ALT in my vcf? (

 awk -F '\t' '/^[^#]/ {N=split($5,a,/[,]/);printf("%s:%s:%s %d\n",$1,$2,$4,N);}' in.vcf
ADD COMMENT
0
Entering edit mode

Thank you very much. The last question : as 0/0 is homo so for example 5/5 is homo ? and 1/6 is hetro?

ADD REPLY

Login before adding your answer.

Traffic: 2685 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