Skip to content

Reference ABCMolecule ABCMolecule.to_rdkit_mol

ABCMolecule.to_rdkit_mol

to_rdkit_mol()

Converts ABCMolecule object to rdkit.Chem.rdchem.Mol object. Read rdkit documentation for more informtion.

Returns:

  • Mol

    rdkit.Chem.rdchem.Mol object with same coordinates and positions as ABCMolecule instance.

Notes

Suggested methods to call after this one. - To get bond connectivity information. - rdDetermineBonds.DetermineConnectivity(Mol) - (from rdkit.Chem import rdDetermineBonds) - There are other methods of rdDetermineBonds submodule that may be of interest also. - To draw a 2d image of ABCMolecule instance. - Mol.Compute2DCoords() & Draw.MolToImage(Mol).show() - (from rdkit.Chem import Draw)