Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
Automate package installation
  • Loading branch information
earnaud authored Jul 22, 2019
1 parent c24a403 commit 8cd8ba1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions shinyApp/header.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@ setwd(dirname(rstudioapi::getActiveDocumentContext()$path))
options(shiny.reactlog=TRUE)

### IMPORTS ----

list.of.packages <- c("shiny", "shinyTree", "shinydashboard", "shinyjs")
new.packages <- list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)) install.packages(new.packages)

## GUI ----
library(shiny)
library(shinyTree)
library(shinydashboard)
library(shinyjs)
library(tcltk2)
# library(tcltk2)

## EML ----
library(EML)
library(EMLassemblyline)
# library(EML)
# library(EMLassemblyline)

## Utils ----
library(devtools)
# library(devtools)

## Modules assembly ----
# Welcome
Expand Down

0 comments on commit 8cd8ba1

Please sign in to comment.