Package net.sf.mzmine.modules.visualization.spectra.datasets

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


    }

    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

Related Classes of net.sf.mzmine.modules.visualization.spectra.datasets.IsotopesDataSet

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.