Skip to content

Commit be017a8

Browse files
Apply suggestion from @AnnaKravchenko
Co-authored-by: Arha <kravchenko.anna.d@gmail.com>
1 parent 730d0eb commit be017a8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/haddock/modules/analysis/seletopclusts/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ def _run(self) -> None:
6363
reverse = not self.params["sort_ascending"]
6464
if reverse and self.params["sortby"] != "size":
6565
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")
6668
else:
69+
self.log("Selecting clusters with the largest size first")
6770
self.log("Selecting clusters with the lowest score first")
6871
# Retrieve list of previous models
6972
models_to_select = self.previous_io.retrieve_models()

0 commit comments

Comments
 (0)