added precision

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@246 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-04-01 16:21:29 +00:00
parent 16c2ea4673
commit 6994cca988
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ public class DepthOfCoverageWalker extends LocusWalker<Integer, Pair<Long, Long>
}
public void onTraversalDone(Pair<Long, Long> result) {
out.println("Average depth of coverage is: " + ((double)result.getFirst() / (double)result.getSecond()));
out.printf("Average depth of coverage is: %.2f\n", ((double)result.getFirst() / (double)result.getSecond()));
}
}