#!/bin/sh if test -z "$CIPRES_ROOT" then echo "The CIPRES_ROOT variable must be defined to set up your environment" else if test -f "$CIPRES_ROOT/bin/python" then PATH="$CIPRES_ROOT/bin:$PATH" export PATH fi pb="$CIPRES_ROOT/share/cipres/perl.bashrc" if test -f "$pb" then source "$pb" else echo "$pb not found! CIPRES perl modules may not be available." echo "Make sure that your CIPRES_ROOT variable is set correctly." fi pb="$CIPRES_ROOT/share/cipres/python.bashrc" if test -f "$pb" then source "$pb" else echo "$pb not found! CIPRES python modules may not be available." echo "Make sure that your CIPRES_ROOT variable is set correctly." fi fi