-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.R
24 lines (16 loc) · 802 Bytes
/
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
install.packages("BiocManager")
BiocManager::install("Rbowtie2")
BiocManager::install("Rsamtools")
BiocManager::install("BBCAnalyzer")
install.packages("dplyr")
#source("https://bioconductor.org/biocLite.R")
#biocLite("VariantTools") #OR
BiocManager::install("VariantTools")
##If you are installing on local computer-
#devtools::install_github(repo="knausb/vcfR")
#For Mac- make sure "checkbashisms" is installed <https://brewinstall.org/install-checkbashisms-on-mac-with-brew/>
#For Windows- make sure "Rtools" is installed <https://cran.r-project.org/bin/windows/Rtools/>
install.packages("devtools")
devtools::install_github(repo="knausb/vcfR")
#install.packages("https://cran.r-project.org/src/contrib/Archive/vcfR/vcfR_1.11.0.tar.gz", repos = NULL, type="source")
install.packages("ape")