forked from gregorbj/Archive-VisionEval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.R
86 lines (74 loc) · 3.09 KB
/
install.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#Download and Install VisionEval Resources including Dependencies
#Ben Stabler, [email protected], 12/26/18
################################################################################
#VisionEval GitHub repository location settings
host <- "https://api.github.com/repos/" #github
repo <- "gregorbj/visioneval/" #repository
ref <- "master" #branch, such as master or develop
#If working within a proxy server, uncomment the following commands to access GitHub
#library(httr)
#set_config(use_proxy(url="proxynew.odot.state.or.us", port=8080))
#set_config( config( ssl_verifypeer = 0L ) )
################################################################################
#Set repository
local({currentRepo <- getOption("repos")
currentRepo["CRAN"] <- "https://cran.cnr.berkeley.edu/"
options(repos = currentRepo)
})
# Download and install the required libraries and their dependencies
cat("\nInstalling dependencies\n")
install.packages(c("curl","devtools", "roxygen2", "stringr", "knitr", "digest"),
dependencies = TRUE, quiet=TRUE)
install.packages(c("shiny", "shinyjs", "shinyFiles", "data.table", "DT",
"shinyBS", "future", "testit", "jsonlite",
"envDocument", "rhandsontable", "shinyTree"),
dependencies = TRUE, quiet=TRUE)
devtools::install_github("tdhock/namedCapture", quiet=TRUE)
source("https://bioconductor.org/biocLite.R")
biocLite(c("rhdf5","zlibbioc"), suppressUpdates=TRUE, quiet=TRUE)
#Download the VE repository
destfile <- tempfile(fileext = paste0(".zip"))
destdir <- normalizePath(tempdir())
cat("\nDownloading VE repository to", destdir, "\n")
request <- httr::GET(paste0(host, repo, "zipball/", ref))
if(httr::status_code(request) >= 400){
stop("\nError downloading the repository\n")
}
writeBin(httr::content(request, "raw"), destfile)
unzip(zipfile = destfile, exdir = destdir)
destdir <- normalizePath(file.path(destdir, grep("visioneval", list.files(destdir), value=TRUE, ignore.case=TRUE)))
cat("\nFinished downloading VE repository\n")
cat(paste0("\n","Download directory: ", destdir, "\n"))
# VE framework and modules
VE_framework <- "visioneval"
VE_modules <- c(
"VE2001NHTS",
"VESyntheticFirms",
"VESimHouseholds",
"VELandUse",
"VETransportSupply",
"VETransportSupplyUse",
"VEHouseholdTravel",
"VEHouseholdVehicles",
"VEPowertrainsAndFuels",
"VETravelPerformance",
"VEReports",
"VEScenario"
)
#Install the required VE framework package
cat("\nInstalling VE framework\n")
devtools::install_local(normalizePath(file.path(destdir, "sources", "framework", VE_framework)),
force=TRUE)
#Download and install the required VE modules for VERPAT and VERSPM
for(module in VE_modules){
cat(paste("\nInstalling Module:", module,"\n"))
devtools::install_local(normalizePath(file.path(destdir, "sources", "modules", module)), force=TRUE)
if(!module %in% rownames(installed.packages())){
stop(paste0(module, " cannot be installed."))
}
}
#Install complete
cat("\nInstall complete. All required VE packages installed at: \n")
for (folder in .libPaths()) {
cat(paste0(folder,"\n"))
}