Open jchodera opened 6 years ago
I think on some much older systems, some SQL databases, and some punch cards, it might be an issue, but I don't see a reason it would be any more.
To be clearer, the warning may be issued when we write out the molecule as a mol2
file rather than in openeye.get_charges()
.
What happens in get_charges()
is that we call openeye.normalize_molecule()
, which assign its IUPAC name as the title of the molecule. For complex compounds, the IUPAC name exceeds the 80 characters limit.
When YANK calls
openeye.get_charges()
, aWarning: title line exceeds 80 characters
is frequently emitted. In some of our experiments, we get over 3000 of these warnings. It would be nice to silently eat this warning, since it has little consequence.