Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| #!/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 |