forked from ablab/quast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install_full.sh
executable file
·66 lines (62 loc) · 2.57 KB
/
install_full.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
############################################################################
# Copyright (c) 2015-2017 Saint Petersburg State University
# Copyright (c) 2011-2015 Saint Petersburg Academic University
# All Rights Reserved
# See file LICENSE for details.
############################################################################
# installs general QUAST pipeline, general MetaQUAST pipeline,
# and MetaQUAST for de novo datasets (without references)
quast_home=$(dirname "$0")
stdout_log_fname=$quast_home/install_log.stdout
echo "Starting QUAST test... (stdout redirected to $stdout_log_fname)"
echo "" > $stdout_log_fname
echo "Starting QUAST test" >> $stdout_log_fname
$quast_home/quast.py --test >> $stdout_log_fname
return_code=$?
if [ $return_code -ne 0 ]; then
echo 'ERROR! QUAST TEST FAILED!'
exit 1
fi
echo "Starting MetaQUAST test... (stdout redirected to $stdout_log_fname)"
echo "" >> $stdout_log_fname
echo "Starting MetaQUAST test" >> $stdout_log_fname
$quast_home/metaquast.py --test >> $stdout_log_fname
return_code=$?
if [ $return_code -ne 0 ]; then
echo 'ERROR! METAQUAST TEST FAILED!'
exit 1
fi
echo "Starting QUAST test with structural variants detection... (stdout redirected to $stdout_log_fname)"
echo "" >> $stdout_log_fname
echo "Starting QUAST test with structural variants detection" >> $stdout_log_fname
$quast_home/quast.py --test-sv >> $stdout_log_fname
return_code=$?
if [ $return_code -ne 0 ]; then
echo 'ERROR! QUAST TEST WITH STRUCTURAL VARIANTS DETECTION FAILED!'
echo 'However, the lightweight version of QUAST was installed successfully!'
exit 1
fi
echo "Starting MetaQUAST test without references... (stdout redirected to $stdout_log_fname)"
echo "" >> $stdout_log_fname
echo "Starting MetaQUAST test without references" >> $stdout_log_fname
$quast_home/metaquast.py --test-no-ref --fast >> $stdout_log_fname
return_code=$?
if [ $return_code -ne 0 ]; then
echo 'ERROR! METAQUAST TEST WITHOUT REFERENCES FAILED!'
echo 'However, the lightweight version of QUAST was installed successfully!'
exit 1
fi
echo "Starting QUAST test with GAGE mode... (stdout redirected to $stdout_log_fname)"
echo "" >> $stdout_log_fname
echo "Starting QUAST test with GAGE mode" >> $stdout_log_fname
$quast_home/quast.py --test --fast --gage >> $stdout_log_fname
return_code=$?
if [ $return_code -ne 0 ]; then
echo 'ERROR! QUAST TEST WITH GAGE MODE FAILED!'
echo 'However, the rest functionality of QUAST was installed successfully!'
echo 'Do not worry so much: GAGE mode will be deprecated soon!'
exit 1
fi
echo 'QUAST INSTALLED SUCCESSFULLY!'
exit 0