You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @ptosco. Any chance of access to the atoms and their properties? Specifically, I am developing an application that does a SMARTS match and then looks at the matching atoms. This works so far, in that I have the atom indices, but I need to be able to access the corresponding atoms, and then the ability to access degree, valence, charge, implicit H count, and whether in a ring. Actually, to be exact, I am implementing the same application across several JS cheminf toolkits, so would like to include RDKit of course!
The text was updated successfully, but these errors were encountered:
@baoilleach Hi Noel, currently getters/setters for atom and bond properties are not exposed. I agree they would be useful and it would be good to expose them to JS, together with other bits that several others have asked for (e.g., MCS, R group decomposition). However, as discussed with @greglandrum, before exposing all of that we need to do some work on the CMake build system in order to allow opting in/out different sets of features, otherwise we keep bloating a library which was meant to be lightweight, as the MinimalLib name suggests, with functionality that not everyone would need. Unfortunately at this time I do not have time to work on that, but it is definitely on my radar.
@baoilleach with the mol.get_json() method you have access to an object containing a molecules property with a vector of atoms containing the following (optional) properties:
Hi @ptosco. Any chance of access to the atoms and their properties? Specifically, I am developing an application that does a SMARTS match and then looks at the matching atoms. This works so far, in that I have the atom indices, but I need to be able to access the corresponding atoms, and then the ability to access degree, valence, charge, implicit H count, and whether in a ring. Actually, to be exact, I am implementing the same application across several JS cheminf toolkits, so would like to include RDKit of course!
The text was updated successfully, but these errors were encountered: