Examples of PeakList


Examples of net.sf.mzmine.data.PeakList

    ExitCode exitCode = BatchModeModule.runBatch(batchFile);
    assert (exitCode == ExitCode.OK);

    assert (MZmineCore.getCurrentProject().getPeakLists().length > 0);

    PeakList peakList = MZmineCore.getCurrentProject().getPeakLists()[0];
    assert (peakList.getNumberOfRows() > 0);

    logger.info("Set #3 Mass Candidates: " + peakList.getNumberOfRows());

    for (PeakListRow row : peakList.getRows()) {
      assert (row.getNumberOfPeaks() > 0);
      assert (row.getRawDataFiles().length > 0);
      assert (row.getNumberOfPeaks() > 0);

      for (ChromatographicPeak p : row.getPeaks()) {
View Full Code Here

Examples of org.bmdrc.mass.PeakList

    public void setPeakList(PeakList thePeakList) {
        this.itsPeakList = thePeakList;
    }

    public PeakList setPeakList() {
        this.itsPeakList = new PeakList();
        return itsPeakList;
    }
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.