Package net.sf.mzmine.data.impl

Examples of net.sf.mzmine.data.impl.SimplePeakListAppliedMethod


    }

    // Add task description to peakList
    ((SimplePeakList) peakList)
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Identification of fragments", parameters));

    // Repaint the window to reflect the change in the peak list
    MZmineCore.getDesktop().getMainFrame().repaint();
View Full Code Here


      errorMessage = e.toString();
      return;
    }

    // Add task description to peakList
    peakList.addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
        "Peak identification using database " + dataBaseFile,
        parameters));

    // Repaint the window to reflect the changes in the peak list
View Full Code Here

    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Targeted peak detection ", parameters));

    logger.log(Level.INFO, "Targeted peak detection on {0}", this.dataFile);
    setStatus(TaskStatus.FINISHED);
View Full Code Here

          newPeakList.addDescriptionOfAppliedTask(method);
        }

        // Add task description to peak-list.
        newPeakList
            .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
                "Peaks smoothed by Savitzky-Golay filter",
                parameters));

        LOG.finest("Finished peak smoothing: " + progress
            + " rows processed");
View Full Code Here

    }

    // Add task description to peakList
    ((SimplePeakList) peakList)
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Identification of complexes", parameters));

    // Repaint the window to reflect the change in the peak list
    MZmineCore.getDesktop().getMainFrame().repaint();
View Full Code Here

    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Gap filling ", parameters));

    // Remove the original peaklist if requested
    if (removeOriginal)
      currentProject.removePeakList(peakList);
View Full Code Here

    MZmineProject currentProject = MZmineCore.getCurrentProject();
    currentProject.addPeakList(processedPeakList);

    // Add task description to peakList
    processedPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Gap filling using RT and m/z range", parameters));

    // Remove the original peaklist if requested
    if (removeOriginal)
      currentProject.removePeakList(peakList);
View Full Code Here

      newPeakList.addDescriptionOfAppliedTask(proc);
    }

    // Add task description to peakList
    newPeakList
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Peaks shaped by " + shapeModelerType + " function",
            parameters));

    logger.finest("Finished peak shape modeler " + processedRows
        + " rows processed");
View Full Code Here

      resolvedPeaks.addDescriptionOfAppliedTask(method);
    }

    // Add task description to peak list.
    resolvedPeaks
        .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Peak deconvolution by " + resolver, resolver
                .getParameterSet()));

    // Initialise counters.
    processedRows = 0;
View Full Code Here

      searchAdducts();

      if (!isCanceled()) {

        // Add task description to peakList.
        peakList.addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
            "Identification of adducts", parameters));

        // Repaint the window to reflect the change in the peak list.
        MZmineCore.getDesktop().getMainFrame().repaint();
View Full Code Here

TOP

Related Classes of net.sf.mzmine.data.impl.SimplePeakListAppliedMethod

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.