Examples of addMassList()


Examples of net.sf.mzmine.data.Scan.addMassList()

          massDetector.getParameterSet());

      SimpleMassList newMassList = new SimpleMassList(name, scan, mzPeaks);

      // Add new mass list to the scan
      scan.addMassList(newMassList);

      processedScans++;
    }

    setStatus(TaskStatus.FINISHED);
View Full Code Here

Examples of net.sf.mzmine.data.Scan.addMassList()

    // that is where the mass list data will be stored. This is a hack
    // because in MZmine 2.3 and 2.4 the mass lists were saved as XML
    // instead of being part of the data points file.
    for (SimpleMassList ml : allMassLists) {
      Scan s = ml.getScan();
      s.addMassList(ml);
    }

    RawDataFile rawDataFile = newRawDataFile.finishWriting();
    return rawDataFile;
View Full Code Here

Examples of net.sf.mzmine.data.Scan.addMassList()

          mzPeaks, parameters);

      SimpleMassList newMassList = new SimpleMassList(massListName + " "
          + suffix, scan, newMzPeaks);

      scan.addMassList(newMassList);

      // Remove old mass list
      if (autoRemove)
        scan.removeMassList(massList);
View Full Code Here

Examples of net.sf.mzmine.project.impl.StorableScan.addMassList()

        throw new SAXException(e);
      }

      for (StorableMassList newML : massLists) {
        newML.setScan(storableScan);
        storableScan.addMassList(newML);
      }
      massLists.clear();

    }
  }
View Full Code Here

Examples of net.sf.mzmine.project.impl.StorableScan.addMassList()

        throw new SAXException(e);
      }

      for (StorableMassList newML : massLists) {
        newML.setScan(scan);
        scan.addMassList(newML);
      }
      massLists.clear();
    }

    if (qName.equals(RawDataElementName_2_5_FiehnlabFork.CORRECTED_SPECTRUM
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.