-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.R
More file actions
24 lines (20 loc) · 733 Bytes
/
app.R
File metadata and controls
24 lines (20 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
####################################################################
# BrainEffeX App
####################################################################
# Shiny stuff needed for both ui and server (check)
library(shiny)
library(shinythemes)
library(shinycssloaders)
library(shinyscreenshot)
library(shinyjs)
library(shinyBS)
library(bslib)
library(DT) # data tables
# Import custom BrainEffeX functions, ui, and server
save_plots = FALSE # set to TRUE to save all plots as pngs, MUST BE OFF TO DEPLOY
#library(BrainEffeX.utils) # to run locally, install the package from github with: devtools::install_github("neuroprismlab/BrainEffeX_utils")
source("ui.R")
source("server.R")
source("modals.R")
# Run app
shinyApp(ui, server)