Examples of FameCorrection


Examples of net.sf.mzmine.modules.deconvolutedanalysis.famealignment.FameCorrection

                  .getElementName()));
      double retentionIndex = Double
          .parseDouble(attrs
              .getValue(RawDataElementName_2_5_FiehnlabFork.RETENTION_INDEX
                  .getElementName()));
      partialCorrectionResults.put(name, new FameCorrection(null,
          retentionTime, (int) retentionIndex));
    }
  }
View Full Code Here

Examples of net.sf.mzmine.modules.deconvolutedanalysis.famealignment.FameCorrection

          int idx = Arrays.asList(FameData.FAME_NAMES).indexOf(name);
          return FameData.FAME_RETENTION_INDICES[idx];
      }
    } else {
      RawDataFile file = getColumnDataFile(col);
      FameCorrection correction = (FameCorrection) peakListRow
          .getPeak(file);

      if (correction == null)
        return null;

      switch (getDataFileColumn(col)) {
        case RT :
          return correction.getRetentionTime();
      }
    }

    return null;
  }
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.