Examples of shiftWeight()


Examples of org.bmdrc.mass.PeakList.shiftWeight()

        Double the500ScanShift = Double.parseDouble(this.getFrame().getFilePathTextFieldList().get(this.FIVE_HUNDRED_SCAN_PEAK_SHIFT_INDEX).getText());
        PeakList the20ScanPeakList = new PeakList(new File(theDir + "\\" + the20ScanFileName), ",");
        PeakList the500ScanPeakList = new PeakList(new File(theDir + "\\" + the500ScanFileName), ",");

        the20ScanPeakList.shiftWeight(the20ScanShift);
        the500ScanPeakList.shiftWeight(the500ScanShift);

        NovelPeakFinder theNovelPeakFinder = new NovelPeakFinder(the20ScanPeakList, the500ScanPeakList);

        return theNovelPeakFinder.calculateNovelPeakList();
    }
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.