https://github.com/genome/genome
Raw File
Tip revision: 73e27ca5d5e8f5fd171a6dfbe84994138cb90740 authored by Avinash Ramu on 23 May 2014, 13:31:53 UTC
update clin-seq blessed - bamqc
Tip revision: 73e27ca
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