search for: list_organisms

Displaying 1 result from an estimated 1 matches for "list_organisms".

2005 Jan 10
0
SSOAP and Rcurl with proxy server
Hi I'm trying to use a bioconductor package (KEGGSOAP) which relies on Rcurl and SSOAP. As an example, a function exists: > list.organisms function () { orgs <- matrix(unlist(.SOAP(KEGGserver, "list_organisms", "", action = KEGGaction, xmlns = KEGGxmlns), use.names = FALSE), ncol = 2, byrow = TRUE) temp <- orgs[, 2] names(temp) <- orgs[, 1] return(temp) } As can be seen, this function uses the .SOAP method from SSOAP. The function does not work as the...