@Nonnull Collection<Task> tasks) {
PeakList peakLists[] = parameters.getParameter(
FormulaPredictionPeakListParameters.PEAK_LISTS).getValue();
for (PeakList peakList : peakLists) {
Task newTask = new FormulaPredictionPeakListTask(peakList,
parameters);
tasks.add(newTask);
}
return ExitCode.OK;
}