You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixes#64
* add support to the molecule substruct filter too
* update substruct counter
* update tests
* finish updating tests
* Support additional options in Adjust Query Properties node
* Bugfixes, documentation and test updates
Added cleanup for RDKit objects to free memory.
Added backward-compatibility for new parameters with call of
registerSettings(xxx, true) to avoid ugly error when loading workflows
with older node versions.
Completed JavaDocs for new functionality and fixed some old one.
Minor performance improvements.
Cleanup some formatting.
Simplified some test workflows, saved them with KNIME 4.2.3.
Corrected TestFlowConfiguration nodes with old configurations.
Co-authored-by: Manuel Schwarze <manuel.schwarze@novartis.com>
Copy file name to clipboardExpand all lines: org.rdkit.knime.nodes/src/org/rdkit/knime/nodes/adjustqueryproperties/RDKitAdjustQueryPropertiesNodeDialog.java
Copy file name to clipboardExpand all lines: org.rdkit.knime.nodes/src/org/rdkit/knime/nodes/adjustqueryproperties/RDKitAdjustQueryPropertiesNodeFactory.xml
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,23 @@
25
25
<optionname="Adjust ring count">Enable so that modified atoms have a ring-count query added
26
26
based on their ring count in the query.</option>
27
27
<optionname="Adjust ring count flag">Control which atoms have a ring-count query added.</option>
28
+
<optionname="Make atoms generic">Convert atoms to any-atom queries.</option>
29
+
<optionname="Make atoms generic flag">Control which atoms are converted to any-atom queries.</option>
30
+
<optionname="Make bonds generic">Convert bonds to any-bond queries.</option>
31
+
<optionname="Make bonds generic flag">Control which bonds are converted to any-bond queries.</option>
28
32
<optionname="Make dummies queries">Enable so that dummy atoms that do not have a specified isotope
29
33
are converted to any-atom queries.</option>
34
+
<optionname="Aromatize if possible">Perceive and set aromaticity.</option>
35
+
<optionname="Adjust conjugated 5 rings">Sets bond queries in conjugated five-rings to
36
+
SINGLE|DOUBLE|AROMATIC.</option>
37
+
<optionname="Set MDL 5 ring aromaticity">Uses the 5-ring aromaticity behavior of the (former) MDL
38
+
software as documented in the Chemical Representation Guide.</option>
39
+
<optionname="Adjust single bonds to degree 1 neighbors">Sets single bonds between aromatic atoms and degree one
40
+
neighbors to SINGLE|AROMATIC.</option>
41
+
<optionname="Adjust single bonds between aromatic atoms">Sets non-ring single bonds between two aromatic atoms to
42
+
SINGLE|AROMATIC.</option>
43
+
<optionname="Use stereo care for bonds">Remove stereochemistry info from double bonds that do not have
Copy file name to clipboardExpand all lines: org.rdkit.knime.nodes/src/org/rdkit/knime/nodes/adjustqueryproperties/RDKitAdjustQueryPropertiesNodeModel.java
+53Lines changed: 53 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,30 @@ public class RDKitAdjustQueryPropertiesNodeModel extends AbstractRDKitCalculator
Copy file name to clipboardExpand all lines: org.rdkit.knime.nodes/src/org/rdkit/knime/nodes/moleculesubstructfilter/RDKitMoleculeSubstructFilterNodeDialog.java
0 commit comments