forked from OpenTreeOfLife/germinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_otu.sh
executable file
·125 lines (106 loc) · 3.33 KB
/
setup_otu.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
JAVAFLAGS="-Xmx30G"
HELPTEXT="usage:\nsetup_otu.sh <options>\\n\\t[--clean-db]\n\t[--test] (not yet)\n\t[--force]\n\t[--update-otu]\n\t[--recompile-plugin]\n\t[--restart-neo4j]\n\t[--start-otu]\n\t[--open-otu]\n\t[-prefix <path>]\n\n"
while [ $# -gt 0 ]; do
case "$1" in
--clean-db) CLEANDB=true;;
--test) TEST=true;;
--force) FORCE=true;;
--update-otu) UPDATE=true;;
--recompile-plugin) RECOMPILE=true;;
--restart-neo4j) RESTART_NEO4J=true;;
--start-otu) START_OTU=true;;
--open-otu) OPEN_OTU=true;;
-prefix) shift; PREFIX="$1";;
--help) printf "$HELPTEXT"; exit 0;;
*) printf "\nunrecognized argument: $1.\n"; printf "$HELPTEXT"; exit 1;
esac
shift
done
if [ ! $PREFIX ]; then
PREFIX="$HOME/phylo" # should fix the taxomachine script to put slashes in when dirs are appended
if [ ! $FORCE ]; then
printf "\nprefix is not set. the default prefix $PREFIX will be used. continue? y/n:"
while [ true ]; do
read RESP
case "$RESP" in
n) exit;;
y) break;;
*) printf "unrecognized input. uze ^C to exit script";;
esac
done
fi
fi
if [ ! -d $PREFIX ]; then
mkdir $PREFIX
fi
cd $PREFIX
PREFIX=$(pwd)
printf "\nworking at prefix $PREFIX\n"
OSTYPE=$(uname -msr)
if echo $OSTYPE | grep "Linux" ; then
LINUX=true
elif echo $OSTYPE | grep "darwin" ; then
MAC=true
fi
OTU_NEO4J_HOME="$PREFIX/neo4j-community-1.9.3-otu"
OTU_NEO4J_DAEMON="$OTU_NEO4J_HOME/bin/neo4j"
# download neo4j if necessary
if [ ! -d $OTU_NEO4J_HOME ]; then
cd "$HOME/Downloads"
wget "http://download.neo4j.org/artifact?edition=community&version=1.9.3&distribution=tarball&dlid=2600508"
tar -xvf "artifact?edition=community&version=1.9.3&distribution=tarball&dlid=2600508"
printf "\ninstalling neo4j instance for otu at: $OTU_NEO4J_HOME\n"
mv neo4j-community-1.9.3 $OTU_NEO4J_HOME
fi
printf "\nusing neo4j instance for otu at: $OTU_NEO4J_HOME\n"
### need to install git if not already present
### need to install maven if not already present
cd $PREFIX
OTU_HOME="$PREFIX/otu"
# clone the otu repo if necessary
if [ ! -d $OTU_HOME ]; then
printf "\ninstalling otu at: $OTU_HOME\n"
git clone [email protected]:FePhyFoFum/otu.git
fi
if [ $UPDATE ]; then
printf "\ngetting latest updates from github master\n"
cd $OTU_HOME
git pull origin master
fi
printf "\nusing otu at: $OTU_HOME\n"
cd $OTU_HOME
OTU_PLUGIN_INSTALL_LOC="$OTU_NEO4J_HOME/plugins/otu-0.0.1-SNAPSHOT.jar"
#echo $OTU_PLUGIN_INSTALL_LOC
#exit
# remove previous plugin if requested
if [ $RECOMPILE ] || [ $UPDATE ]; then
rm -Rf $OTU_PLUGIN_INSTALL_LOC
fi
# recompile plugin if necessary
if [ ! -f $OTU_PLUGIN_INSTALL_LOC ]; then
./mvn_serverplugins.sh
mv target/otu-0.0.1-SNAPSHOT.jar $OTU_PLUGIN_INSTALL_LOC
fi
OTU_DB="$OTU_NEO4J_HOME/data/graph.db"
if [ $CLEANDB ]; then
printf "\nremoving the existing database at: $OTU_DB\n"
rm -Rf $OTU_DB
fi
if [ $RESTART_NEO4J ]; then
# start the neo4j. cannot have other running neo4j instances or this will fail!
$OTU_NEO4J_DAEMON restart
fi
if [ $OPEN_OTU ]; then
# open the tool in the web browser
OTU_URL="http://localhost:8000/"
if [ $LINUX ]; then
xdg-open "$OTU_URL"
elif [ $MAC ]; then
open "$OTU_URL"
fi
fi
if [ $START_OTU ]; then
# start the webserver (from the views directory -- this is important for redirects)
cd "$OTU_HOME/views"
./server.py
fi