|
I gave get_MNV a VCF that already carries allele frequencies, plus a BAM. The Which of the two is right, and did I lose the original numbers? |
Replies: 1 comment
|
Both are right. They answer different questions. Your caller's frequency is what it computed for a position. With That last distinction is where the numbers usually part company. The frequency of You have not lost anything. The values that came in are kept as And without |
Both are right. They answer different questions.
Your caller's frequency is what it computed for a position. With
--bam,get_MNV counts again from the alignments, and it counts per event: per SNV,
per MNV haplotype, and per indel event.
That last distinction is where the numbers usually part company. The frequency of
an MNV haplotype is not the frequency of either change in it: it is the fraction
of reads carrying both, which is normally lower than either one alone. A
position-wise number cannot express that, because the thing being measured spans
more than one position.
You have not lost anything. The values that came in are kept as
OFREQandODP, beside the recounted ones, so you can co…