view install_tool_deps.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 d8975856862e
children
line wrap: on
line source

#!/bin/bash
#
# Install dependencies for Trimmomatic for testing from the command line
#
# Installer functions
. $(dirname $0)/../../local_dependency_installers/trimmomatic.sh
# Installation directory
TOP_DIR=$1
if [ -z "$TOP_DIR" ] ; then
    echo Usage: $(basename $0) DIR
    exit
fi
if [ -z "$(echo $TOP_DIR | grep ^/)" ] ; then
    TOP_DIR=$(pwd)/$TOP_DIR
fi
if [ ! -d "$TOP_DIR" ] ; then
    mkdir -p $TOP_DIR
fi
# Trimmomatic 0.32
install_trimmomatic_0_36 $TOP_DIR
##
#