Skip to content

Commit

Permalink
Enamine was searching for the wrong molecule (with low score, #68)
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniekmateusz committed May 26, 2024
1 parent 2a369cf commit 43ab8bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fegrow/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ def add_enamine_molecules(self, n_best=1, results_per_search=100, remove_scaffol
scaffold = self._scaffolds[0]

# get the best performing molecules
vl = self.df.sort_values(by="score")
vl = self.df.sort_values(by="score", ascending=False)
best_vl_for_searching = vl[:n_best]

# nothing to search for yet
Expand Down

0 comments on commit 43ab8bb

Please sign in to comment.