dataHub | R Documentation |
dataHub
class, constructor, and methods.
dataHub(BFC)
dataHub(BFC)
## S4 method for signature 'dataHub'
show(object)
dataNames(object)
dataParams(object)
dataNotes(object)
dataPaths(object)
dataYml(object)
dataTags(object)
## S4 method for signature 'dataHub'
dataTags(object)
dataTags(object, append = TRUE) <- value
## S4 replacement method for signature 'dataHub'
dataTags(object, append = FALSE) <- value
## S4 method for signature 'dataHub,ANY,ANY,ANY'
x[i, j, drop]
## S4 replacement method for signature 'dataHub,ANY,ANY,ANY'
x[i, j] <- value
## S4 method for signature 'dataHub'
c(x, ...)
toList(
x,
listNames = NULL,
format = c("list", "json", "yaml"),
type = NULL,
file = character()
)
BFC |
A BiocFileCache object created for data and recipes. |
object |
A |
append |
Whether to append new tag or replace all tags. |
value |
A |
x |
A |
i |
The integer index of the |
j |
inherited from |
drop |
Inherited from |
... |
More |
listNames |
A vector of names for the output list. |
format |
can be "list", "json" or "yaml". Supports partial match. Default is list. |
type |
The type of workflow input list, such as cwl. |
file |
The file name to save the data list in required format. The data extension needs to be included, e.g., ".json" or ".yml". |
dataHub: a dataHub
object.
dataNames: the names of datasets in dataHub
object.
dataParams: the data recipe parameter values for datasets
in dataHub
object.
dataNotes: the notes of datasets in dataHub
object.
dataPaths: the file paths of datasets in dataHub
object.
dataYml: the yaml file paths of datasets in dataHub
object.
dataTags: the tags of datasets in dataHub
object.
toList: A list of datasets in specific format, and a file
if file
argument is specified.
outdir <- file.path(tempdir(), "SharedData")
dataUpdate(outdir, cloud = TRUE)
dd <- dataSearch(c("liftover", "GRCh38"))
dataNames(dd)
dataParams(dd)
dataNotes(dd)
dataTags(dd)
dataYml(dd)
toList(dd)
toList(dd, format = "yaml")
toList(dd, format = "json", file = tempfile())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.