-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 1.3.1 and update changelog
- Loading branch information
Showing
3 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: cerebroApp | ||
Title: Interactive visualization of scRNA-seq data with Cerebro | ||
Version: 1.3.0 | ||
Version: 1.3.1 | ||
Authors@R: | ||
person("Roman", "Hillje", email = "[email protected]", role = c("aut", "cre")) | ||
Description: Cerebro is a Shiny application that allows to interactively visualize scRNA-seq data. Data must be exported from a Seurat object using the helper functions which also allows to perform analysis such as pathway enrichment analysis based on marker genes of samples and/or clusters. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Launching Cerebro with a loaded data set | ||
|
||
```r | ||
## load packages -------------------------------------------------------------## | ||
library(dplyr) | ||
library(DT) | ||
library(plotly) | ||
library(shiny) | ||
library(shinydashboard) | ||
library(shinyWidgets) | ||
|
||
## load data set -------------------------------------------------------------## | ||
my_data_set <<- readRDS("extdata/v1.3/example.crb") | ||
|
||
## set parameters ------------------------------------------------------------## | ||
Cerebro.options <<- list( | ||
"mode" = "closed", | ||
"crb_file_to_load" = "my_data_set", | ||
"cerebro_root" = "." | ||
) | ||
|
||
shiny_options <- list( | ||
maxRequestSize = 800 * 1024^2, | ||
port = 1337 | ||
) | ||
|
||
## load server and UI functions ----------------------------------------------## | ||
source(glue::glue("{Cerebro.options$cerebro_root}/shiny/v1.3/shiny_UI.R")) | ||
source(glue::glue("{Cerebro.options$cerebro_root}/shiny/v1.3/shiny_server.R")) | ||
|
||
## launch app ----------------------------------------------------------------## | ||
shiny::shinyApp( | ||
ui = ui, | ||
server = server, | ||
options = shiny_options | ||
) | ||
``` |