Package org.openscience.cdk

Examples of org.openscience.cdk.MoleculeSet


    public final static String MOLECULAR_FORMULA_PROPERTY_NAME = "Molecular_Formula";
    public final static String EXACT_MASS_PROPERTY_NAME = "exact mass";

    public MolecularPropertyCalculator(IMoleculeSet inputMoleculeSet) throws CDKException {
        this.setMoleculeSet(inputMoleculeSet);
        this.setFailedMoleculeSet(new MoleculeSet());
        this.__addHydrogens();
        this.__setMF();
    }
View Full Code Here


        return itsFailedMoleculeSet;
    }

    private void __addFailedMoleculeSet(IMolecule theFailedMolecule) {
        if (this.getFailedMoleculeSet() == null) {
            this.setFailedMoleculeSet(new MoleculeSet());
            this.setFailedMoleculeSet().addMolecule(theFailedMolecule);
        } else {
            this.setFailedMoleculeSet().addMolecule(theFailedMolecule);
        }
    }
View Full Code Here

TOP

Related Classes of org.openscience.cdk.MoleculeSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.