Add getting started docs#163
Conversation
IAlibay
left a comment
There was a problem hiding this comment.
Thanks, this looks good!
Two small things but I'm approving early.
| from lomap import LomapAtomMapper | ||
|
|
||
| mapper = LomapAtomMapper() | ||
| mappings = list(mapper.suggest_mappings(ligands[0], ligands[1])) |
There was a problem hiding this comment.
[nit] can you maybe just add an inline comment above with something along the lines of suggest_mappings is a generator so we call list to get all the possible mappings.
| from lomap import default_lomap_score | ||
|
|
||
| score = default_lomap_score(mapping) | ||
| print(f"{score:.3f}") |
There was a problem hiding this comment.
[nit] the score for this mapping is really low so it might be surprising to someone following these instructions.
Could you maybe add a comment just below about how the score is ~ 0.095, which is expected for these two ligands (it's not immediately clear to me why - might be trying to do some ring breaking or a methyl to ring transformation?).
There was a problem hiding this comment.
Yes, this is a ring breaking transformation. Will add this.
|
Thanks so much @hannahbaumann ! |
Fixes #51