User f05f6b8c05
20-07-2012 02:38:49
Hi,
Is there a way to highlight chiral/asymm atoms in marvinview or marvinsketch? If a user has drawn a structure with all flat bonds at chiral centers is can be hard to quickly find all chiral atoms.
Thanks for any information.
Best,
Andrew
ChemAxon f052bdfe3c
22-07-2012 21:52:02
Hi Andrew,
Marvin does not have this feature currently, however we are aware that it would be useful. (You have to draw single up and/or single down wedge bonds and set menu: "View">"Stereo">"R/S labels">"all" to see the chirality center. See documentation also: http://www.chemaxon.com/marvin/help/sci/stereo-doc.html).
Best regards,
Efi
User f05f6b8c05
26-07-2012 23:02:00
Thank you very much for the reply.
User 870ab5b546
26-07-2012 23:40:30
You can use JChem to find out which atoms in a molecule are stereogenic with unspecified configuration.
Molecule mol = MolImporter.importMol(substrate);
int numAtoms = mol.getAtomCount();
for (int atomNum = 0; atomNum < numAtoms; atomNum++) {
int parity = mol.getParity(atomNum);
int localParity = mol.getLocalParity(atomNum);
if (parity == StereoConstants.PARITY_EITHER && localParity == 0) {
System.out.println("Atom " + (atomNum + 1) + " is stereogenic with unspecified configuration.");
}
}
See this page.
ChemAxon 5433b8e56b
01-08-2012 10:05:07
Hi,
Bob, I would like to thank you for your kind cooperation, and useful comment on this.
Andrew, if you have any further questions please do not hesitate to ask, I hope one of the suggested solutions will work fine for you.
Regards,
Istvan
ChemAxon d26931946c
06-11-2014 15:36:19
Hi Bob and Andrew,
from Marvin 14.11.10 we will highlight atoms with possible but undefined chirality with a (?) label.
BRs,
Peter
User 870ab5b546
06-11-2014 15:42:31
Can I suggest making this optional, not mandatory? I assume it will be in View R/S labels; you can add a checkbox to include unspecified stereocenters.
ChemAxon d26931946c
10-11-2014 09:55:05
It will be turned on/off together with the R/S labels in 14.11.10, but we might add this as an option in one of our later release.