|
1 | 1 | ---
|
2 | 2 | title: "Writing iSEE extensions"
|
3 |
| -author: Kevin Rue-Albrecht^[kevinrue67@gmail.com],Federico Marini^[marinif@uni-mainz.de], Charlotte Soneson^[charlottesoneson@gmail.com] |
| 3 | +author: Kevin Rue-Albrecht^[kevinrue67@gmail.com], Federico Marini^[marinif@uni-mainz.de], Charlotte Soneson^[charlottesoneson@gmail.com] |
4 | 4 | output: rmarkdown::html_vignette
|
5 | 5 | vignette: >
|
6 | 6 | %\VignetteIndexEntry{Writing iSEE extensions}
|
@@ -156,6 +156,7 @@ Let's demonstrate this by attaching the `r BiocStyle::Biocpkg("iSEE")` package t
|
156 | 156 |
|
157 | 157 | ```{r, message=FALSE, warning=FALSE, eval=FALSE}
|
158 | 158 | library(iSEE)
|
| 159 | +library(shiny) |
159 | 160 | app <- iSEE(sce)
|
160 | 161 | runApp(app, launch.browser = TRUE)
|
161 | 162 | ```
|
@@ -437,7 +438,7 @@ Due to the use of `uniquifyFeatureNames()` above, we must first map pathway iden
|
437 | 438 |
|
438 | 439 | ```{r, message=FALSE, warning=FALSE}
|
439 | 440 | library("org.Hs.eg.db")
|
440 |
| -pathways <- select(org.Hs.eg.db, keys(org.Hs.eg.db, "ENSEMBL"), c("GOALL"), keytype = "ENSEMBL") |
| 441 | +pathways <- select(org.Hs.eg.db, head(keys(org.Hs.eg.db, "GOALL"), 100), c("ENSEMBL"), keytype = "GOALL") |
441 | 442 | pathways <- subset(pathways, ONTOLOGYALL == "BP")
|
442 | 443 | pathways <- unique(pathways[, c("ENSEMBL", "GOALL")])
|
443 | 444 | pathways <- merge(pathways, rowData(airway)[, c("ENSEMBL", "uniquifyFeatureNames")])
|
|
0 commit comments