User 7b0ee04e66
22-01-2007 11:26:20
Hi,
I trying to use Standardizer with the "Clean Stereo" option and it works fine for Standard Smiles, but it does not remove the additional features when I use extended smiles, i.e.
Ouput is
mol = NC(O)CCCCCC1CCC(O)C1O |a:1|
mol = [#7]C(O)CCCCCC1CCC(O)C1O |a:1|
Is this expected or is this a problem?
Can I use another way to get a Smiles without stereochemistry ? I have used the Smiles (non-stereo) in Marvin, is there an equivalent with the API?
Can I also suggest a "Clear Isotopes" option for Standardizer ?
Thanks in advance for your help
Catherine
I trying to use Standardizer with the "Clean Stereo" option and it works fine for Standard Smiles, but it does not remove the additional features when I use extended smiles, i.e.
Code: |
MolImporter importer = new MolImporter(); Molecule mol = importer.importMol("N[C@H](O)CCCCCC1CC[C@H](O)[C@@H]1O |a:1|"); Standardizer standardizer = new Standardizer("clearstereo"); standardizer.standardize(mol); System.out.println("mol = " + mol.toFormat("cxsmiles")); System.out.println("mol = " + mol.toFormat("cxsmarts")); |
Ouput is
mol = NC(O)CCCCCC1CCC(O)C1O |a:1|
mol = [#7]C(O)CCCCCC1CCC(O)C1O |a:1|
Is this expected or is this a problem?
Can I use another way to get a Smiles without stereochemistry ? I have used the Smiles (non-stereo) in Marvin, is there an equivalent with the API?
Can I also suggest a "Clear Isotopes" option for Standardizer ?
Thanks in advance for your help
Catherine