https://github.com/genome/genome
Raw File
Tip revision: 587ff67ab9eec76bdcc61e343955528bce739112 authored by Eddie Belter on 11 March 2015, 19:53:56 UTC
Merge pull request #553 from ebelter/genotype-concordance-users
Tip revision: 587ff67
test-env.sh
set -o nounset

SNAPSHOT_LIB="/gsc/scripts/opt/genome/current/user/lib/perl"
SNAPSHOT_BIN="/gsc/scripts/opt/genome/current/user/bin"

# remove /gsc/scripts/opt/genome/current/user/*
PERL5LIB="$(echo $PERL5LIB | tr : "\n" | grep -v "$SNAPSHOT_LIB" | tr '\n' : | sed 's/:$//')"
PATH="$(echo $PATH | tr : "\n" | grep -v "$SNAPSHOT_BIN" | tr '\n' : | sed 's/:$//')"

PERL5LIB=$WORKSPACE/ur/lib:$PERL5LIB
PATH=$WORKSPACE/ur/bin:$PATH

PERL5LIB=$WORKSPACE/workflow/lib:$PERL5LIB
PATH=$WORKSPACE/workflow/bin:$PATH

PERL5LIB=$WORKSPACE/lib/perl:$PERL5LIB
PATH=$WORKSPACE/bin:$PATH

export PERL5LIB
export PATH

set +o nounset

for MODULE in UR Workflow Genome; do
    if wtf $MODULE | grep -q "$SNAPSHOT_LIB"; then echo "$MODULE found in $SNAPSHOT_LIB! Aborting!" && exit 1; fi
done

for BIN in ur workflow genome; do
    if which $BIN | grep -q "$SNAPSHOT_BIN"; then echo "$BIN found in $SNAPSHOT_BIN! Aborting!" && exit 1; fi
done
back to top