File tree 1 file changed +0
-10
lines changed
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -169,10 +169,6 @@ Randstrobe RandstrobeIterator::get(unsigned int strobe1_index) const {
169
169
uint64_t min_val = std::numeric_limits<uint64_t >::max ();
170
170
Syncmer strobe2 = strobe1;
171
171
172
- if (syncmers.size () < w_start) {
173
- return make_randstrobe (strobe1, strobe1, aux_len);
174
- }
175
-
176
172
for (auto i = w_start; i <= w_end && syncmers[i].position <= max_position; i++) {
177
173
assert (i < syncmers.size ());
178
174
@@ -201,12 +197,6 @@ Randstrobe RandstrobeGenerator::next() {
201
197
return RandstrobeGenerator::end ();
202
198
}
203
199
auto strobe1 = syncmers[0 ];
204
-
205
- if (syncmers.size () < w_min) {
206
- auto randstrobe = make_randstrobe (strobe1, strobe1, aux_len);
207
- syncmers.pop_front ();
208
- return randstrobe;
209
- }
210
200
auto max_position = strobe1.position + max_dist;
211
201
uint64_t min_val = std::numeric_limits<uint64_t >::max ();
212
202
Syncmer strobe2 = strobe1; // Default if no nearby syncmer
You can’t perform that action at this time.
0 commit comments