Mercurial > repos > prog > lcmsmatching
view ChebiConn.R @ 3:f61ce21ed17c draft
planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit 476a081c0da66822f4e77070f5ce59d9f14511f4-dirty
author | prog |
---|---|
date | Thu, 02 Mar 2017 11:07:56 -0500 |
parents | 20d69a062da3 |
children |
line wrap: on
line source
##################### # CLASS DECLARATION # ##################### ChebiConn <- methods::setRefClass("ChebiConn", contains = "RemotedbConn") ########################## # GET ENTRY CONTENT TYPE # ########################## ChebiConn$methods( getEntryContentType = function() { return(BIODB.HTML) }) ##################### # GET ENTRY CONTENT # ##################### ChebiConn$methods( getEntryContent = function(id) { # Initialize return values content <- rep(NA_character_, length(id)) # Request content <- vapply(id, function(x) .self$.get.url(get.entry.url(BIODB.CHEBI, x)), FUN.VALUE = '') return(content) }) ################ # CREATE ENTRY # ################ ChebiConn$methods( createEntry = function(content, drop = TRUE) { return(createChebiEntryFromHtml(content, drop = drop)) }) ################## # GET NB ENTRIES # ################## ChebiConn$methods( getNbEntries = function() { return(NA_integer_) }) ################# # GET ENTRY IDS # ################# ChebiConn$methods( getEntryIds = function(max.results = NA_integer_) { request <- "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:tns=\"http://www.ebi.ac.uk/webservices/chebi\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ><SOAP-ENV:Body><tns:getLiteEntity xmlns:tns=\"http://www.ebi.ac.uk/webservices/chebi\"><tns:search>1*</tns:search><tns:searchCategory>CHEBI ID</tns:searchCategory><tns:maximumResults>100</tns:maximumResults><tns:stars></tns:stars></tns:getLiteEntity></SOAP-ENV:Body></SOAP-ENV:Envelope>" print('********************************************************************************') print('********************************************************************************') results <- .self$.scheduler$sendSoapRequest('http://www.ebi.ac.uk:80/webservices/chebi/2.0/webservice', request) print(results) print('********************************************************************************') print('********************************************************************************') return(NULL) })