Oops. numReads is now called size
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2175 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
21744e024b
commit
27651d8dc2
|
|
@ -32,7 +32,7 @@ public class PercentOfBasesCoveredWalker extends LocusWalker<Boolean, Pair<Integ
|
|||
}
|
||||
|
||||
public Boolean map(RefMetaDataTracker tracker, ReferenceContext ref, AlignmentContext context) {
|
||||
return context.numReads() > minDepth;
|
||||
return context.size() > minDepth;
|
||||
}
|
||||
|
||||
public Pair<Integer,Integer> reduce(Boolean map, Pair<Integer,Integer> prevReduce) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue