-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall-dependencies.sh
executable file
·176 lines (162 loc) · 4.7 KB
/
install-dependencies.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#!/bin/bash
# check script was called correctly
INI=$1
if [ -z $INI ]; then
echo "Usage: './install-dependencies.sh <filename.ini>'\n";
exit 1
fi
# accept Microsoft EULA agreement without prompting
# view EULA at http://wwww.microsoft.com/typography/fontpack/eula.htm
debconf-set-selections <<< 'ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true'
# install most required packages using apt-get install
apt-get install -y \
mysql-server \
mysql-common \
mysql-client \
libmysqlclient*-dev \
libgdbm-dev \
libperl-dev \
libxml2-dev \
memcachedb \
libmemcached-dev \
libevent1-dev \
acedb-other-dotter \
make \
curl \
gcc \
php-gd \
freetype* \
libgd2-xpm-dev \
openssl \
libssl-dev \
graphviz \
libcurl4-openssl-dev \
ttf-mscorefonts-installer \
default-jre \
cpanminus \
vcftools
# install most required perl modules using cpanminus
cpanm Archive::Zip \
CGI::Session \
Class::Accessor \
CSS::Minifier \
DBI \
HTTP::Date \
Image::Size \
Inline IO::Scalar \
IO::Socket \
IO::Socket::INET \
IO::Socket::UNIX \
IO::String \
List::MoreUtils \
Mail::Mailer \
Math::Bezier \
MIME::Types \
PDF::API2 \
RTF::Writer \
Spreadsheet::WriteExcel \
Sys::Hostname::Long \
Text::ParseWords \
URI \
URI::Escape \
HTML::Template \
Clone \
Hash::Merge \
Class::DBI::Sweet \
Compress::Bzip2 \
Digest::MD5 \
File::Spec::Functions \
HTML::Entities \
IO::Uncompress::Bunzip2 \
XML::Parser \
XML::Simple \
XML::Writer \
SOAP::Lite \
GD \
GraphViz \
String::CRC32 \
Cache::Memcached::GetParser \
Inline::C \
XML::Atom \
LWP \
BSD::Resource \
WWW::Curl::Multi \
JSON \
Linux::Pid \
Readonly \
Module::Build \
Bio::Root::Build \
Lingua::EN::Inflect \
YAML \
Math::Round \
Rose::DB::Object::Manager \
Tree::DAG_Node \
Encode::Escape::ASCII \
IO::Unread \
Text::LevenshteinXS \
Math::SigFigs
# force install DBD::mysql as it will fail tests with default dbuser and password
cpanm --force DBD::mysql
# install the latest mod_perl-compatible version of apache2 (2.2 branch)
CURRENTDIR=`pwd`
cd /tmp
wget -q http://apache.mirror.anlx.net/httpd/CHANGES_2.2
APACHEVERSION=`grep "Changes with" CHANGES_2.2 | head -n 1 | cut -d" " -f 4`
wget -q http://apache.mirror.anlx.net/httpd/httpd-$APACHEVERSION.tar.gz
tar xzf httpd-$APACHEVERSION.tar.gz
cd httpd-$APACHEVERSION
./configure --with-included-apr --enable-deflate --enable-headers --enable-expires --enable-rewrite --enable-proxy
make
make install
cd $CURRENTDIR
# install the latest version of mod_perl
cd /tmp
wget -q -O tmp.html http://www.cpan.org/modules/by-module/Apache2/
MODPERLTAR=`grep -oP "mod_perl.*?tar" tmp.html | sort -Vr | head -n 1`
MODPERLVERSION=${MODPERLTAR%.*}
wget http://www.cpan.org/modules/by-module/Apache2/$MODPERLVERSION.tar.gz
tar xzf $MODPERLVERSION.tar.gz
cd $MODPERLVERSION/
perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs
make
make install
cd $CURRENTDIR
# install Tabix.pm
cd /tmp
git clone https://github.com/samtools/tabix
cd tabix/perl
perl Makefile.PL
make
make install
cd $CURRENTDIR
# install Htslib.pm
cd /tmp
git clone https://github.com/samtools/htslib
cd htslib
make
make install
cd $CURRENTDIR
# install Bio::DB::HTS::Tabix using cpanminus
cpanm Bio::DB::HTS::Tabix
# create symbolic link to perl binary in location referenced by ensembl scripts
ln -s /usr/bin/perl /usr/local/bin/perl
# create a directory for the ensembl code
SERVER_ROOT=$(awk -F "=" '/SERVER_ROOT/ {print $2}' $INI | tr -d ' ')
mkdir -p $SERVER_ROOT
# create user $WEB_USER_NAME if set
WEB_USER_NAME=$(awk -F "=" '/WEB_USER_NAME/ {print $2}' $INI | tr -d ' ')
WEB_USER_PASS=$(awk -F "=" '/WEB_USER_PASS/ {print $2}' $INI | tr -d ' ')
if ! [ -z $WEB_USER_NAME ]; then
addgroup $WEB_USER_NAME
adduser $WEB_USER_NAME \
--ingroup $WEB_USER_NAME \
--gecos "First Last,RoomNumber,WorkPhone,HomePhone" \
--disabled-password
echo "$WEB_USER_NAME:$WEB_USER_PASS" | chpasswd
# change ownership of $SERVER_ROOT to $WEB_USER_NAME
chown $WEB_USER_NAME:$WEB_USER_NAME $SERVER_ROOT
else
# change ownership of $SERVER_ROOT to $USER
ORIG_NAME=$(who am i | awk '{print $1}')
chown $ORIG_NAME:$ORIG_NAME $SERVER_ROOT
fi