Examples of storeDataPoints()


Examples of net.sf.mzmine.project.impl.RawDataFileImpl.storeDataPoints()

          return;

        Scan spectrum = dataFile.getScan(scanNumber);

        // Add scan to new data file
        int storageID = rawDataFileWriter.storeDataPoints(spectrum
            .getDataPoints());
        CorrectedSpectrum newSpectrum = new CorrectedSpectrum(spectrum,
            rawDataFileWriter, spectrum.getNumberOfDataPoints(),
            storageID);
View Full Code Here

Examples of net.sf.mzmine.project.impl.RawDataFileImpl.storeDataPoints()

          else
            filteredDataPoints.add(0, dataPoints.get(i));
        }

        // Add scan to new data file
        int storageID = rawDataFileWriter
            .storeDataPoints(filteredDataPoints
                .toArray(new DataPoint[filteredDataPoints
                    .size()]));
        CorrectedSpectrum newSpectrum = new CorrectedSpectrum(spectrum,
            rawDataFileWriter, filteredDataPoints.size(), storageID);
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.