From 46287744fd2835e4ddf80d5afdeff63dbfc5befd Mon Sep 17 00:00:00 2001 From: Jack Day Date: Wed, 11 Dec 2024 07:38:28 +1000 Subject: [PATCH] Show wiggly bond at undefined stereo centre --- rdeditor/molViewWidget.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rdeditor/molViewWidget.py b/rdeditor/molViewWidget.py index 8cd606f..2cb66ae 100644 --- a/rdeditor/molViewWidget.py +++ b/rdeditor/molViewWidget.py @@ -316,6 +316,7 @@ def getMolSvg(self): opts.setBackgroundColour(self.unsanitizable_background_colour) opts.prepareMolsBeforeDrawing = False opts.addStereoAnnotation = True # Show R/S and E/Z + opts.unspecifiedStereoIsUnknown = True # Show wiggly bond at undefined stereo centre # for tag in chiraltags: # idx = tag[0] # opts.atomLabels[idx] = self._drawmol.GetAtomWithIdx(idx).GetSymbol() + ":" + tag[1]