view package_trimmomatic.sh @ 3:f6cb99d6afd3 draft

planemo upload for repository https://github.com/SANBI-SA/galaxy-tools/tree/master/tools/trimmomatic commit 213668d2e5a61c806ad992c201ae6e304c6e0965-dirty
author sanbi-uwc
date Mon, 23 Jan 2017 06:31:29 -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
##
#