Mercurial > repos > prog > lcmsmatching
diff ChebiConn.R @ 1:45e985cd8e9e draft
planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit d4048accde6bdfd5b3e14f5394902d38991854f8-dirty
| author | prog |
|---|---|
| date | Tue, 31 Jan 2017 05:27:24 -0500 |
| parents | 3afe41d3e9e7 |
| children |
line wrap: on
line diff
--- a/ChebiConn.R Mon Jul 11 09:12:03 2016 -0400 +++ b/ChebiConn.R Tue Jan 31 05:27:24 2017 -0500 @@ -1,48 +1,59 @@ -if ( ! exists('ChebiConn')) { # Do not load again if already loaded +##################### +# CLASS DECLARATION # +##################### + +ChebiConn <- methods::setRefClass("ChebiConn", contains = "RemotedbConn") + +########################## +# GET ENTRY CONTENT TYPE # +########################## + +ChebiConn$methods( getEntryContentType = function() { + return(BIODB.HTML) +}) - source('BiodbConn.R') - source('ChebiCompound.R') - - ##################### - # CLASS DECLARATION # - ##################### - - ChebiConn <- setRefClass("ChebiConn", contains = "BiodbConn") +##################### +# GET ENTRY CONTENT # +##################### + +ChebiConn$methods( getEntryContent = function(id) { - ########################## - # GET ENTRY CONTENT TYPE # - ########################## + # Initialize return values + content <- rep(NA_character_, length(id)) - ChebiConn$methods( getEntryContentType = function(type) { - return(RBIODB.HTML) - }) + # Request + content <- vapply(id, function(x) .self$.get.url(get.entry.url(BIODB.CHEBI, x)), FUN.VALUE = '') + + return(content) +}) - ##################### - # GET ENTRY CONTENT # - ##################### - - ChebiConn$methods( getEntryContent = function(type, id) { +################ +# CREATE ENTRY # +################ - if (type == RBIODB.COMPOUND) { +ChebiConn$methods( createEntry = function(content, drop = TRUE) { + return(createChebiEntryFromHtml(content, drop = drop)) +}) - # Initialize return values - content <- rep(NA_character_, length(id)) - - # Request - content <- vapply(id, function(x) .self$.scheduler$getUrl(get.entry.url(RBIODB.CHEBI, x)), FUN.VALUE = '') +################## +# GET NB ENTRIES # +################## - return(content) - } +ChebiConn$methods( getNbEntries = function() { + return(NA_integer_) +}) + +################# +# GET ENTRY IDS # +################# - return(NULL) - }) - - ################ - # CREATE ENTRY # - ################ - - ChebiConn$methods( createEntry = function(type, content, drop = TRUE) { - return(if (type == RBIODB.COMPOUND) createChebiCompoundFromHtml(content, drop = drop) else NULL) - }) - -} # end of load safe guard +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) +})
