Examples of Nmr1dUnitList


Examples of org.bmdrc.nmr.Nmr1dUnitList

        this.getMoleculeSet().getMolecule(theMoleculeIndex).setProperty(this.KEY_VALUE_OF_OUTLIER_MOLECULE, thePropertyValue);
    }

    private Nmr1dUnitList __getPeakListInMoleculeContainFunctionalGroup(int theMoleculeIndex, String theFunctionalGroup) {
        Nmr1dUnitList thePeakList = new Nmr1dUnitList();
        List<Integer> theFunctionalGroupIndexListInMolecule = this.__getFunctionalGroupIndexListInMolecule(theMoleculeIndex, theFunctionalGroup);

        for (Integer theFunctionalGroupIndex : theFunctionalGroupIndexListInMolecule) {
            Nmr1dUnitList thePeakListInMoleculeContainFunctionalGroup = this.getHydrogenChemicalShiftDataInMoleculeSet().get(theMoleculeIndex)
                    .getPeakListUsingAnnotatedAtomNumber(theFunctionalGroupIndex);

            if (!thePeakListInMoleculeContainFunctionalGroup.isEmpty()) {
                thePeakList.addAllPeaks(thePeakListInMoleculeContainFunctionalGroup);
            }
        }

        return thePeakList;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.