Package net.sf.mzmine.modules.peaklistmethods.alignment.path.functions

Examples of net.sf.mzmine.modules.peaklistmethods.alignment.path.functions.ScoreAligner


   */
  public void run() {
    setStatus(TaskStatus.PROCESSING);
    logger.info("Running Path aligner");

    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);

View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.peaklistmethods.alignment.path.functions.ScoreAligner

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.