Skip to content

Commit

Permalink
Get rid of add_to_hits_per_ref() min_diff parameter
Browse files Browse the repository at this point in the history
It has no effect
  • Loading branch information
marcelm committed Aug 26, 2023
1 parent 0ae0d2c commit c4bc2d4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/nam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ void add_to_hits_per_ref(
int query_end,
bool is_rc,
const StrobemerIndex& index,
size_t position,
int min_diff
size_t position
) {
int min_diff = std::numeric_limits<int>::max();
for (const auto hash = index.get_hash(position); index.get_hash(position) == hash; ++position) {
int ref_start = index.get_strobe1_position(position);
int ref_end = ref_start + index.strobe2_offset(position) + index.k();
Expand Down Expand Up @@ -160,7 +160,7 @@ std::pair<float, std::vector<Nam>> find_nams(
continue;
}
nr_good_hits++;
add_to_hits_per_ref(hits_per_ref, q.start, q.end, q.is_reverse, index, position, 100'000);
add_to_hits_per_ref(hits_per_ref, q.start, q.end, q.is_reverse, index, position);
}
}
float nonrepetitive_fraction = total_hits > 0 ? ((float) nr_good_hits) / ((float) total_hits) : 1.0;
Expand All @@ -171,6 +171,7 @@ std::pair<float, std::vector<Nam>> find_nams(
/*
* Find a query’s NAMs, using also some of the randstrobes that occur more often
* than filter_cutoff.
*
*/
std::vector<Nam> find_nams_rescue(
const QueryRandstrobeVector &query_randstrobes,
Expand Down Expand Up @@ -218,7 +219,7 @@ std::vector<Nam> find_nams_rescue(
if ((rh.count > rescue_cutoff && cnt >= 5) || rh.count > 1000) {
break;
}
add_to_hits_per_ref(hits_per_ref, rh.query_start, rh.query_end, rh.is_rc, index, rh.position, 1000);
add_to_hits_per_ref(hits_per_ref, rh.query_start, rh.query_end, rh.is_rc, index, rh.position);
cnt++;
}
}
Expand Down

0 comments on commit c4bc2d4

Please sign in to comment.