-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqualimap_on_NCI.txt
53 lines (42 loc) · 1.37 KB
/
qualimap_on_NCI.txt
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
wget https://bitbucket.org/kokonech/qualimap/downloads/qualimap_v2.2.1.zip
unzip qualimap_v2.2.1.zip
module load java/jdk1.8.0_60
module load R/3.4.0
##load modules to compile stuff in R
1) pbs 3) R/3.4.0 5) intel-cc/16.0.3.210 7) java/jdk1.8.0_60 9) bzip2/1.0.6 11) pcre/8.38 13) libtool/2.4.2
2) python3/3.5.2 4) intel-fc/16.0.3.210 6) intel-mkl/16.0.3.210 8) zlib/1.2.8 10) xz/5.2.2 12) curl/7.49.1
execute this in R
#installing deps
# CountsQC
if(!require("optparse")) {
install.packages("optparse", repos = "http://cran.r-project.org")
}
if(!require("NOISeq")) {
source("http://bioconductor.org/biocLite.R")
biocLite("NOISeq")
}
# Epigenetics
if(!require("XML")) {
install.packages("XML", repos = "http://cran.r-project.org")
}
if(!require("Repitools")) {
source("http://bioconductor.org/biocLite.R")
biocLite("Repitools")
}
if(!require("Rsamtools")) {
source("http://bioconductor.org/biocLite.R")
biocLite("Rsamtools")
}
if(!require("rtracklayer")) {
source("http://bioconductor.org/biocLite.R")
biocLite("rtracklayer")
}
Also install the following for Robs QC script
```
install.packages("ggplot2")
install.packages("viridis")
install.packages("reshape2")
install.packages("plyr")
install.packages("ggjoy")
install.packages("purrr")
```