Bases 'A' and 'a' (etc.) no longer considered different.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3339 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
ec543b7b62
commit
4a7902bb8e
|
|
@ -119,7 +119,7 @@ public class ComputeConfusionMatrix extends LocusWalker<Integer, Integer> {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void incrementConfusionCounts(String context, String altBase, String refBase) {
|
private void incrementConfusionCounts(String context, String altBase, String refBase) {
|
||||||
String key = String.format("%s:%s:%s", context, altBase, refBase);
|
String key = String.format("%s:%s:%s", context, altBase.toUpperCase(), refBase.toUpperCase());
|
||||||
|
|
||||||
Integer counts = confusionCounts.get(key);
|
Integer counts = confusionCounts.get(key);
|
||||||
if (counts == null) { counts = 0; }
|
if (counts == null) { counts = 0; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue