Package net.sf.mzmine.project

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


      return;
    }

    // Add new peaklist to the project or MZviewer.desktop
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(buildingPeakList);

    logger.info("Finished parsing " + fileName);
    setStatus(TaskStatus.FINISHED);

  }
View Full Code Here


    }

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

    // Load previous applied methods
    for (PeakListAppliedMethod proc : originalPeakList.getAppliedMethods()) {
      normalizedPeakList.addDescriptionOfAppliedTask(proc);
    }
View Full Code Here

    aligner = (Aligner) new ScoreAligner(this.peakLists, parameters);
    alignedPeakList = aligner.align();
    // Add new aligned peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(alignedPeakList);

    // Add task description to peakList
    alignedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Path aligner", parameters));
View Full Code Here

        if (!isCanceled()) {

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

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

            currentProject.removePeakList(origPeakList);
View Full Code Here

    } // Next peak list

    // Add new aligned peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(alignedPeakList);

    // Add task description to peakList
    alignedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Ransac aligner", parameters));
View Full Code Here

    }

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

    // Load previous applied methods
    for (PeakListAppliedMethod proc : peakList.getAppliedMethods()) {
      extendedPeakList.addDescriptionOfAppliedTask(proc);
    }
View Full Code Here

    // Add new peaklists to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();

    for (int i = 0; i < originalPeakLists.length; i++) {

      currentProject.addPeakList(normalizedPeakLists[i]);

      // Load previous applied methods
      for (PeakListAppliedMethod proc : originalPeakLists[i]
          .getAppliedMethods()) {
        normalizedPeakLists[i].addDescriptionOfAppliedTask(proc);
View Full Code Here

      normalizedPeakList.addRow(normalizedRow);
    }

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

    // Load previous applied methods
    for (PeakListAppliedMethod proc : originalPeakList.getAppliedMethods()) {
      normalizedPeakList.addDescriptionOfAppliedTask(proc);
    }
View Full Code Here

    } // Next peak list

    // Add new aligned peak list to the project
    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(alignedPeakList);

    // Add task description to peakList
    alignedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Join aligner", parameters));
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.