OESetScore
OESetScore(arg1: Union[OEGraphMol,OEMol,OEQMol], scoreFxn: OEDock,
tag: str) -> bool
Assigns the score of pose, using the OEDock.ScoreLigand
method of dock, to float generic data of pose with the given tag.
OESetScore(arg1: Union[OEGraphMol,OEMol,OEQMol], scoreFxn: OEScore,
tag: str) -> bool
Assigns the score of pose, using the OEScore.ScoreLigand
method of score, to float generic data of pose with the given tag.
OESetScore(ligand: OEMol, scoreFxn: OEDock, tag: str,
sortPoses: bool = False) -> bool
Assigns the score of each pose of poses, using the
OEDock.ScoreLigand method of dock,
to float generic data of the pose with the given tag.
If sortPoses is true the poses will also be sorted by score.
OESetScore(ligand: OEMol, scoreFxn: OEScore, tag: str,
sortPoses: bool = False) -> bool
Assigns the score of each pose of poses, using the
OEScore.ScoreLigand method of score,
to float generic data of the pose with the given tag.
If sortPoses is true the poses will also be sorted by score.