Mercurial > repos > mvdbeek > bam_readtagger
view deploy.sh @ 25:e200d6625766 draft
planemo upload for repository https://github.com/bardin-lab/readtagger/tree/master/galaxy commit 642c1c02e6edd4a62d515f5070b13e86f2a7e0e4
author | mvdbeek |
---|---|
date | Tue, 25 Apr 2017 14:54:00 -0400 |
parents | e68a225983d5 |
children |
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" # Would be great if the dependencies would persist in deployment mode 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