mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
Fix path to HYPHY in buildbot_setup.sh
This commit is contained in:
+15
-1
@@ -2,13 +2,22 @@
|
||||
|
||||
cd `dirname $0`
|
||||
|
||||
: ${HOSTTYPE:=`uname -m`}
|
||||
|
||||
# link to HYPHY is arch-dependent
|
||||
case "$OSTYPE" in
|
||||
linux-gnu)
|
||||
kernel=`uname -r | cut -f1,2 -d.`
|
||||
HYPHY="/galaxy/software/linux$kernel-$HOSTTYPE/hyphy"
|
||||
;;
|
||||
esac
|
||||
|
||||
LINKS="
|
||||
/depot/data2/galaxy/alignseq.loc
|
||||
/depot/data2/galaxy/binned_scores.loc
|
||||
/depot/data2/galaxy/blastdb.loc
|
||||
/depot/data2/galaxy/bowtie_indices.loc
|
||||
/depot/data2/galaxy/encode_datasets.loc
|
||||
/home/universe/linux-i686/HYPHY
|
||||
/depot/data2/galaxy/lastz_seqs.loc
|
||||
/depot/data2/galaxy/liftOver.loc
|
||||
/depot/data2/galaxy/maf_index.loc
|
||||
@@ -44,6 +53,11 @@ for link in $LINKS; do
|
||||
ln -sf $link tool-data
|
||||
done
|
||||
|
||||
if [ -d "$HYPHY" ]; then
|
||||
echo "Linking $HYPHY"
|
||||
ln -sf $HYPHY tool-data/HYPHY
|
||||
fi
|
||||
|
||||
for sample in $SAMPLES; do
|
||||
file=`echo $sample | sed -e 's/\.sample$//'`
|
||||
echo "Copying $sample to $file"
|
||||
|
||||
Reference in New Issue
Block a user