📄 displacementchargefromdonorreaction.java
字号:
/* * $RCSfile$ * $Author: egonw $ * $Date: 2006-03-29 10:27:08 +0200 (Wed, 29 Mar 2006) $ * $Revision: 5855 $ * * Copyright (C) 2006-2007 Miguel Rojas <miguel.rojas@uni-koeln.de> * * Contact: cdk-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */package org.openscience.cdk.reaction.type;import java.util.List;import org.openscience.cdk.CDKConstants;import org.openscience.cdk.DefaultChemObjectBuilder;import org.openscience.cdk.LonePair;import org.openscience.cdk.exception.CDKException;import org.openscience.cdk.interfaces.IAtom;import org.openscience.cdk.interfaces.IAtomContainer;import org.openscience.cdk.interfaces.IBond;import org.openscience.cdk.interfaces.ILonePair;import org.openscience.cdk.interfaces.IMapping;import org.openscience.cdk.interfaces.IMolecule;import org.openscience.cdk.interfaces.IMoleculeSet;import org.openscience.cdk.interfaces.IReaction;import org.openscience.cdk.interfaces.IReactionSet;import org.openscience.cdk.reaction.IReactionProcess;import org.openscience.cdk.reaction.ReactionSpecification;import org.openscience.cdk.tools.LoggingTool;import org.openscience.cdk.tools.manipulator.AtomContainerManipulator;/** * <p>IReactionProcess which participate in movement resonance. * This reaction could be represented as </p> * <pre>X-A=B => [X+]=A-|[B-]. X represents a donor atomType which contains * lone pair electrons</pre> * * <pre> * IMoleculeSet setOfReactants = DefaultChemObjectBuilder.getInstance().newMoleculeSet(); * setOfReactants.addMolecule(new Molecule()); * IReactionProcess type = new DisplacementChargeFromDonorReaction(); * Object[] params = {Boolean.FALSE}; type.setParameters(params); * IReactionSet setOfReactions = type.initiate(setOfReactants, null); * </pre> * * <p>We have the possibility to localize the reactive center. Good method if you * want to localize the reaction in a fixed point</p> * <pre>atoms[0].setFlag(CDKConstants.REACTIVE_CENTER,true);</pre> * <p>Moreover you must put the parameter Boolean.TRUE</p> * <p>If the reactive center is not localized then the reaction process will * try to find automatically the posible reactive center.</p> * * * @author Miguel Rojas * * @cdk.created 2006-05-05 * @cdk.module reaction * @cdk.set reaction-types * **/public class DisplacementChargeFromDonorReaction implements IReactionProcess{ private LoggingTool logger; private boolean hasActiveCenter; private static final int BONDTOFLAG1 = 8; private static final int BONDTOFLAG2 = 9; /** * Constructor of the DisplacementChargeFromDonorReaction object * */ public DisplacementChargeFromDonorReaction(){ logger = new LoggingTool(this); } /** * Gets the specification attribute of the DisplacementChargeFromDonorReaction object * *@return The specification value */ public ReactionSpecification getSpecification() { return new ReactionSpecification( "http://almost.cubic.uni-koeln.de/jrg/Members/mrc/reactionDict/reactionDict#DisplacementChargeFromDonorReaction", this.getClass().getName(), "$Id: DisplacementChargeFromDonorReaction.java,v 1.6 2006/04/01 08:26:47 mrc Exp $", "The Chemistry Development Kit"); } /** * Sets the parameters attribute of the DisplacementChargeFromDonorReaction object * *@param params The parameter is if the molecule has already fixed the center active or not. It * should be set before to inize the reaction with a setFlag: CDKConstants.REACTIVE_CENTER *@exception CDKException Description of the Exception */ public void setParameters(Object[] params) throws CDKException { if (params.length > 1) { throw new CDKException("DisplacementChargeFromDonorReaction only expects one parameter"); } if (!(params[0] instanceof Boolean)) { throw new CDKException("The parameter 1 must be of type boolean"); } hasActiveCenter = ((Boolean) params[0]).booleanValue(); } /** * Gets the parameters attribute of the DisplacementChargeFromDonorReaction object * *@return The parameters value */ public Object[] getParameters() { Object[] params = new Object[1]; params[0] = new Boolean (hasActiveCenter); return params; } /** * Initiate process. * It is needed to call the addExplicitHydrogensToSatisfyValency * from the class tools.HydrogenAdder. * *@param reactants reactants of the reaction. *@param agents agents of the reaction (Must be in this case null). * *@exception CDKException Description of the Exception */ public IReactionSet initiate(IMoleculeSet reactants, IMoleculeSet agents) throws CDKException{ logger.debug("initiate reaction: DisplacementChargeFromDonorReaction"); if (reactants.getMoleculeCount() != 1) { throw new CDKException("DisplacementChargeFromDonorReaction only expects one reactant"); } if (agents != null) { throw new CDKException("DisplacementChargeFromDonorReaction don't expects agents"); } IReactionSet setOfReactions = DefaultChemObjectBuilder.getInstance().newReactionSet(); IMolecule reactant = reactants.getMolecule(0); /* if the parameter hasActiveCenter is not fixed yet, set the active centers*/ if(!hasActiveCenter){ setActiveCenters(reactant); } IAtom atomi = null; IBond bondj = null; IBond bondk = null; for (int i = 0 ; i < reactant.getAtomCount() ; i++){ atomi = reactant.getAtom(i); if(atomi.getFlag(CDKConstants.REACTIVE_CENTER)&& reactant.getConnectedLonePairsCount(atomi) > 0){ IReaction reaction = DefaultChemObjectBuilder.getInstance().newReaction(); reaction.addReactant(reactant); java.util.List bonds = reactant.getConnectedBondsList(atomi); for(int j = 0 ; j < bonds.size() ; j++){ bondj = (IBond)bonds.get(j); if(bondj.getFlag(CDKConstants.REACTIVE_CENTER)&& bondj.getOrder() == 1.0){ IAtom atom = bondj.getConnectedAtom(reactant.getAtom(i)); java.util.List bondsI = reactant.getConnectedBondsList(atom); for(int k = 0 ; k < bondsI.size() ; k++){ bondk = (IBond)bondsI.get(k); if(bondk.getFlag(CDKConstants.REACTIVE_CENTER) && bondk.getOrder() == 2.0){ cleanFlagBOND(reactants.getMolecule(0)); /* positions atoms and bonds */ int atom0P = reactant.getAtomNumber(atomi); bondj.setFlag(BONDTOFLAG1, true); bondk.setFlag(BONDTOFLAG2, true); int atom1P = reactant.getAtomNumber(atom); int atom2P = reactant.getAtomNumber(bondk.getConnectedAtom(atom)); /* action */ IAtomContainer acCloned; try { acCloned = (IAtomContainer)reactant.clone(); } catch (CloneNotSupportedException e) { throw new CDKException("Could not clone IMolecule!", e); } int charge = acCloned.getAtom(atom0P).getFormalCharge(); acCloned.getAtom(atom0P).setFormalCharge(charge+1); List selectron = acCloned.getConnectedLonePairsList(acCloned.getAtom(atom0P)); acCloned.removeLonePair((ILonePair)selectron.get(selectron.size() -1)); IBond bondjClon = null, bondkClon = null; for(int l = 0 ; l<acCloned.getBondCount();l++){ if(acCloned.getBond(l).getFlag(BONDTOFLAG1)){ double order = acCloned.getBond(l).getOrder(); acCloned.getBond(l).setOrder(order + 1); bondjClon = acCloned.getBond(l); } else if(acCloned.getBond(l).getFlag(BONDTOFLAG2)){ double order = acCloned.getBond(l).getOrder(); acCloned.getBond(l).setOrder(order - 1); bondkClon = acCloned.getBond(l); } } charge = acCloned.getAtom(atom2P).getFormalCharge(); acCloned.getAtom(atom2P).setFormalCharge(charge-1); acCloned.addLonePair(new LonePair(acCloned.getAtom(atom2P))); /* mapping */ IMapping mapping = DefaultChemObjectBuilder.getInstance().newMapping(atomi, acCloned.getAtom(atom0P)); reaction.addMapping(mapping); mapping = DefaultChemObjectBuilder.getInstance().newMapping(atom, acCloned.getAtom(atom1P)); reaction.addMapping(mapping); mapping = DefaultChemObjectBuilder.getInstance().newMapping(bondk.getConnectedAtom(atom), acCloned.getAtom(atom2P)); reaction.addMapping(mapping); mapping = DefaultChemObjectBuilder.getInstance().newMapping(bondj, bondjClon); reaction.addMapping(mapping); mapping = DefaultChemObjectBuilder.getInstance().newMapping(bondk, bondkClon); reaction.addMapping(mapping); reaction.addProduct((IMolecule) acCloned); setOfReactions.addReaction(reaction); bondj.setFlag(BONDTOFLAG1, false); bondk.setFlag(BONDTOFLAG2, false); } } } } } } return setOfReactions; } /** * set the active center for this molecule. * The active center will be those which correspond with X-A=B. * <pre> * A: Atom with lone pair electrons * -: Single bond * B: Atom * =: Double bond * C: Atom * </pre> * * @param reactant The molecule to set the activity * @throws CDKException */ private void setActiveCenters(IMolecule reactant) throws CDKException { if(AtomContainerManipulator.getTotalNegativeFormalCharge(reactant) != 0 || AtomContainerManipulator.getTotalPositiveFormalCharge(reactant) != 0) return; IAtom atomi = null; IBond bondj = null; IBond bondk = null; out: for(int i = 0 ; i < reactant.getAtomCount() ; i++) { atomi = reactant.getAtom(i); if(reactant.getConnectedLonePairsCount(atomi) > 0 ){ // not possible is the atom-X has already double bond java.util.List bondsSe = reactant.getConnectedBondsList(atomi); for(int j = 0 ; j < bondsSe.size() ; j++) if(((IBond)bondsSe.get(j)).getOrder() == 2) continue out; java.util.List bonds = reactant.getConnectedBondsList(atomi); for(int j = 0 ; j < bonds.size() ; j++){ bondj = (IBond)bonds.get(j); if(bondj.getOrder() == 1.0){ IAtom atom = bondj.getConnectedAtom(reactant.getAtom(i)); java.util.List bondsI = reactant.getConnectedBondsList(atom); for(int k = 0 ; k < bondsI.size() ; k++){ bondk = (IBond)bondsI.get(k); if(bondk.getOrder() == 2.0){ atomi.setFlag(CDKConstants.REACTIVE_CENTER,true); atom.setFlag(CDKConstants.REACTIVE_CENTER,true); bondk.getConnectedAtom(atom).setFlag(CDKConstants.REACTIVE_CENTER,true); bondj.setFlag(CDKConstants.REACTIVE_CENTER,true); bondk.setFlag(CDKConstants.REACTIVE_CENTER,true); } } } } } } } /** * Gets the parameterNames attribute of the DisplacementChargeFromDonorReaction object * *@return The parameterNames value */ public String[] getParameterNames() { String[] params = new String[1]; params[0] = "hasActiveCenter"; return params; } /** * Gets the parameterType attribute of the DisplacementChargeFromDonorReaction object * *@param name Description of the Parameter *@return The parameterType value */ public Object getParameterType(String name) { return new Boolean(false); } /** * clean the flags CDKConstants.REACTIVE_CENTER from the molecule * * @param mol */ public void cleanFlagBOND(IAtomContainer ac){ for(int j = 0 ; j < ac.getBondCount(); j++){ ac.getBond(j).setFlag(BONDTOFLAG1, false); ac.getBond(j).setFlag(BONDTOFLAG2, false); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -