What is the best approach to clear stereochemistry from a molecule.
I think I was told to use:
for (IBond bond : mol.bonds()) {
bond.setStereo(IBond.Stereo.NONE);
bond.setDisplay(IBond.Display.Solid);
}
But if I use this for a molecule generated from SMILES it still is depicted
with a wedge bond.
IAtomContainer mol = smilesParser.parseSmiles("C[C@@H](C(=O)O)N");
for (IBond bond : mol.bonds()) {
bond.setStereo(IBond.Stereo.NONE);
bond.setDisplay(IBond.Display.Solid);
}
DepictionGenerator dg = new DepictionGenerator().withSize(512, 512)
.withAtomColors();
dg.depict(mol).writeTo("mol.png");
_______________________________________________
Cdk-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cdk-user