Hello,
I noticed this in the SmilesGenerator source code after finding that despite using the AtomContainerManipulator to remove hydrogen atoms from molecules, I still got explicit hydrogens in SMILES Strings:
if (symbol.equals("*") && a.getImplicitHydrogenCount() != null && a.getImplicitHydrogenCount() > 0)
buffer.append("H").append(a.getImplicitHydrogenCount());
Is it intentional that the getImplicitHydrogenCount() method is used? I'm guessing this' a remnant of something that's otherwise been changed in a later version.
Ed.
Hi Ed,
That generator doesn’t existing any more :-) - 1.5.4 was released yesterday https://github.com/cdk/cdk/wiki/1.5.4-Release-Notes
J
On 20 Dec 2013, at 15:43, Duece99 duece99@users.sf.net wrote:
Related
Bugs:
#1319Ah, my bad - thanks for the update :)
On 20 December 2013 16:34, John May jwmay@users.sf.net wrote:
Related
Bugs:
#1319Fixed in 1.5.x
Can't wait to see the next CDK release for KNIME :-)
On Jan 5, 2014 3:45 PM, "John May" jwmay@users.sf.net wrote: