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

Examples of net.sf.mzmine.modules.peaklistmethods.alignment.path.scorer.RTScore


  private PeakList alignment;
  private ParameterSet params;

  public ScoreAligner(PeakList[] dataToAlign, ParameterSet params) {
    this.params = params;
    this.calc = new RTScore();
    originalPeakList = java.util.Collections.unmodifiableList(Arrays
        .asList(dataToAlign));
    copyAndSort(Arrays.asList(dataToAlign));
  }
View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.peaklistmethods.alignment.path.scorer.RTScore

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.