annotate galaxy-conf/galaxyToolRunner.sh @ 12:81d5b81fb3c2
draft
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
author |
timpalpant |
date |
Wed, 25 Apr 2012 16:53:48 -0400 |
parents |
4b32ed5d4a1b |
children |
eb53be9a09f4 |
rev |
line source |
4
|
1 #!/usr/bin/env bash
|
|
2
|
|
3 if [ $# -eq 0 ]
|
|
4 then
|
|
5 echo "USAGE: galaxyToolRunner.sh APPNAME [ARGS]";
|
|
6 exit;
|
|
7 fi
|
|
8
|
|
9 if [ "$1" = "list" ]
|
|
10 then
|
|
11 find src/edu/unc/genomics/**/*.java -exec basename -s .java {} \;
|
|
12 fi
|
|
13
|
|
14 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
15 java -Dlog4j.configuration=log4j.properties -cp $DIR:$DIR/../build:$DIR/../dist/*:$DIR/../lib/* edu.unc.genomics."$@" |