Description Usage Arguments Details Value Examples
Given a gep2pep
repository, returns the names of the
stored collections by looking at appropriate repository item
names.
1 | getCollections(rp)
|
rp |
A repository created by |
Each collection in a database has a "category" and a
"subcategory" assigned, which are used to build the collection
identifier as "category_subcategory". This function obtains the
identifiers by looking at data stored in the repository
rp
(entries that are tagged with "sets").
Vector of collection names (see details).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | db <- loadSamplePWS()
repo_path <- file.path(tempdir(), "gep2pepTemp")
rp <- createRepository(repo_path, db)
## Repo root created.
## Repo created.
## [15:45:06] Storing pathway data for collection: c3_TFT
## [15:45:06] Storing pathway data for collection: c3_MIR
## [15:45:06] Storing pathway data for collection: c4_CGN
getCollections(rp)
## [1] "c3_TFT" "c3_MIR" "c4_CGN"
unlink(repo_path, TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.