mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Removed non-arch specific cheetah egg, since compiled c code (once located in arch) is included in arch specific eggs. Removed a tool called basicStats2, which used arch, but hasn't been in tool_conf.xml for some time.
21 lines
642 B
Bash
21 lines
642 B
Bash
#!/bin/sh
|
|
|
|
## Set MACHTYPE to something,
|
|
MACHTYPE=`uname -m`
|
|
if [[ $MACHTYPE = "Power Macintosh" ]]; then MACHTYPE="powerpc"; fi
|
|
export MACHTYPE
|
|
export LC_ALL=POSIX
|
|
|
|
KERNEL=`uname -s | tr "A-Z" "a-z"`
|
|
ARCH="$KERNEL-$MACHTYPE"
|
|
|
|
echo "Architecture appears to be $ARCH"
|
|
|
|
export UNIVERSE_HOME=`pwd`
|
|
export PATH=$PATH:/depot/apps/$MACHTYPE/bin:/home/universe/$ARCH/EMBOSS/EMBOSS-3.0.0/bin:/home/universe/$ARCH/EMBOSS/bin:/home/universe/$ARCH/ImageMagick/bin:/home/universe/$ARCH/PAML/paml3.15/bin
|
|
export PYTHONPATH=$UNIVERSE_HOME/lib:$UNIVERSE_HOME/eggs
|
|
|
|
echo "python path: $PYTHONPATH"
|
|
|
|
python2.4 ./scripts/paster.py serve universe_wsgi.ini $@
|