Some interpretation of Strelka output
1
0
Entering edit mode
4.3 years ago
zizigolu ★ 4.3k

Hi

I have called INDELs for tumor/matched normal by Strelka caller

In .vcf header I have

##FORMAT=<ID=TAR,Number=2,Type=Integer,Description="Reads strongly supporting alternate allele for tiers 1,2">
##FORMAT=<ID=TIR,Number=2,Type=Integer,Description="Reads strongly supporting indel allele for tiers 1,2">

I want to calculate VAF, so I am confused by the difference of alternate allele versus indel allele ; Which one I should use for calculating Variant Allele Frequency (VAF)?

WGS INDEL STRELKA • 3.2k views
ADD COMMENT
2
Entering edit mode
4.3 years ago
ATpoint 82k

The manual contains a section on how to calculate AFs: https://github.com/Illumina/strelka/tree/master/docs/userGuide#somatic

For somatic indels:

tier1RefCounts = First comma-delimited value from FORMAT/TAR
tier1AltCounts = First comma-delimited value from FORMAT/TIR
Somatic allele freqeuncy is $tier1AltCounts / ($tier1AltCounts + $tier1RefCounts)

Alternate vs. indel allele question answered by the lead developer, see https://groups.google.com/forum/#!topic/strelka-discuss/Pz9EYKnE6u8 (found via a commonly used search engine).

ADD COMMENT
0
Entering edit mode

Thank you I read all you kindly posted but still not quite sure should I use Alternate or indel allele in this formula?

Somatic allele freqeuncy is $tier1AltCounts / ($tier1AltCounts + $tier1RefCounts)
ADD REPLY

Login before adding your answer.

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