comparison toolfactory/install_tf_deps.sh @ 1:0183cad9d13b draft

planemo upload
author fubar
date Thu, 22 Feb 2024 10:48:01 +0000
parents
children
comparison
equal deleted inserted replaced
0:2beaae16651e 1:0183cad9d13b
1 LOCALTOOLDIR="/home/ross/rossgit/galaxytf231/local_tools"
2 APIK="1718977735397126400"
3 GAL="http://localhost:8080"
4 # all unless a single id is passed in as $1
5 if [ -z "$1" ]; then
6 for f in $LOCALTOOLDIR/*; do
7 if [ -d "$f" ]; then
8 TOOL=`basename "$f"`
9 install_tool_deps -v -g $GAL -a $APIK -t $LOCALTOOLDIR/$TOOL/$TOOL.xml
10 fi
11 done
12 else
13 install_tool_deps -v -g $GAL -a $APIK -t $LOCALTOOLDIR/$1/$1.xml
14 fi
15
16
17