Skip to content

Commit

Permalink
plane sweep using log block length times identity as score
Browse files Browse the repository at this point in the history
  • Loading branch information
ekg committed Oct 3, 2023
1 parent 67ab187 commit a25f2cb
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 @@ -254,7 +254,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 a25f2cb

Please sign in to comment.