-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
55 lines (33 loc) · 760 Bytes
/
Copy pathinstall.sh
File metadata and controls
55 lines (33 loc) · 760 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
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
#!/bin/bash
dir=$(echo "${0%/*}")
echo "_______________________"
echo "Extracting the zip file "
echo "_______________________"
echo
gunzip Model/*.gz
cd $dir/Scripts
tar -xvf iLearn.tar
tar -xvf libsvm-3.22.tar
tar -xvf TransDecoder-3.0.1.tar
rm *.tar
cd ..
cd $dir/Scripts/libsvm-3.22
echo
echo "___________________"
echo "libSVM compilling"
echo "___________________"
echo
make clean &> /dev/null
make &> /dev/null
echo
echo "_______________________"
echo "Transdecoder installing"
echo "_______________________"
echo
cd $dir/Scripts/TransDecoder-3.0.1
make clean &> /dev/null
make &> /dev/null
cd ..
chmod 777 $dir/Intell_Pred
chmod 777 -R $dir/Scripts $dir/Scripts/TransDecoder-3.0.1 $dir/Scripts/libsvm-3.22
echo