Skip to content

Commit

Permalink
gig
Browse files Browse the repository at this point in the history
  • Loading branch information
almaan committed Jul 14, 2020
2 parents 55123f5 + fe6c98f commit 1f42d1a
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ data/clinical-data
app/*backup
backup/
scripts/update-namemaps.py
prep_sc_data.R
7 changes: 1 addition & 6 deletions app/app.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ library(shinyWidgets)
library(shinycssloaders)
library(shinydashboard)


source("utils.R")
options(shiny.usecairo = FALSE)

Expand All @@ -30,10 +29,6 @@ imdims.list <- readRDS("data/imdims.list")
dims.list <- readRDS("data/dims.list")
data.list <- readRDS("data/data.list")

sc.list <- readRDS("data/cs.list")
scs <- Reduce(intersect, lapply(sc.list,
colnames))

c(t1.list,
t2.list,
t3.list) %<-% lapply(1:3,
Expand All @@ -54,7 +49,7 @@ c(t1.cells,
#### UI ####

ui <- dashboardPage(

header = dashboardHeader(title = "HER2+ BC"),

sidebar = dashboardSidebar(
Expand Down
Binary file removed app/data/cs.list
Binary file not shown.
Binary file modified app/data/t1.list
Binary file not shown.
Binary file modified app/data/t2.list
Binary file not shown.
Binary file modified app/data/t3.list
Binary file not shown.
4 changes: 2 additions & 2 deletions app/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require(RColorBrewer)
# FUNCTIONS -----------

make_empty_theme <- function(){
theme_empty <- theme_bw()
theme_empty <- theme_bw()
theme_empty$line <- element_blank()
theme_empty$rect <- element_blank()
theme_empty$strip.text <- element_blank()
Expand All @@ -23,7 +23,7 @@ make_empty_theme <- function(){
theme_empty$legend.title <- element_text(colour = "white")
theme_empty$strip.background <- element_rect(fill="black")
theme_empty$legend.key.size <- unit(10,"mm")
theme_empty$legend.margin <- margin(10,50,10,50)
theme_empty$legend.margin <- margin(10,50,10,50)

return(theme_empty)

Expand Down

0 comments on commit 1f42d1a

Please sign in to comment.