View source: R/opal.resource.R
opal.resource_extension_create | R Documentation |
Create an extended resource reference in a project
opal.resource_extension_create(
opal,
project,
name,
provider,
factory,
parameters,
description = NULL,
credentials = NULL
)
opal |
Opal object. |
project |
Name of the project. |
name |
Name of the resource in the project. |
provider |
Name of the R package in which the resource is defined. |
factory |
Name of the JS function that turns parameters and credentials into a resource object. |
parameters |
A named list of the resource parameters. |
description |
The description of the resource (optional). |
credentials |
A named list of the resource credentials (optional). |
Other resource functions:
opal.resource()
,
opal.resource_create()
,
opal.resource_delete()
,
opal.resource_exists()
,
opal.resource_get()
,
opal.resource_perm()
,
opal.resource_perm_add()
,
opal.resource_perm_delete()
,
opal.resources()
,
opal.resources_perm()
,
opal.resources_perm_add()
,
opal.resources_perm_delete()
## Not run:
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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.