R/opal.resource.R
opal.resource_extension_create.RdCreate an extended resource reference in a project
opal.resource_extension_create(
opal,
project,
name,
provider,
factory,
parameters,
description = NULL,
credentials = NULL
)Opal object.
Name of the project.
Name of the resource in the project.
Name of the R package in which the resource is defined.
Name of the JS function that turns parameters and credentials into a resource object.
A named list of the resource parameters.
The description of the resource (optional).
A named list of the resource credentials (optional).
Other resource functions:
opal.resource_create(),
opal.resource_delete(),
opal.resource_exists(),
opal.resource_get(),
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')
opal.resource_extension_create(o, 'RSRC', 'ga4gh_1000g',
provider = 'dsOmics', factory = 'ga4gh-htsget',
parameters = list(
host = 'https://htsget.ga4gh.org',
sample = '1000genomes.phase1.chr1',
reference = '1',
start = '1',
end = '100000',
format = 'GA4GHVCF'
)
)
opal.logout(o)
}