Skip to content

Commit 3eb31e3

Browse files
committed
Don't output Data sgroups by default.
org.openscience.cdk.smiles.CxSmilesGeneratorTest#chembl367774 "OC(=O)C1=CC(F)=CC=2NC(=NC12)C3=CC=C(C=C3F)C4=CC=CC=C4 |SgD:9:MRV_IMPLICIT_H:IMPL_H1::,SgD:11:MRV_IMPLICIT_H:IMPL_H1::|"
1 parent 01cd09a commit 3eb31e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage/smiles/src/main/java/org/openscience/cdk/smiles/SmiFlavor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,12 @@ private SmiFlavor() {
177177
/**
178178
* Output data Sgroups.
179179
*/
180-
public static final int CxDataSgroups = 0x200000;
180+
public static final int CxDataSgroups = 0x400000;
181181

182182
/**
183183
* Output CXSMILES layers.
184184
*/
185-
public static final int CxSmiles = CxAtomLabel | CxAtomValue | CxRadical | CxFragmentGroup | CxMulticenter | CxPolymer | CxLigandOrder | CxDataSgroups;
185+
public static final int CxSmiles = CxAtomLabel | CxAtomValue | CxRadical | CxFragmentGroup | CxMulticenter | CxPolymer | CxLigandOrder;
186186

187187
/**
188188
* Output CXSMILES layers and coordinates.

0 commit comments

Comments
 (0)