-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild_options.sh
executable file
·257 lines (235 loc) · 6.64 KB
/
build_options.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
247
248
249
250
251
252
253
254
255
256
257
#!/bin/bash
# See the NOTICE file distributed with this work for additional information
# regarding copyright ownership.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Script for testing/installing various build configurations of Bio::DB::HTS
# $1 - clone command for Bio::DB::HTS from GitHub
# e.g. "git clone -b main https://github.com/Ensembl/Bio-DB-HTS.git"
# Set this to be an alternative clone command if required
# $2 - the test to be run, to match one of the options below
#
export PERL5LIB_ORIG=$PERL5LIB
#
# Tests the Build.PL with various options
#
if [ "$2" = "BUILD_SYSTEM_INSTALLED_HTSLIB" ]; then
echo Installs htslib, then runs Bio::DB::HTS Build process
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
cd ..
$1
cd Bio-DB-HTS
perl Build.PL
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_SYSTEM_INSTALL_ALL" ]; then
echo Installs htslib, then builds and installs Bio::DB::HTS
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
sudo ldconfig
cd ..
$1
cd Bio-DB-HTS
perl Build.PL
sudo ./Build install
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
if [ "$2" = "BUILD_LOCAL_INSTALLED_HTSLIB" ]; then
echo Installs htslib and Bio::DB::HTS to a local dir
echo Specifies htslib dir using --prefix
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make prefix=~/localsw install
export HTSLIB_DIR=
cd ..
$1
cd Bio-DB-HTS
perl Build.PL --prefix=~/localsw
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_HTSLIB_DIR_ENV" ]; then
echo Builds htslib, then runs Bio::DB::HTS Build process. Should run from this location.
echo Specifies htslib location with HTSLIB_DIR environment variable
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make
export HTSLIB_DIR="$PWD"
echo $HTSLIB_DIR
cd ..
$1
cd Bio-DB-HTS
perl Build.PL
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_HTSLIB_DIR_FLAG" ]; then
echo Makes htslib, then runs Bio::DB::HTS Build process
echo Specifies htslib location with --htslib flag
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make
export HTSLIB_DIR_FOR_FLAG="$PWD"
echo $HTSLIB_DIR_FOR_FLAG
cd ..
$1
cd Bio-DB-HTS
perl Build.PL --htslib=$HTSLIB_DIR_FOR_FLAG
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
#TODO Alien::HTSlib dependency resolver
#TODO pkg-config test
#Test the static option using the INSTALL_STATIC_FLAG option
#
#test the INSTALL.pl script with various options
#
if [ "$2" = "INSTALL_WITH_SYSTEM_HTSLIB" ]; then
echo INSTALL.pl with system install of htslib for running
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
sudo ldconfig
cd ..
$1
cd Bio-DB-HTS
perl INSTALL.pl
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
if [ "$2" = "INSTALL_WITH_OTHER_HTSLIB" ]; then
echo INSTALL.pl, with a htslib installed elsewhere for running
export LD_LIBRARY_PATH_ORIG=$LD_LIBRARY_PATH
git clone -b master --depth=1 https://github.com/samtools/htslib.git htslib_run_location
cd htslib_run_location
make
cd ..
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd -P)/htslib_run_location
$1
cd Bio-DB-HTS
perl INSTALL.pl
cd t
for f in $(ls *.t) ;
do
perl $f
done
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH_ORIG
echo "Completed $2"
exit 0
fi
if [ "$2" = "INSTALL_PREFIX_PATH" ]; then
echo INSTALL.pl with prefix at end of line
$1
cd Bio-DB-HTS
perl INSTALL.pl ~/prefix_path_test
export PERL5LIB=$PERL5LIB:~/prefix_path_test/lib/perl5/x86_64-linux-gnu-thread-multi/:~/prefix_path_test/lib/perl5/x86_64-linux-gnu-thread-multi/auto
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "INSTALL_PREFIX_FLAG" ]; then
echo INSTALL.pl with prefix at end of line
$1
cd Bio-DB-HTS
perl INSTALL.pl --prefix=~/prefix_flag_test
export PERL5LIB=$PERL5LIB:~/prefix_flag_test/lib/perl5/x86_64-linux-gnu-thread-multi/:~/prefix_flag_test/lib/perl5/x86_64-linux-gnu-thread-multi/auto
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "INSTALL_STATIC_FLAG" ]; then
echo INSTALL.pl with static option as flag
$1
cd Bio-DB-HTS
perl INSTALL.pl --static
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
if [ "$2" = "INSTALL_HTSLIB_VERSION" ]; then
echo INSTALL.pl built against a specific release of HTSlib
$1
cd Bio-DB-HTS
perl INSTALL.pl --htslib_version 1.3
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
echo Build test option $2 not found