Package net.sf.mzmine.data.impl

Examples of net.sf.mzmine.data.impl.SimplePeakListAppliedMethod


      extendedPeakList.addDescriptionOfAppliedTask(proc);
    }

    // Add task description to peakList
    extendedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Peak extender", parameters));

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


        normalizedPeakLists[i].addDescriptionOfAppliedTask(proc);
      }

      // Add task description to peakList
      normalizedPeakLists[i]
          .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
              "Retention time normalization", parameters));

      // Remove the original peaklists if requested
      if (removeOriginal)
        currentProject.removePeakList(originalPeakLists[i]);
View Full Code Here

      normalizedPeakList.addDescriptionOfAppliedTask(proc);
    }

    // Add task description to peakList
    normalizedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Linear normalization of by " + normalizationType,
            parameters));

    // Remove the original peaklist if requested
    if (removeOriginal)
View Full Code Here

    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(alignedPeakList);

    // Add task description to peakList
    alignedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Join aligner", parameters));

    logger.info("Finished join aligner");
    setStatus(TaskStatus.FINISHED);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.data.impl.SimplePeakListAppliedMethod

Copyright © 2018 www.massapicom. 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.