gadsbyfly / PyBioMed

machine learning, molecular descriptor
http://pybiomed.readthedocs.io/en/latest/index.html
BSD 3-Clause "New" or "Revised" License
109 stars 61 forks source link

Error while calculating Basak information #10

Open omkarfirame opened 4 years ago

omkarfirame commented 4 years ago

TypeError: '<' not supported between instances of 'list' and 'int'

getting Type error while calculating Basak information

joseias commented 4 years ago

Seems to be due line 151 in /PyBioMed/PyMolecule/basak.py

current: temp.append(at.GetAtomicNum()) solution tested: temp.append( [ at.GetAtomicNum() ] )

danielmuthama commented 4 years ago

I encountered the same problem, It could be better if the issue was resolve. Anyone who may have some clue?