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