diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toolfactory/install_tf_deps.sh	Thu Feb 22 10:48:01 2024 +0000
@@ -0,0 +1,17 @@
+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
+
+
+