From c33a779f3387020629cce99d7f5abea8544fb7af Mon Sep 17 00:00:00 2001 From: ebanks Date: Fri, 13 Mar 2009 18:48:11 +0000 Subject: [PATCH] corrected spelling of method git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@50 348d0f76-0448-11de-a6fe-93d51630548a --- .../java/src/org/broadinstitute/sting/atk/ReadWalker.java | 2 +- .../sting/atk/modules/BaseQualityHistoWalker.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/java/src/org/broadinstitute/sting/atk/ReadWalker.java b/playground/java/src/org/broadinstitute/sting/atk/ReadWalker.java index d063ef976..bce2333c6 100755 --- a/playground/java/src/org/broadinstitute/sting/atk/ReadWalker.java +++ b/playground/java/src/org/broadinstitute/sting/atk/ReadWalker.java @@ -24,5 +24,5 @@ public interface ReadWalker { ReduceType reduceInit(); ReduceType reduce(MapType value, ReduceType sum); - void onTraveralDone(); + void onTraversalDone(); } diff --git a/playground/java/src/org/broadinstitute/sting/atk/modules/BaseQualityHistoWalker.java b/playground/java/src/org/broadinstitute/sting/atk/modules/BaseQualityHistoWalker.java index 18e9a6bf1..5e8e86d3c 100755 --- a/playground/java/src/org/broadinstitute/sting/atk/modules/BaseQualityHistoWalker.java +++ b/playground/java/src/org/broadinstitute/sting/atk/modules/BaseQualityHistoWalker.java @@ -43,7 +43,7 @@ public class BaseQualityHistoWalker implements ReadWalker { return value + sum; } - public void onTraveralDone() { + public void onTraversalDone() { int lastNonZero = -1; for ( int i = this.qualCounts.length-1; i >= 0; i-- ) { if ( this.qualCounts[i] > 0 ) {