#!/bin/csh if ($?CIPRES_ROOT == 0) then echo "The CIPRES_ROOT variable must be defined to set up your environment" else set pb="$CIPRES_ROOT/share/cipres/perl.cshrc" if (-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." endif set pb="$CIPRES_ROOT/share/cipres/python.cshrc" if (-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." endif endif