-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathinstallation_Linux.sh
More file actions
24 lines (18 loc) · 971 Bytes
/
installation_Linux.sh
File metadata and controls
24 lines (18 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#Before downloading CancerDiscover, make sure you have all the necessary software packages installed.
#Downloading CancerDiscover
#Clone the git repository:
git clone https://github.com/HelikarLab/CancerDiscover.git && cd CancerDiscover
sudo apt-get update
sudo apt-get install -y r-base wget gcc bc
sudo curl -L http://xrl.us/installperlnix | bash
#Installing WEKA
#This project utilizes WEKA 3-6-11. execute the following command:
wget https://sourceforge.net/projects/weka/files/weka-3-6/3.6.11/weka-3-6-11.zip
unzip weka-3-6-11.zip
#Next, set the WEKA classpath by entering the following command in .bashrc file under Alias definitions:
#export WEKAINSTALL=/absolute/path/to/weka/directory/`
#export CLASSPATH=$CLASSPATH:$WEKAINSTALL/weka.jar
#Installing Bioconductor, Affy, AnnotationDbi, and hgu133plus2cdf
wget -q https://raw.githubusercontent.com/HelikarLab/CancerDiscover/master/Bioconductor_installation.R
Rscript Bioconductor_installation.R