Examples of IsotopesDataSet


Examples of net.sf.mzmine.modules.visualization.spectra.datasets.IsotopesDataSet

    Color newColor;
    if (newPattern.getStatus() == IsotopePatternStatus.DETECTED)
      newColor = detectedIsotopesColor;
    else
      newColor = predictedIsotopesColor;
    IsotopesDataSet newDataSet = new IsotopesDataSet(normalizedPattern);
    spectrumPlot.addDataSet(newDataSet, newColor, true);

  }
View Full Code Here

Examples of net.sf.mzmine.modules.visualization.spectra.datasets.IsotopesDataSet

    }

    if (dataset instanceof IsotopesDataSet) {

      IsotopesDataSet isotopeDataSet = (IsotopesDataSet) dataset;

      IsotopePattern pattern = isotopeDataSet.getIsotopePattern();
      double relativeIntensity = intValue
          / pattern.getHighestIsotope().getIntensity() * 100;

      String tooltip = "Isotope pattern: " + pattern.getDescription()
          + "\nStatus: " + pattern.getStatus() + "\nData point m/z: "
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.