#!/bin/sh

# ---------------------------------------
# Script for executing ToXgene under Unix
# ---------------------------------------

# --------------------------------------------------
# MIN_HEAP defines the minimum heap size allocated to the java runtime
# redefine it according to your needs.
# --------------------------------------------------

MIN_HEAP=12800000000

java -Xmx$MIN_HEAP -classpath toxgene/toxgene.jar:xerces/xerces.jar toxgene.ToXgene $@
