You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2024. It is now read-only.
@@ -434,11 +436,11 @@ public List<StructureInterfaceCluster> getClusters(double contactOverlapScoreClu
434
436
interf.setCluster(cluster);
435
437
}
436
438
}
439
+
logger.debug("Done clustering {} interfaces based on full all-vs-all Jaccard scores matrix. Found a total of {} clusters", list.size(), clusters.size());
437
440
438
441
// now we sort by areas (descending) and assign ids based on that sorting
439
-
clusters.sort((o1, o2) -> {
440
-
returnDouble.compare(o2.getTotalArea(), o1.getTotalArea()); //note we invert so that sorting is descending
441
-
});
442
+
clusters.sort((o1, o2) -> Double.compare(o2.getTotalArea(), o1.getTotalArea())); //note we invert so that sorting is descending
0 commit comments