consistency with java naming conventions
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@535 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
bfce0c93ab
commit
ce470702fc
|
|
@ -24,7 +24,7 @@ public class DepthOfCoverageWalker extends LocusWalker<Integer, Pair<Long, Long>
|
|||
return context.getReads().size();
|
||||
}
|
||||
|
||||
public boolean ReduceByInterval() {
|
||||
public boolean isReduceByInterval() {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ public abstract class Walker<MapType, ReduceType> {
|
|||
* The system will call onTraversalDone( GenomeLoc -> reduce ), after all reductions are done,
|
||||
* which is overloaded here to call onTraversalDone(reduce) for each location
|
||||
*/
|
||||
public boolean ReduceByInterval() {
|
||||
public boolean isReduceByInterval() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue