Mercurial > repos > sanbi-uwc > trimmomatic
view package_trimmomatic.sh @ 5:069b6b601fad draft default tip
planemo upload for repository https://github.com/SANBI-SA/galaxy-tools/tree/master/tools/trimmomatic commit 779c2af9e413bd7098662231d07e6b857161f48d
author | sanbi-uwc |
---|---|
date | Mon, 23 Jan 2017 07:53:06 -0500 |
parents | 642a39a927c9 |
children |
line wrap: on
line source
#!/bin/sh # # Package Trimmomatic tool files into tgz file for upload to # Galaxy toolshed # TGZ=trimmomatic.tgz if [ -f $TGZ ] ; then echo $TGZ: already exists, please remove >&2 exit 1 fi tar cvzf $TGZ \ README.rst \ trimmomatic.xml \ trimmomatic_macros.xml \ tool_dependencies.xml \ test-data if [ -f $TGZ ] ; then echo Created $TGZ else echo Failed to created $TGZ >&2 exit 1 fi ## #