Samtools Vcf Format Depth Discrepancy?
3
1
Entering edit mode
12.4 years ago

Here is a VCF line directly from the Samtools variant calling pipeline (no varfilter.pl) for one exome:

chr1    156713512       .       C       T       60.5    .       **DP=6**;AF1=1;AC1=2;DP4=0,0,4,0;MQ=34;FQ=-39       GT:PL:**DP**:SP:GQ  1/1:93,12,0:**4**:0:21

I noticed that the genotype column has a depth of 12 listed (highlighted: **). How can this be if DP=6? What am I missing?

vcf read samtools • 5.0k views
ADD COMMENT
6
Entering edit mode
12.4 years ago

That 12 is not DP, DP is 4 (high quality bases)

GT:1/1
PL:93,12,0
DP:4
SP:0
GQ:21
ADD COMMENT
0
Entering edit mode

Sorry, I accidentally highlighted the wrong field. How are high quality reads defined? Seems odd not to count the total reads per individual...

Thanks

ADD REPLY
0
Entering edit mode

I think phred >=20

ADD REPLY
0
Entering edit mode
12.4 years ago

In the [?]VCF specs[?]:

DP in info column (8th):

DP - combined depth across samples, e.g. DP=154

DP in genotype column (9th):

DP - read depth at this position for this sample (Integer)

One is for across samples and other is for this sample only.

ADD COMMENT
0
Entering edit mode
12.3 years ago
Deniz • 0

How did you get this vcf output? dafault setting gives GT:PL:GQ format. Could you write your command?

Thanks

ADD COMMENT
0
Entering edit mode

Pretty much used the defaults from SAMtools why?

ADD REPLY
0
Entering edit mode

Your format is different. That's why I wondered. Are you happy with results and format?

ADD REPLY

Login before adding your answer.

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