Examples of PeakList


Examples of net.sf.mzmine.data.PeakList

  @Override
  @Nonnull
  public ExitCode runModule(@Nonnull ParameterSet parameters,
      @Nonnull Collection<Task> tasks) {

    PeakList peakLists[] = parameters.getParameter(
        MascotParameters.peakLists).getValue();

    for (PeakList peakList : peakLists) {
      Task newTask = new MascotSearchTask(parameters, peakList);
      tasks.add(newTask);
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

  }

  @Override
  public ExitCode runModule(@Nonnull ParameterSet parameters,
      @Nonnull Collection<Task> tasks) {
    PeakList peakLists[] = parameters.getParameter(
        FormulaPredictionPeakListParameters.PEAK_LISTS).getValue();

    for (PeakList peakList : peakLists) {
      Task newTask = new FormulaPredictionPeakListTask(peakList,
          parameters);
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

  private JFreeChart chart;

  public IntensityPlotFrame(ParameterSet parameters) {
    super("", true, true, true, true);

    PeakList peakList = parameters.getParameter(
        IntensityPlotParameters.peakList).getValue()[0];

    String title = "Intensity plot [" + peakList + "]";
    String xAxisLabel = parameters
        .getParameter(IntensityPlotParameters.xAxisValueSource)
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

    super.actionPerformed(event);

    Object src = event.getSource();

    if (src == comboPeakList) {
      PeakList selectedPeakList = (PeakList) comboPeakList
          .getSelectedItem();
      PeakListRow rows[] = selectedPeakList.getRows();
      comboPeak.removeActionListener(this);
      comboPeak.removeAllItems();
      for (PeakListRow row : rows) {
        comboPeak.addItem(row);
      }
      comboPeak.addActionListener(this);
      comboPeak.setSelectedIndex(0);
      return;
    }

    if (src == preview) {
      if (preview.isSelected()) {
        // Set the height of the preview to 200 cells, so it will span
        // the whole vertical length of the dialog (buttons are at row
        // no
        // 100). Also, we set the weight to 10, so the preview component
        // will consume most of the extra available space.
        mainPanel.add(pnlPlotXY, 3, 0, 1, 200, 10, 10);
        pnlVisible.add(pnlLabelsFields, BorderLayout.CENTER);
        updateMinimumSize();
        pack();
        PeakList selected[] = MZmineCore.getDesktop()
            .getSelectedPeakLists();
        if (selected.length > 0)
          comboPeakList.setSelectedItem(selected[0]);
        else
          comboPeakList.setSelectedIndex(0);
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

   * original ParameterSetupDialog.
   *
   */
  private void addComponents() {

    PeakList peakLists[] = MZmineCore.getCurrentProject().getPeakLists();

    // Elements of pnlpreview
    JPanel pnlpreview = new JPanel(new BorderLayout());

    preview = new JCheckBox(" Show preview of peak building ");
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

      label.setIcon(peakListIcon);
      label.setFont(smallFont);
    }

    if (embeddedObject instanceof PeakList) {
      PeakList p = (PeakList) embeddedObject;
      if (p.getNumberOfRawDataFiles() > 1) {
        label.setFont(smallerFont.deriveFont(Font.BOLD));
        label.setIcon(alignedPeaklistIcon);
      } else {
        label.setFont(smallerFont);
        label.setIcon(peakListIcon);
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

  }

  @Override
  public ExitCode showSetupDialog() {

    PeakList selectedPeakLists[] = getParameter(peakList).getValue();

    if (selectedPeakLists.length != 1) {
      MZmineCore.getDesktop().displayErrorMessage(
          "Please select a single peak list");
      return ExitCode.CANCEL;
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

  @Override
  @Nonnull
  public ExitCode runModule(@Nonnull ParameterSet parameters,
      @Nonnull Collection<Task> tasks) {

    PeakList peakLists[] = parameters.getParameter(
        GPLipidSearchParameters.peakLists).getValue();

    for (PeakList peakList : peakLists) {
      Task newTask = new GPLipidSearchTask(parameters, peakList);
      tasks.add(newTask);
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

   * @throws TransformerConfigurationException
   */
  private void savePeakLists(ZipOutputStream zipStream) throws IOException,
      TransformerConfigurationException, SAXException {

    PeakList peakLists[] = savedProject.getPeakLists();

    for (int i = 0; i < peakLists.length; i++) {

      if (isCanceled())
        return;
View Full Code Here

Examples of net.sf.mzmine.data.PeakList

      processedRows++;
    }

    // Create the new peak list.
    final PeakList newPeakList = new SimplePeakList(origPeakList + " "
        + suffix, origPeakList.getRawDataFiles());

    // Add all remaining rows to a new peak list.
    for (int i = 0; !isCanceled() && i < rowCount; i++) {

      final PeakListRow row = peakListRows[i];

      if (row != null) {

        // Copy the peak list row.
        final PeakListRow newRow = new SimplePeakListRow(row.getID());
        PeakUtils.copyPeakListRowProperties(row, newRow);

        // Copy the peaks.
        for (final ChromatographicPeak peak : row.getPeaks()) {

          final ChromatographicPeak newPeak = new SimpleChromatographicPeak(
              peak);
          PeakUtils.copyPeakProperties(peak, newPeak);
          newRow.addPeak(peak.getDataFile(), newPeak);
        }

        newPeakList.addRow(newRow);
      }
    }

    if (!isCanceled()) {

      // Load previous applied methods.
      for (final PeakListAppliedMethod method : origPeakList
          .getAppliedMethods()) {

        newPeakList.addDescriptionOfAppliedTask(method);
      }

      // Add task description to peakList
      newPeakList
          .addDescriptionOfAppliedTask(new SimplePeakListAppliedMethod(
              "Duplicate peak list rows filter", parameters));
    }

    return newPeakList;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.