Package net.sf.mzmine.data

Examples of net.sf.mzmine.data.DataPoint


    if (outputFile == null)
      return;

    IsotopePattern pattern = row.getBestIsotopePattern();

    DataPoint isotopes[];

    if (pattern != null) {
      isotopes = pattern.getDataPoints();
    } else {
      isotopes = new DataPoint[1];
View Full Code Here


              + " for MS/MS scan #" + msmsScanNumber + " ("
              + bestPeak.getDataFile() + ")");
      return;
    }

    DataPoint peaks[] = massList.getDataPoints();

    try {
      FileWriter fileWriter = new FileWriter(outputFile);
      BufferedWriter writer = new BufferedWriter(fileWriter);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.data.DataPoint

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.