forked from DerrickWood/kraken2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_kraken2.sh
executable file
·53 lines (45 loc) · 1.24 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
#!/bin/bash
# Copyright 2013-2021, Derrick Wood <[email protected]>
#
# This file is part of the Kraken 2 taxonomic sequence classification system.
set -e
VERSION="2.1.2"
if [ -z "$1" ] || [ -n "$2" ]
then
echo "Usage: $(basename $0) 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=$(perl -MCwd=abs_path -le 'print abs_path(shift)' "$1")
mkdir -p "$KRAKEN2_DIR"
make -C src install
for file in scripts/*
do
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" > "$KRAKEN2_DIR/$(basename $file)"
if [ -x "$file" ]
then
chmod +x "$KRAKEN2_DIR/$(basename $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