Hello,
Thank you for your guidance. I have used this:
gatk Concordance \
-R ref.fa \
-eval low_coverage.vcf \
--truth high_coverage.vcf \
--summary summary.tsv
The output summary.tsv shows:
type TP FP FN RECALL PRECISION
SNP 95612107 8193277 39372182 0.708 0.921
INDEL 0 0 0 0.0 0.0
I am confused about the output. If I understand correctly, TP shows the overlapping (common) number of SNPs in two files. How can I also get the statistics about the agreement of SNP calls out of the total number of common SNPs among both files e.g., A at the same position in both files?
Thank you!