The following program shows that the TPSA of the molecule with SMILES
"CCCN" changes when you calculate the value of the
autoCorrelationPolarizability descriptor. I note that there is no
problem if you add explicit hydrogens. However, TPSA should be
independent of explicit hydrogens (according to the JavaDoc for
CDK1.0.2). Is there any explanation for this?

from cinfony.cdk import *
mol = readstring("smi", "CCCN")
tpsa = mol.calcdesc(['tpsa'])['tpsa']
print tpsa
# 26.02
pol = mol.calcdesc(['autoCorrelationPolarizability'])
tpsa = mol.calcdesc(['tpsa'])['tpsa']
print tpsa
# 0.00

Regards,
    Noel

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Cdk-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cdk-user

Reply via email to