We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 730d0eb commit be017a8Copy full SHA for be017a8
1 file changed
src/haddock/modules/analysis/seletopclusts/__init__.py
@@ -63,7 +63,10 @@ def _run(self) -> None:
63
reverse = not self.params["sort_ascending"]
64
if reverse and self.params["sortby"] != "size":
65
self.log("Selecting clusters with the highest score first")
66
+ elif not reverse and self.params["sortby"] != "size":
67
+ self.log("Selecting clusters with the lowest score first")
68
else:
69
+ self.log("Selecting clusters with the largest size first")
70
self.log("Selecting clusters with the lowest score first")
71
# Retrieve list of previous models
72
models_to_select = self.previous_io.retrieve_models()
0 commit comments