Examples of ScanList


Examples of uk.ac.ebi.jmzml.model.mzml.ScanList

    return 1;
  }

  private double extractRetentionTime(Spectrum spectrum) {

    ScanList scanListElement = spectrum.getScanList();
    if (scanListElement == null)
      return 0;
    List<Scan> scanElements = scanListElement.getScan();
    if (scanElements == null)
      return 0;

    for (Scan scan : scanElements) {
      List<CVParam> cvParams = scan.getCvParam();
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.