Examples of metaboliteSearch()


Examples of metlin.MetlinPortType.metaboliteSearch()

    MetaboliteSearchRequest searchParams = new MetaboliteSearchRequest(
        token, searchMass, adduct, searchTolerance, "Da");
    LineInfo resultsData[][];
    try {
      resultsData = serv.metaboliteSearch(searchParams);
    } catch (AxisFault e) {
      // For some reason, the METLIN SOAP gateway throws AxisFault caused
      // by ArrayStoreException if no result is found. I suspect their
      // SOAP response is malformed and Axis does not like it.
      resultsData = new LineInfo[1][0];
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.