Examples of addPeakList()


Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      newPeakList.addRow(newRow);
    }

    // Add new peaklist to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(newPeakList);

    setStatus(TaskStatus.FINISHED);

    logger.info("Finished chromatogram builder on " + dataFile);
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      newPeakList.addRow(entry);
      processedScans++;
    }

    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(newPeakList);
    logger.info("Finished MS/MS peak builder on " + dataFile + ", "
        + processedScans + " scans processed");

    setStatus(TaskStatus.FINISHED);
  }
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      gap.noMoreOffers();
    }

    // Append processed peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Targeted peak detection ", parameters));
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      if (!isCanceled()) {

        // Add new peak-list to the project.
        final MZmineProject currentProject = MZmineCore
            .getCurrentProject();
        currentProject.addPeakList(newPeakList);

        // Remove the original peak-list if requested.
        if (removeOriginal) {

          currentProject.removePeakList(origPeakList);
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      }
    }

    // Append processed peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Gap filling ", parameters));
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

    }

    // Append processed peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Gap filling using RT and m/z range", parameters));
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

      processedRows++;
    }

    // Add new peaklist to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(newPeakList);

    // Remove the original peaklist if requested
    if (removeOriginal)
      currentProject.removePeakList(originalPeakList);
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

          if (!isCanceled()) {

            // Add new peaklist to the project.
            final MZmineProject currentProject = MZmineCore
                .getCurrentProject();
            currentProject.addPeakList(newPeakList);

            // Remove the original peaklist if requested.
            if (parameters.getParameter(AUTO_REMOVE).getValue()) {

              currentProject.removePeakList(originalPeakList);
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

        if (!isCanceled()) {

          // Add new peakList to the project.
          final MZmineProject project = MZmineCore
              .getCurrentProject();
          project.addPeakList(filteredPeakList);

          // Remove the original peakList if requested.
          if (parameters.getParameter(
              DuplicateFilterParameters.autoRemove).getValue()) {
View Full Code Here

Examples of net.sf.mzmine.project.MZmineProject.addPeakList()

    }

    // Add new peakList to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(deisotopedPeakList);

    // Load previous applied methods
    for (PeakListAppliedMethod proc : peakList.getAppliedMethods()) {
      deisotopedPeakList.addDescriptionOfAppliedTask(proc);
    }
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.