Package net.sf.mzmine.data

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


    // 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

          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

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.