-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovision.dinochick.sh
58 lines (50 loc) · 1.4 KB
/
provision.dinochick.sh
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
#!/usr/bin/env bash
#basics
apt-get update
apt-get install -y zlib1g-dev
apt-get install -y bioperl
apt-get install -y git
apt-get install -y build-essential
apt-get install -y emacs23
apt-get install -y cpanminus
apt-get install -y ksh
apt-get install mysql-server
apt-get install mysql-client-core-5.5
#Needed for ZMap
apt-get install libreadline6 libreadline6-dev
apt-get install libmysqlclient-dev
apt-get install curl
apt-get install pkg-config
apt-get install glib-2.0
apt-get install gtk+-2.0
apt-get install libcurl4-openssl-dev
apt-get install sqlite
apt-get install libsqlite3-dev
cpanm -f DBI
#This is for Bio::DB::HTS
cpanm -f Module::Build
#These two are for the VEP
cpanm -f File::Copy::Recursive
cpanm -f Archive::Zip
#HTSlib
git clone https://github.com/samtools/htslib.git
cd htslib
make install
cd ..
#get Bio::DB::HTS installed - from GitHub
git clone https://github.com/Ensembl/Bio-HTS.git
cd Bio-HTS
perl Build.PL
./Build
./Build test
./Build install
cd ..
#Ensembl
mkdir ensembl-api
cd ensembl-api
git clone --depth 1 https://github.com/Ensembl/ensembl.git
git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-analysis.git
git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-pipeline.git
git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-variation.git
git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-funcgen.git
cd ..