Hi, I have data from a mtDNA sequencing on a 316 Ion PGM Chip. Sequence reads where mapped to rCRS reference assembly.
With mitoSeek I get a table that looks like this
Chr Loc Ref A T C G a t c g
gi|251831106|ref|NC_012920.1| 1 G 0 0 0 19 0 0 0 91
gi|251831106|ref|NC_012920.1| 2 A 27 0 0 0 92 0 0 0
Up to Loc 16569 (reference size), so now I wish to get the sequencing sustitution error rate, for this I write a perl script that
a = Count the number or reads that not match the reference base at the position
b = sum all the reads covering the position and
c = compute the ratio of not matching reference reads vs all reads covering the position
Do this for all the 16569 positions
d=d+c
then to get the sequencing substition error rate I do d/16569, I get a value of 0.0013711611325426
Is this procedure ok? or I'm missing something obvious
best