Skip to content

Commit

Permalink
Ensure low scoring ORFs are correctly removed
Browse files Browse the repository at this point in the history
  • Loading branch information
samhorsfield96 committed Oct 11, 2024
1 parent dbe9595 commit 36a4eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ std::pair<std::map<size_t, std::string>, std::map<size_t, std::string>> Graph::f
// remove all ORFs
for (const auto& homolog_ID : centroid_found->second)
{
to_remove[colour.first].insert(homolog_ID.second);
to_remove[homolog_ID.first].insert(homolog_ID.second);
}

// remove from cluster map
Expand Down

0 comments on commit 36a4eed

Please sign in to comment.