remove incorrect parentheses
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2211 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
886c44303a
commit
d487428468
|
|
@ -55,7 +55,7 @@ public class GATKPaperGenotyper extends LocusWalker<SimpleCall, Integer> impleme
|
|||
byte pileupBase = bases[index];
|
||||
for (char genotypeBase : genotype.toString().toCharArray())
|
||||
if (genotypeBase == pileupBase)
|
||||
likelihoods[genotype.ordinal()] += Math.log10(0.5 * ((1 - epsilon) + epsilon / 3));
|
||||
likelihoods[genotype.ordinal()] += Math.log10(0.5 * (1 - epsilon) + epsilon / 3);
|
||||
else
|
||||
likelihoods[genotype.ordinal()] += Math.log10(epsilon / 3);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue