Bug fix for TiTv calculation -- shouldn't be rounding

This commit is contained in:
Mark DePristo 2011-11-28 10:20:34 -05:00
parent 436b4dc855
commit 3c36428a20
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class VariantSummary extends VariantEvaluator implements StandardEval {
n++; n++;
} }
} }
return Math.round(sum / (1.0 * n)); return sum / (1.0 * n);
} }
} }