use of net.sf.mzmine.modules.peaklistmethods.alignment.path.functions.ScoreAligner in project mzmine2 by mzmine.
the class PathAlignerTask method run.
/**
* @see Runnable#run()
*/
public void run() {
setStatus(TaskStatus.PROCESSING);
logger.info("Running Path aligner");
aligner = (Aligner) new ScoreAligner(this.peakLists, parameters);
alignedPeakList = aligner.align();
// Add new aligned feature list to the project
project.addPeakList(alignedPeakList);
// Add task description to peakList
alignedPeakList.addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod("Path aligner", parameters));
logger.info("Finished Path aligner");
setStatus(TaskStatus.FINISHED);
}
Aggregations