Search in sources :

Example 1 with RecordResponse

use of org.rsc.chemspider.api.RecordResponse in project mzmine2 by mzmine.

the class ChemSpiderGateway method getCompound.

@Override
public DBCompound getCompound(final String ID, ParameterSet parameters) throws IOException {
    logger.finest("Fetching compound info for CSID #" + ID);
    // Get security token.
    final String apiKey = parameters.getParameter(ChemSpiderParameters.SECURITY_TOKEN).getValue();
    final List<String> fields = Arrays.asList("Formula", "CommonName", "MonoisotopicMass");
    try {
        RecordsApi apiInstance = new RecordsApi();
        apiInstance.getApiClient().setUserAgent("MZmine " + MZmineCore.getMZmineVersion());
        Integer recordId = Integer.valueOf(ID);
        RecordResponse response = apiInstance.recordsRecordIdDetailsGet(recordId, fields, apiKey);
        String name = response.getCommonName();
        if (Strings.isNullOrEmpty(name))
            name = UNKNOWN_NAME;
        String formula = response.getFormula();
        // Fix formula formatting
        if (!Strings.isNullOrEmpty(formula))
            formula = FORMULA_PATTERN.matcher(formula).replaceAll("");
        // Create and return the compound record.
        return new DBCompound(OnlineDatabases.CHEMSPIDER, ID, name, formula, new URL(STRUCTURE_URL_PATTERN.replaceFirst("CSID", ID)), new URL(STRUCTURE2D_URL_PATTERN.replaceFirst("CSID", ID)), new URL(STRUCTURE3D_URL_PATTERN.replaceFirst("CSID", ID)));
    } catch (ApiException e) {
        logger.log(Level.WARNING, "Failed to fetch compound info for CSID #" + ID, e);
        throw new IOException(e);
    }
}
Also used : RecordsApi(org.rsc.chemspider.api.RecordsApi) RecordResponse(org.rsc.chemspider.api.RecordResponse) IOException(java.io.IOException) DBCompound(net.sf.mzmine.modules.peaklistmethods.identification.onlinedbsearch.DBCompound) URL(java.net.URL) ApiException(org.rsc.chemspider.ApiException)

Aggregations

IOException (java.io.IOException)1 URL (java.net.URL)1 DBCompound (net.sf.mzmine.modules.peaklistmethods.identification.onlinedbsearch.DBCompound)1 ApiException (org.rsc.chemspider.ApiException)1 RecordResponse (org.rsc.chemspider.api.RecordResponse)1 RecordsApi (org.rsc.chemspider.api.RecordsApi)1