This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to get SNV abundance in NGS analysis

After SNV calling, I need to find each SNV's abundance, which means the variant's proportion in all reads that contain the position. How to get the value, and what tools I need to use?

ngs snp gatk

1 answer

After variant calling, you should have a VCF file. VCFs contain a DP field both in their INFO and FORMAT columns, indicating total and ALT depth. There is good documentation about VCFs out there. Spend some quality time reading it.

Thank you! But I found that it seems to be 'AP' field in FORMAT column which can get ref and alt reads count in VCF file:

##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic depths for the ref and alt alleles in the order listed">

Is this right?

Log in to answer this question.