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:
parent
16c2ea4673
commit
6994cca988
|
|
@ -32,6 +32,6 @@ public class DepthOfCoverageWalker extends LocusWalker<Integer, Pair<Long, Long>
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onTraversalDone(Pair<Long, Long> result) {
|
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()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue