⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bpoldescriptor.java

📁 化学图形处理软件
💻 JAVA
字号:
/* *  $RCSfile$ *  $Author: rajarshi $ *  $Date: 2007-02-01 20:46:29 +0100 (Thu, 01 Feb 2007) $ *  $Revision: 7844 $ * *  Copyright (C) 2004-2007  The Chemistry Development Kit (CDK) project * *  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.qsar.descriptors.molecular;import org.openscience.cdk.config.IsotopeFactory;import org.openscience.cdk.exception.CDKException;import org.openscience.cdk.interfaces.IAtomContainer;import org.openscience.cdk.interfaces.IBond;import org.openscience.cdk.interfaces.IElement;import org.openscience.cdk.qsar.DescriptorSpecification;import org.openscience.cdk.qsar.DescriptorValue;import org.openscience.cdk.qsar.IMolecularDescriptor;import org.openscience.cdk.qsar.result.DoubleResult;import org.openscience.cdk.qsar.result.IDescriptorResult;import org.openscience.cdk.tools.LoggingTool;import java.util.Iterator;/** * Sum of the absolute value of the difference between atomic polarizabilities  *  of all bonded atoms in the molecule (including implicit hydrogens) with polarizabilities taken from * http://www.sunysccc.edu/academic/mst/ptable/p-table2.htm . * This class need explicit hydrogens. *  * <p>This descriptor uses these parameters: * <table border="1"> *   <tr> *     <td>Name</td> *     <td>Default</td> *     <td>Description</td> *   </tr> *   <tr> *     <td></td> *     <td></td> *     <td>no parameters</td> *   </tr> * </table> * * Returns a single value with name <i>bpol</i>. * * @author      mfe4 * @cdk.created 2004-11-13 * @cdk.module  qsar * @cdk.set     qsar-descriptors * @cdk.dictref qsar-descriptors:bpol */public class BPolDescriptor implements IMolecularDescriptor {    private LoggingTool logger;    private IsotopeFactory ifac = null;    /* Atomic polarizabilities ordered by atomic number from 1 to 102. */    private static double[] polarizabilities;    /**     *  Constructor for the APolDescriptor object     */    public BPolDescriptor() {        logger = new LoggingTool(this);    // atomic polarizabilities ordered by atomic number from 1 to 102    if (polarizabilities == null) {            polarizabilities = new double[] {0, 0.666793, 0.204956, 24.3, 5.6, 3.03, 1.76,                1.1, 0.802, 0.557, 0.3956, 23.6, 10.6, 6.8, 5.38, 3.63, 2.9, 2.18, 1.6411,                43.4, 22.8, 17.8, 14.6, 12.4, 11.6, 9.4, 8.4, 7.5, 6.8, 6.1, 7.1, 8.12, 6.07,                4.31, 3.77, 3.05, 2.4844, 47.3, 27.6, 22.7, 17.9, 15.7, 12.8, 11.4, 9.6, 8.6,                4.8, 7.2, 7.2, 10.2, 7.7, 6.6, 5.5, 5.35, 4.044, 59.6, 39.7, 31.1, 29.6, 28.2,                31.4, 30.1, 28.8, 27.7, 23.5, 25.5, 24.5, 23.6, 22.7, 21.8, 21, 21.9, 16.2,                13.1, 11.1, 9.7, 8.5, 7.6, 6.5, 5.8, 5.7, 7.6, 6.8, 7.4, 6.8, 6, 5.3, 48.7,                38.3, 32.1, 32.1, 25.4, 27.4, 24.8, 24.5, 23.3, 23, 22.7, 20.5,19.7,23.8,18.2,17.5};        }    }    public DescriptorSpecification getSpecification() {        return new DescriptorSpecification(            "http://www.blueobelisk.org/ontologies/chemoinformatics-algorithms/#bpol",            this.getClass().getName(),            "$Id: BPolDescriptor.java 7844 2007-02-01 19:46:29Z rajarshi $",            "The Chemistry Development Kit");    };    /**     *  Sets the parameters attribute of the BPolDescriptor object     *     *@param  params            The new parameters value     *@exception  CDKException  Description of the Exception     */    public void setParameters(Object[] params) throws CDKException {        // no parameters for this descriptor    }    /**     *  Gets the parameters attribute of the BPolDescriptor object     *     *@return    The parameters value     */    public Object[] getParameters() {        // no parameters for this descriptor        return (null);    }    /**     *  This method calculate the sum of the absolute value of     *  the difference between atomic polarizabilities of all bonded atoms in the molecule     *     *@param  container  Parameter is the atom container.     *@return            The sum of atomic polarizabilities     */    public DescriptorValue calculate(IAtomContainer container) throws CDKException {        double bpol = 0;        int atomicNumber0 = 0;        int atomicNumber1 = 0;        double difference = 0;        try {            ifac = IsotopeFactory.getInstance(container.getBuilder());            IElement element0;            IElement element1;            String symbol0;            String symbol1;            Iterator bonds = container.bonds();            while (bonds.hasNext()) {                IBond bond = (IBond) bonds.next();                symbol0 = bond.getAtom(0).getSymbol();                symbol1 = bond.getAtom(1).getSymbol();                element0 = ifac.getElement(symbol0);                element1 = ifac.getElement(symbol1);                atomicNumber0 = element0.getAtomicNumber();                atomicNumber1 = element1.getAtomicNumber();                difference = polarizabilities[atomicNumber0] -polarizabilities[atomicNumber1];                bpol += Math.abs(difference);            }            return new DescriptorValue(getSpecification(), getParameterNames(), getParameters(),                    new DoubleResult(bpol), new String[] {"bpol"});        } catch (Exception ex1) {                    logger.debug(ex1);            throw new CDKException("Problems with IsotopeFactory due to " + ex1.toString(), ex1);        }    }    /**     * Returns the specific type of the DescriptorResult object.     * <p/>     * The return value from this method really indicates what type of result will     * be obtained from the {@link org.openscience.cdk.qsar.DescriptorValue} object. Note that the same result     * can be achieved by interrogating the {@link org.openscience.cdk.qsar.DescriptorValue} object; this method     * allows you to do the same thing, without actually calculating the descriptor.     *     * @return an object that implements the {@link org.openscience.cdk.qsar.result.IDescriptorResult} interface indicating     *         the actual type of values returned by the descriptor in the {@link org.openscience.cdk.qsar.DescriptorValue} object     */    public IDescriptorResult getDescriptorResultType() {        return new DoubleResult(0.0);    }    /**     *  Gets the parameterNames attribute of the BPolDescriptor object     *     *@return    The parameterNames value     */    public String[] getParameterNames() {        // no param names to return        return (null);    }    /**     *  Gets the parameterType attribute of the BPolDescriptor object     *     *@param  name  Description of the Parameter     *@return       The parameterType value     */    public Object getParameterType(String name) {        return (null);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -