Re: [Rdkit-discuss] Example of the new Coulomb Matrix Feature in RDKit

2020-09-22 Thread Henrique Castro
: [Rdkit-discuss] Example of the new Coulomb Matrix Feature in RDKit Dear Henrique, You can try something like this: import rdkit from rdkit import Chem from rdkit.Chem import AllChem from rdkit.Chem.rdMolDescriptors import CalcCoulombMat smiles = 'CN1C=NC2=C1C(=O)N(C(=O)N2C)C'

Re: [Rdkit-discuss] Example of the new Coulomb Matrix Feature in RDKit

2020-09-20 Thread Max Pinheiro Jr
Dear Henrique, You can try something like this: import rdkit from rdkit import Chem from rdkit.Chem import AllChem from rdkit.Chem.rdMolDescriptors import CalcCoulombMat smiles = 'CN1C=NC2=C1C(=O)N(C(=O)N2C)C' caffeine = Chem.MolFromSmiles(smiles, sanitize=True) caffeine = Chem.AddHs(caffeine)

[Rdkit-discuss] Example of the new Coulomb Matrix Feature in RDKit

2020-09-20 Thread Henrique Castro
Dear colleagues, how are you? I have almost zero experience with RDKit, so forgive me for such a basic request. Could anyone provide me an example of the new Coulomb Matrix generator in RDKit? I intend to iterate through my organometallic molecules stored in a pandas DataFrame. Thank you in adv