Get the resource object of a project
opal.resource_get(opal, project, resource)Opal object.
Name of the project.
Name of the resource in the project.
Other resource functions:
opal.resource_create(),
opal.resource_delete(),
opal.resource_exists(),
opal.resource_extension_create(),
opal.resource_perm_add(),
opal.resource_perm_delete(),
opal.resource_perm(),
opal.resources_perm_add(),
opal.resources_perm_delete(),
opal.resources_perm(),
opal.resources(),
opal.resource()
if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
res <- opal.resource_get(o, 'RSRC', 'CNSIM1')
# then interpret locally the resource object (load the appropriate R packages)
library(resourcer)
# coerce to a data.frame
as.data.frame(res)
# or get the resource client object for low-level interactions
rescli <- resourcer::newResourceClient(res)
opal.logout(o)
}