#!/bin/bash
source /etc/profile.d/modules.sh

module unload fastr
module unload python
module load fastr/3.1.2
module load sge

PYTHON_BIN=`which python`
echo "Using python from $PYTHON_BIN"
echo "PYTHONPATH=$PYTHONPATH"
$PYTHON_BIN "$@"
