Examples of PeakListOpenHandler_2_0


Examples of net.sf.mzmine.modules.projectmethods.projectload.version_2_0.PeakListOpenHandler_2_0

    logger.info("Project version: " + projectVersionString);

    // Check if the project version is 2.0 to 2.2
    if ((projectMajorVersion == 2) && (projectMinorVersion <= 2)) {
      rawDataFileOpenHandler = new RawDataFileOpenHandler_2_0();
      peakListOpenHandler = new PeakListOpenHandler_2_0(dataFilesIDMap);
      return;
    }

    // Check if the project version is 2.3 to 2.4
    if ((projectMajorVersion == 2) && (projectMinorVersion <= 4)) {
View Full Code Here

Examples of net.sf.mzmine.modules.projectmethods.projectload.version_2_0.PeakListOpenHandler_2_0

      for (RawDataFile file : MZmineCore.getCurrentProject()
          .getDataFiles()) {
        dataFilesIDMap.put(file.getName(), file);
      }

      peakListOpenHander = new PeakListOpenHandler_2_0(dataFilesIDMap);

      buildingPeakList = peakListOpenHander.readPeakList(finalStream);

    } catch (Throwable e) {
      /* we may already have set the status to CANCELED */
 
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.