-
Notifications
You must be signed in to change notification settings - Fork 284
/
Copy pathinstall_kraken2.sh
executable file
·59 lines (50 loc) · 1.36 KB
/
install_kraken2.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
#!/bin/sh
# Copyright 2013-2023, Derrick Wood <[email protected]>
#
# This file is part of the Kraken 2 taxonomic sequence classification system.
set -e
SCRIPT="$(realpath "$0")"
ROOT=$(dirname "$SCRIPT")
VERSION="$(cat "$ROOT/VERSION")"
cd "$ROOT"
if [ -z "$1" ] || [ -n "$2" ]
then
echo "Usage: $(basename "$SCRIPT") KRAKEN2_DIR"
exit 64
fi
if [ "$1" = "KRAKEN2_DIR" ]
then
echo "Please replace \"KRAKEN2_DIR\" with the name of the directory"
echo "that you want to install Kraken 2 in."
exit 1
fi
# Perl cmd used to canonicalize dirname - "readlink -f" doesn't work
# on OS X.
export KRAKEN2_DIR
KRAKEN2_DIR=$(perl -MCwd=abs_path -le 'print abs_path(shift)' "$1")
mkdir -p "$KRAKEN2_DIR"
make -C src install
for file in scripts/*
do
destination_file="$KRAKEN2_DIR/$(basename "$file")"
perl -pl -e 'BEGIN { while (@ARGV) { $_ = shift; ($k,$v) = split /=/, $_, 2; $H{$k} = $v } }'\
-e 's/#####=(\w+)=#####/$H{$1}/g' \
"KRAKEN2_DIR=$KRAKEN2_DIR" "VERSION=$VERSION" \
< "$file" > "$destination_file"
if [ -x "$file" ]
then
chmod +x "$destination_file"
fi
done
echo
echo "Kraken 2 installation complete."
echo
echo "To make things easier for you, you may want to copy/symlink the following"
echo "files into a directory in your PATH:"
for file in "$KRAKEN2_DIR"/kraken2*
do
if [ -x "$file" ]
then
echo " $file"
fi
done