#!/bin/bash
#
# Script for backward compatability with BIRCH 2.7 and
# earlier. Tells user that 'biolegato' has been deprecated
# in favor of 'bldna' and 'blprotein'.


if [ ! -z `which zenity` ]
then
     zenity --text-info --width=600 --height=300 --title='*** bioLegato has been reorganized ***' --filename=$birch/script/biolegato.msg &
else
     cat $BIRCH/script/biolegato.msg
fi

