-
Notifications
You must be signed in to change notification settings - Fork 138
/
spades_compile.sh
executable file
·246 lines (215 loc) · 6.53 KB
/
spades_compile.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/bin/bash
############################################################################
# Copyright (c) 2023-2024 SPAdes team
# Copyright (c) 2015-2022 Saint Petersburg State University
# Copyright (c) 2011-2014 Saint Petersburg Academic University
# All Rights Reserved
# See file LICENSE for details.
############################################################################
set -e
if [ "x$PREFIX" = "x" ]; then
PREFIX="$(pwd)"
fi
# [misprint detecting] uncomment to check whether all of the used variables is initialized
# set -u
# default values
DEBUG="n"
RUN_TESTS="n"
BUILD_INTERNAL="n"
AMOUNT_OF_THREADS="8"
REMOVE_BUILD_DIR_BEFORE_BUILDING="n"
ADDITIONAL_FLAGS=
BUILD_CONFIG_NAME="build_config"
## there are some helpful functions ##
# https://stackoverflow.com/a/16444570
check_whether_OPTARG_is_an_integer() {
case $OPTARG in
(*[!0-9]*|'') echo "The argument for -j option must be an integer"; exit 2;;
(*) ;; # an integer
esac
}
# return the argument first character
str_head() { echo "$(expr substr "$1" 1 1)"; }
# return the argument without the first character
str_tail() { echo "$(expr substr "$1" 2 $((${#1}-1)))"; }
print_help() {
echo
echo "usage:"
echo " $0 [options]"
echo
echo "options:"
echo " -a, --all build internal projects"
echo " -d, --debug use debug build"
echo " -t, --test run basic tests (with -a runs all tests)"
echo " -r, --remove remove the build directory before rebuilding"
echo " -j <int> amount of threads"
echo " -h, --help print this help"
echo
echo " Any other options will be passed to the cmake!"
echo
echo "examples:"
echo " - build SPAdes with internal projects and run all tests, use 15 threads"
echo " $0 -atj15"
echo
echo " - build SPAdes and run basic tests, use 9 threads"
echo " $0 -j 9 -t"
}
opt_a() { BUILD_INTERNAL="y"; }
opt_d() { DEBUG="y"; }
opt_t() { RUN_TESTS="y"; }
opt_r() { REMOVE_BUILD_DIR_BEFORE_BUILDING="y"; }
opt_h() { print_help; exit 0; }
opt_j() { check_whether_OPTARG_is_an_integer; AMOUNT_OF_THREADS=$OPTARG; skip_next_iter="y"; }
unknown_opt() { ADDITIONAL_FLAGS="$ADDITIONAL_FLAGS $opt"; }
parse_long_arg() {
case "$1" in
(all) opt_a;;
(debug) opt_d;;
(test) opt_t;;
(remove) opt_r;;
(help) opt_h;;
(*) unknown_opt;; # unknown long argument
esac
}
# returns "ok" iff the arg contains only allowed characters
verify_short_args() {
if [ -z "$@" ]; then
# here the $1 length is zero
echo "ok"
else
# here the $1 length is non-zero
case "$(str_head "$1")" in
(a) echo "$(verify_short_args "$(str_tail "$1")")";;
(d) echo "$(verify_short_args "$(str_tail "$1")")";;
(t) echo "$(verify_short_args "$(str_tail "$1")")";;
(r) echo "$(verify_short_args "$(str_tail "$1")")";;
(h) echo "$(verify_short_args "$(str_tail "$1")")";;
(j) echo "ok";; # after 'j' there should be only <int>
(*) echo "fail";;
esac
fi
}
parse_short_args_handler() {
if [ -n "$@" ]; then
# here the $1 length is non-zero
case "$(str_head "$1")" in
(a) opt_a; parse_short_args_handler "$(str_tail "$1")";;
(d) opt_d; parse_short_args_handler "$(str_tail "$1")";;
(t) opt_t; parse_short_args_handler "$(str_tail "$1")";;
(r) opt_r; parse_short_args_handler "$(str_tail "$1")";;
(h) opt_h; parse_short_args_handler "$(str_tail "$1")";;
(j) OPTARG="$(str_tail "$1")"
if [ -z "$OPTARG" ]; then OPTARG="$next_opt"; fi
opt_j;;
(*) echo "WTF???"; exit 3;;
esac
fi
}
parse_short_args() {
if [ "$(verify_short_args "$1")" = "ok" ]; then
parse_short_args_handler "$1"
else
unknown_opt
fi
}
get_current_build_params() {
echo "$DEBUG $BASEDIR $ADDITIONAL_FLAGS"
}
read_buid_params() {
if [ -z "$1" ]; then
# there is no config folder path
exit 5
fi
config_path="$1"/"$BUILD_CONFIG_NAME"
if [ -e "$config_path" ]; then
echo "$(cat "$config_path")"
else
echo ""
fi
}
save_build_params() {
if [ -z "$1" ]; then
# there is no config folder path
exit 5
fi
config_path="$1"/"$BUILD_CONFIG_NAME"
echo "$(get_current_build_params)" > "$config_path"
}
normalize_path() {
current_path="$(pwd)"
cd "$1"
normalized_path="$(pwd)"
cd "$current_path"
echo "$normalized_path"
}
## the script's logic begins here ##
skip_next_iter="n"
opt=
for next_opt in "$@" ""; do
if [ $skip_next_iter != "n" ]; then
skip_next_iter="n"
opt="$next_opt"
continue
fi
if [ -n "$opt" ]; then
if [ "$(str_head "$opt")" != "-" ]; then
unknown_opt
else
opt_tail=$(str_tail "$opt")
if [ "$(str_head "$opt_tail")" = "-" ]; then
parse_long_arg "$(str_tail "$opt_tail")"
else
parse_short_args "$opt_tail"
fi
fi
fi
opt="$next_opt"
done
BUILD_DIR=build_spades
BASEDIR="$(normalize_path "$(pwd)"/"$(dirname "$0")")"
if [ $DEBUG = "y" ]; then
BUILD_DIR="${BUILD_DIR}_debug"
fi
WORK_DIR="$BASEDIR/$BUILD_DIR"
mkdir -p "$WORK_DIR"
set -e
last_build_params="$(read_buid_params "$WORK_DIR")"
if [ "$(get_current_build_params)" != "$last_build_params" ]; then
REMOVE_BUILD_DIR_BEFORE_BUILDING="y"
fi
if [ $REMOVE_BUILD_DIR_BEFORE_BUILDING = "y" ]; then
# we can't remove WORK_DIR itself, because it might be a symbolic link
# and we should not remove any ".*" files, because we didn't create them
rm -rf "${WORK_DIR:?}/"*
fi
save_build_params "$WORK_DIR"
if [ $DEBUG = "y" ]; then
ADDITIONAL_FLAGS="$ADDITIONAL_FLAGS -DCMAKE_BUILD_TYPE=Debug"
fi
if [ $BUILD_INTERNAL = "y" ]; then
ADDITIONAL_FLAGS="$ADDITIONAL_FLAGS -DSPADES_BUILD_INTERNAL=ON"
else
ADDITIONAL_FLAGS="$ADDITIONAL_FLAGS -DSPADES_BUILD_INTERNAL=OFF"
fi
cd "$WORK_DIR"
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$PREFIX" $ADDITIONAL_FLAGS "$BASEDIR/src"
make -j $AMOUNT_OF_THREADS
make install
cd "$PREFIX"
if [ $RUN_TESTS = "y" ]; then
cd "$BASEDIR"
if [ $BUILD_INTERNAL = "y" ]; then
"$WORK_DIR/bin/include_test" ; set -e
"$WORK_DIR/bin/debruijn_test" ; set -e
fi
SPADES="$BASEDIR"/spades.py
"$SPADES" -t $AMOUNT_OF_THREADS --test ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --isolate ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --sc ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --meta ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --bio ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --rna ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --plasmid ; set -e
"$SPADES" -t $AMOUNT_OF_THREADS --test --iontorrent ; set -e
cd "$PREFIX"
fi