-
Notifications
You must be signed in to change notification settings - Fork 2
/
install.sh
executable file
·66 lines (59 loc) · 1.17 KB
/
install.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
#!/bin/bash
# Local Alignment Kernel
echo =================================
echo installing Local Alignment Kernel
echo =================================
cd lib/LAKernel/
make clean
make
cd ../..
# Mismatch Kernel
echo ==========================
echo installing Mismatch Kernel
echo ==========================
cd lib/MismatchKernel/src
make clean
make
cd ../../..
# PSIPRED
echo ==================
echo installing PSIPRED
echo ==================
cd lib/PSIPRED/src
make clean
make
make install
cd ../../..
# MoSta
echo ================
echo installing MoSta
echo ================
cd lib/MoSta/code
make clean
make all
cd ../../..
# GNU Scientific Library
echo ==============
echo installing GSL
echo ==============
cd lib/GSL/
tar -xzvf gsl-1.10.tar.gz
cd gsl-1.10
./configure --disable-shared --prefix=`pwd`
make
make install
cd ../..
# STAMP
echo ================
echo installing STAMP
echo ================
export INSTALLDIR=`pwd`
cd STAMP/code
./compileSTAMP $INSTALLDIR
cd ../../..
# Hint: validate installation
echo =====================
echo Installation finished
echo =====================
echo You can validate your installation by using the command:
echo sh sabine.sh --check-install