-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path00.install_packages.R
20 lines (16 loc) · 964 Bytes
/
00.install_packages.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
install.packages(c("tidyverse", "doParallel", "foreach", "iterators",
"devtools", "car", "bigmemory", "biganalytics",
"argparse", "Rcpp", "RcppEigen", "RcppParallel",
"BiocManager", "VennDiagram", "scales", "lawstat",
"readxl", "RColorBrewer", "scatterplot3d"))
### Software for Bayesian Finlay-Wilkinson regresssion
devtools::install_github("lian0090/FW")
### Parallelized, C++ version of FarmCPU for efficiency
devtools::install_github("amkusmec/FarmCPUpp")
### SOMMER has undergone major revisions since the publication of this paper.
### Use of the latest version will require major revision of the code to
### calculate additive genetic correlations.
devtools::install_version("sommer", version = "2.9",
repos = "http://cran.us.r-project.org")
BiocManager::install("qvalue", version = "3.8")
BiocManager::install("GenomicRanges", version = "3.8")