Whoops. Changed denominator from reads to bases.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@734 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2009-05-17 03:42:25 +00:00
parent 5d60efc498
commit a0464633fd
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class BasecallingStats {
* @return the percent of bases called consistently
*/
public double getPercentConsistent() {
return ((double) getBasesConsistent())/((double) getReadsTotal());
return ((double) getBasesConsistent())/((double) getBasesTotal());
}
/**