diff --git a/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java b/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java index f6143c5ac..fe8821a61 100755 --- a/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java +++ b/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java @@ -174,10 +174,6 @@ public class GATKArgumentCollection { @Argument(fullName = "read_group_black_list", shortName="rgbl", doc="Filters out read groups matching : or a .txt file containing the filter strings one per line.", required = false) public List readGroupBlackList = null; - @Element(required = false) - @Argument(fullName = "enable_overlap_filters",shortName="eof", doc="Enable automatic removal of bases that overlap adaptor sequence or that overlap their mate pair", required = false) - public boolean enableOverlapFilters = false; - /** * marshal the data out to a object * @@ -344,9 +340,6 @@ public class GATKArgumentCollection { if (other.intervalMerging != this.intervalMerging) { return false; } - if (enableOverlapFilters != other.enableOverlapFilters) { - return false; - } if ((other.RODToInterval == null && RODToInterval != null) || (other.RODToInterval != null && !other.RODToInterval.equals(RODToInterval))) { return false;