view package_trimmomatic.sh @ 1:bbe75c52b300 draft

planemo upload for repository https://github.com/SANBI-SA/galaxy-tools/tree/master/tools/trimmomatic commit 0c8f6d302eafe1ee9fb8a2adac3fe37a8082628d
author sanbi-uwc
date Fri, 20 Jan 2017 08:57:21 -0500
parents d8975856862e
children 642a39a927c9
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.sh \
    tool_dependencies.xml \
    test-data
if [ -f $TGZ ] ; then
    echo Created $TGZ
else
    echo Failed to created $TGZ >&2
    exit 1
fi
##
#