@@ -58,26 +58,21 @@ public class GappedOutput <G extends AbstractGappedRegion<G>> extends AbstractPo
5858
5959 private final boolean mReverseFrame ;
6060
61- private final int mRepeatThreshold ;
62-
6361 //hang on to these for clone calls
6462
6563 private final GapBucketsInfo mBucketInfo ;
6664
6765 /**
68- *
6966 * @param params parameters.
7067 * @param regionFactory factory for creating regions
7168 * @param scorer scoring implementation used
7269 * @param buildLengths lengths of sequences.
7370 * @param out where to write the output.
7471 * @param writer where to write output for unmapped reads
7572 * @param bucketInfo bucket info
76- * @param repeatFreq the repeat frequency threshold
7773 */
78- GappedOutput (final PositionParams params , GappedRegionFactory <G > regionFactory , GapScorer scorer , final ImmutableIntArray buildLengths , final Appendable out , final PositionWriter writer , final GapBucketsInfo bucketInfo , int repeatFreq ) {
74+ GappedOutput (final PositionParams params , GappedRegionFactory <G > regionFactory , GapScorer scorer , final ImmutableIntArray buildLengths , final Appendable out , final PositionWriter writer , final GapBucketsInfo bucketInfo ) {
7975 super (params , out );
80- mRepeatThreshold = repeatFreq ;
8176 mBucketInfo = bucketInfo ;
8277 mBuildLengths = buildLengths ;
8378 final Integer maxGap = params .output ().maxGap ();
@@ -436,7 +431,7 @@ public void nextQuery(final Frame frame, final int seqId) {
436431
437432 @ Override
438433 public PositionOutput reverseClone () {
439- return new GappedOutput <>(mParams , mRegionFactory , mProbabilities , mBuildLengths , mOut , mWriter .reverseClone (), mBucketInfo , mRepeatThreshold );
434+ return new GappedOutput <>(mParams , mRegionFactory , mProbabilities , mBuildLengths , mOut , mWriter .reverseClone (), mBucketInfo );
440435 }
441436
442437}
0 commit comments