view deploy.sh @ 2:865589023a17 draft

planemo upload for repository https://github.com/bardin-lab/readtagger/tree/master/galaxy commit ca94ae0d3a25a511f7d2c98712efc37b332642e7
author mvdbeek
date Fri, 17 Feb 2017 12:24:49 -0500
parents 815e4eea0e1d
children e68a225983d5
line wrap: on
line source

#!/bin/bash
# this script uploads galaxy tools in the current directory to the galaxy toolsheds
set -e

CURRENT_DIR=$(dirname $0)

echo "Installing planemo ... again"
pip install planemo

echo "Deploying to Testtoolshed ..."
planemo shed_update -r --force_repository_creation -t testtoolshed --shed_key_from_env TTS_KEY "$CURRENT_DIR"

echo "Deploying to Toolshed ..."
planemo shed_update -r --force_repository_creation -t toolshed --shed_key_from_env TS_KEY $CURRENT_DIR

echo "Successfully deployed to toolsheds"
exit 0