Mercurial > repos > fubar > mashmap
view toolfactory/install_tf_deps.sh @ 1:0183cad9d13b draft
planemo upload
author | fubar |
---|---|
date | Thu, 22 Feb 2024 10:48:01 +0000 |
parents | |
children |
line wrap: on
line source
LOCALTOOLDIR="/home/ross/rossgit/galaxytf231/local_tools" APIK="1718977735397126400" GAL="http://localhost:8080" # all unless a single id is passed in as $1 if [ -z "$1" ]; then for f in $LOCALTOOLDIR/*; do if [ -d "$f" ]; then TOOL=`basename "$f"` install_tool_deps -v -g $GAL -a $APIK -t $LOCALTOOLDIR/$TOOL/$TOOL.xml fi done else install_tool_deps -v -g $GAL -a $APIK -t $LOCALTOOLDIR/$1/$1.xml fi