Mercurial > repos > gbcs-embl-heidelberg > je_markdupes
view je @ 4:384b972e43bc draft
planemo upload for repository https://git.embl.de/grp-gbcs/Je/tree/master/src/galaxy commit 1c7680ac36888721d2c0b72f4e6d27415fe07b43
author | gbcs-embl-heidelberg |
---|---|
date | Tue, 01 Aug 2017 03:43:03 -0400 |
parents | 4ccf1406832d |
children |
line wrap: on
line source
#!/bin/sh # Wrapper around je_1.1_bundle.jar # where are we stored ? DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # echo $DIR # path to jar file to execute, this jar is supposed to be in the same dir as this script JAR_FILE=$DIR"/je_1.2_bundle.jar" # set default _JAVA_OPTIONS _JAVA_OPTIONS=${_JAVA_OPTIONS:-'-Xmx4G -Xms256m'} export _JAVA_OPTIONS # uncomment to change logging level using your own log4j.xml found in $DIR file # OPTS="-Dlog4j.configuration=file:$DIR/log4j.xml" java $OPTS -jar $JAR_FILE "$@" exit $?