react.cgi
is a
web interface which applies reaction transforms (SMIRKS)
to molecules (SMILES). It is useful for learning how
transforms work and testing new SMIRKS. Start
react.cgi
and
press the help button. Several examples are shown.
Another source of examples is
SMIRKS FAQ and Examples.
$DY_ROOT/contrib/src/c/reaction/react.c
:
Build react and run it. Experiment with some generic reactions and molecules. (You can find some example SMIRKS in $DY_ROOT/contrib/src/c/transform/txf/).
Try the following example:
SMIRKS: [c:1][N:2](=[O:6])=[O:4]>>[c:1][N+:2](=[O:6])[O-:4] SMILES: O=N(=O)c1ccc(N(=O)=O)cc1Note that the transform is only applied once (by default) per reaction.
react.c
by trying the
options: -r
(reverse),
-u
(dt_utransform),
-x
(dt_xtransform), and
-mix
(mix products).
To vary the 'limit' parameter you will have to modify
react.c
and rebuild. Vary the
limit parameter and observe the effect on the output.
react.c
so that it applies
the same transform repeatedly until no further matches
are found. That is, take the product from the first
application, and feed it back into the transform.
After the transform has been applied exhaustively,
print out the products. Is this behavior the same as with
dt_xtransform()
applied once?
Mixture enumeration
react.c
, lets start to build
a combinatorial library enumerator. We want to create a simpler version
of the enumerate.c
program. Our program will handle
two-component mixtures. We'll try the enumeration two different ways:
dt_transform()
with the 'limit'
parameter set to FALSE, the toolkit will do the full enumeration of
the library for you. This will probably be slow but yields the
simplest code. Build and test.