I am trying to calculate all the descriptors (both 2D/3D) for a list of molecules with RDkit in python. When I run:
MolecularDescriptorCalculator.CalcDescriptors(mol, simplelist)
it returns:
AttributeError: 'Mol' object has no attribute 'simpleList'
Looks like you are using the API slightly wrong, you need to initialize the
MolecularDescriptorCalculator
class first with the list of descriptors you require.