Package net.sf.mzmine.modules.peaklistmethods.identification.formulaprediction

Examples of net.sf.mzmine.modules.peaklistmethods.identification.formulaprediction.FormulaGenerator


        final String msg = "Cannot calculate isotope pattern scores, because selected"
            + " peak does not have any isotopes. Have you run the isotope peak grouper?";
        MZmineCore.getDesktop().displayMessage(msg);
      }

      generator = new FormulaGenerator(massRange, elementRules);

      while (true) {

        if (isCanceled()) {
          return;
View Full Code Here


        continue;

      Range msmsTargetRange = msmsTolerance
          .getToleranceRange(neutralLoss);

      FormulaGenerator msmsEngine = new FormulaGenerator(msmsTargetRange,
          msmsElementRules);

      MolecularFormula formula = msmsEngine.getNextFormula();
      if (formula != null) {
        String formulaString = MolecularFormulaManipulator
            .getString(formula);
        msmsAnnotations.put(dp, formulaString);
        interpretedMSMSpeaks++;
View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.peaklistmethods.identification.formulaprediction.FormulaGenerator

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.