Bug fix for TiTv calculation -- shouldn't be rounding
This commit is contained in:
parent
436b4dc855
commit
3c36428a20
|
|
@ -131,7 +131,7 @@ public class VariantSummary extends VariantEvaluator implements StandardEval {
|
|||
n++;
|
||||
}
|
||||
}
|
||||
return Math.round(sum / (1.0 * n));
|
||||
return sum / (1.0 * n);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue