-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.R
81 lines (80 loc) · 1.15 KB
/
packages.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
using<-function(...) {
libs<-unlist(list(...))
req<-unlist(lapply(libs,require,character.only=TRUE))
need<-libs[req==FALSE]
if(length(need)>0){
install.packages(need, repos='http://cran.rstudio.com/')
lapply(need,require,character.only=TRUE)
}
}
using ("ape",
"bit",
"bit64",
"clusterGeneration",
"coda",
"colorspace",
"combinat",
"crayon",
"crosstalk",
"data.table",
"DBI",
"digest",
"dplyr",
"DT",
"ellipsis",
"expm",
"farver",
"fastmap",
"fastmatch",
"generics",
"ggplot2",
"glue",
"gtable",
"gtools",
"hms",
"htmltools",
"htmlwidgets",
"httpuv",
"httr",
"igraph",
"jsonlite",
"labeling",
"later",
"lazyeval",
"lifecycle",
"magrittr",
"maps",
"mime",
"mnormt",
"munsell",
"numDeriv",
"phangorn",
"phytools",
"pillar",
"pkgconfig",
"plotly",
"plotrix",
"promises",
"purrr",
"quadprog",
"R6",
"Rcpp",
"rlang",
"RMariaDB",
"scales",
"scatterplot3d",
"sourcetools",
"tibble",
"tidyr",
"tidyselect",
"tidytree",
"tmvnsim",
"vctrs",
"viridisLite",
"withr",
"xtable"
)
using ("shinythemes")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager", repos='http://cran.rstudio.com/')
BiocManager::install("ggtree")