-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Atom properties #79
Comments
Hi @yuanjames! Thanks for the issue. There is a new complete rewrite of |
This is so awesome! I just learnt about this library now and I got very excited about the API design and integrations with the scikit ecosystem. I know you deliberately didn't provide an ETA, but I was wondering if you'd be willing to share your efforts more openly in a PR or something? I am currently involved in developing some libraries with similar (complementary) scope and could provide some help if needed! Otherwise I might be implementing some stuff on those libraries when it could be synergized in yours... Let me know if you are open to consider such a collaboration! |
Hi,
I am trying to get atoms' property (e.g bonds, atomic_mass), but the error shows 'Atom' object has no attribute 'bonds'
import skchem
import rdkit.Chem
mol = skchem.Mol.from_smiles('CC(=O)Cl')
print(mol.atoms[0].bonds)
The text was updated successfully, but these errors were encountered: