Permalink
Fetching contributors…
Cannot retrieve contributors at this time
executable file 18 lines (15 sloc) 336 Bytes
#!/bin/bash
ARCH=`uname`.`uname -m`
case $0 in
./*) export PHYLOCSF_BASE=`pwd` ;;
* ) export PHYLOCSF_BASE=`dirname $0`
esac
EXE="$PHYLOCSF_BASE/bin/PhyloCSF.$ARCH"
if [ -f $EXE ]
then
export CAMOMILE_DIR="$PHYLOCSF_BASE/share/camomile"
chmod u+x $EXE
$EXE $@
else
echo "No executable available for architecture: $ARCH"
fi