Changeset 2431
- Timestamp:
- 11/09/09 13:46:47 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molgenis/3.3/src/org/molgenis/generators/R/RApi.R.ftl
r2369 r2431 34 34 MOLGENIS.connect <- function( servletURL, dbUser=NULL ) 35 35 { 36 library( RCurl ) 36 # Loading RCurl under Unix this way will ONLY work when the package is installed as root. 37 # User installations are in different directories. 38 # If users load it in a custom way, the library must not be sourced again. 39 # If they do not load it.. TODO: write alternative call to load RCurl 40 if(!any(loadedNamespaces()=="RCurl")){ 41 library( RCurl ) 42 } 37 43 #used to send messages to server 38 44
Note: See TracChangeset
for help on using the changeset viewer.