Skip to content

Commit

Permalink
scale also when filtering over the query sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGuarracino committed Nov 2, 2023
1 parent a25f2cb commit b73e337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/include/filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace skch

Helper(MappingResultsVector_t &v) : vec(v) {}

double get_score(const int x) const {return vec[x].nucIdentity; }
double get_score(const int x) const {return vec[x].nucIdentity * log(vec[x].blockLength) ; }

//Greater than comparison by score and begin position
//used to define order in BST
Expand Down

0 comments on commit b73e337

Please sign in to comment.