File: bowtie2-hbb.sh

package info (click to toggle)
bowtie2 2.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 27,492 kB
  • sloc: cpp: 63,838; perl: 7,232; sh: 1,131; python: 987; makefile: 541; ansic: 122
file content (68 lines) | stat: -rwxr-xr-x 1,462 bytes parent folder | download | duplicates (2)
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
#!/bin/bash

set -e

while getopts "sb:" opt; do
    case $opt in
        s) use_sra=1 ;;
        b) branch="$OPTARG" ;;
        *) echo "Usage: $0 [-s] [-b <branch_name>]" && exit 1
    esac
done
shift $(($OPTIND - 1))

if [ "$branch" == "" ] ; then
    branch="master"
fi

set -x
yum install -y git zip unzip pandoc

git clone --recursive https://github.com/BenLangmead/bowtie2.git
if [ $? -ne 0 ] ; then
    echo "Unable to clone bowtie2 repo"
    exit 1
fi

cd bowtie2

git branch -a | grep "$branch" 2>&1 > /dev/null
if [ $? -ne 0 ] ; then
    echo "branch '$branch' does not exist"
    exit 1
else
     git checkout "$branch"
fi

if [ $use_sra -eq 1 ] ; then
    # this variant is needed to compile ncbi-vdb
    source /hbb/activate
    yum install -y java-1.8.0-openjdk-devel.$(uname -m)
    make sra-deps
fi

# this variant creates static binaries with PIC
source /hbb_exe_gc_hardened/activate

# this version of pandoc does not support 'smart' filters
sed -i 's/-smart//' Makefile

make static-libs
if [ $? -ne 0 ] ; then
    echo "Unable to build tbb and/or zlib static dependencies"
    exit 1
fi

make bowtie2-bin-pkg STATIC_BUILD=1 WITH_ZSTD=1 USE_SRA=$use_sra
if [ $? -ne 0 ] ; then
    echo "Unable to create bowtie2 package"
    exit 1
fi
echo "Running libcheck..."
libcheck bowtie2-{align,build,inspect}-*

echo "Running hardening check..."
hardening-check -b bowtie2-{align,build,inspect}-*

echo "Copying binary package"
cp /bowtie2/*.zip /io