Skip to content

Commit

Permalink
single chain alignment bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Woosub-Kim committed Sep 30, 2024
1 parent 19c8820 commit c27a629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strucclustutils/scoremultimer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class DBSCANCluster {
eps += learningRate;
}

if (minimumClusterSize < MULTIPLE_CHAINED_COMPLEX && currMaxClusterSize < MULTIPLE_CHAINED_COMPLEX)
if (minimumClusterSize < MULTIPLE_CHAINED_COMPLEX && prevMaxClusterSize < MULTIPLE_CHAINED_COMPLEX)
getSingleChainedCluster();

return finishDBSCAN();
Expand Down

0 comments on commit c27a629

Please sign in to comment.