public class RadicalSiteRrGammaReaction extends ReactionEngine implements IReactionProcess
This reaction could be represented as [A*]-(C)_5-C6[R] => A([R])-(C_5)-[C6*]. Due to the single electron of atom A the R is moved.
It is processed by the RadicalSiteRearrangementMechanism class
IAtomContainerSet setOfReactants = DefaultChemObjectBuilder.getInstance().newAtomContainerSet();
setOfReactants.addAtomContainer(new AtomContainer());
IReactionProcess type = new RadicalSiteRrGammaReaction();
Object[] params = {Boolean.FALSE};
type.setParameters(params);
IReactionSet setOfReactions = type.initiate(setOfReactants, null);
We have the possibility to localize the reactive center. Good method if you want to localize the reaction in a fixed point
atoms[0].setFlag(CDKConstants.REACTIVE_CENTER,true);
Moreover you must put the parameter Boolean.TRUE
If the reactive center is not localized then the reaction process will try to find automatically the possible reactive center.
RadicalSiteRearrangementMechanismmechanism, paramsMap, paramsMap2| Constructor and Description |
|---|
RadicalSiteRrGammaReaction()
Constructor of the RadicalSiteRrGammaReaction object
|
| Modifier and Type | Method and Description |
|---|---|
ReactionSpecification |
getSpecification()
Gets the specification attribute of the RadicalSiteRrGammaReaction object
|
IReactionSet |
initiate(IAtomContainerSet reactants,
IAtomContainerSet agents)
Initiate process.
|
getParameterClass, getParameterList, setParameterListclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetParameterClass, getParameterList, setParameterListpublic RadicalSiteRrGammaReaction()
public ReactionSpecification getSpecification()
getSpecification in interface IReactionProcesspublic IReactionSet initiate(IAtomContainerSet reactants, IAtomContainerSet agents) throws CDKException
initiate in interface IReactionProcessreactants - reactants of the reaction.agents - agents of the reaction (Must be in this case null).CDKException - Description of the ExceptionCopyright © 2017. All Rights Reserved.