package SBEAMS::Glycopeptide::Settings; ############################################################################### # Program : SBEAMS::Glycopeptide::Settings # Author : Eric Deutsch # $Id: Settings.pm 954 2003-01-22 19:53:38Z edeutsch $ # # Description : This is part of the SBEAMS::Glycopeptide module which handles # setting location-dependant variables. # ############################################################################### use strict; #### Begin with the main Settings.pm use SBEAMS::Connection::Settings; #### Set up new variables use vars qw(@ISA @EXPORT $SBEAMS_PART ); require Exporter; @ISA = qw (Exporter); @EXPORT = qw ( $SBEAMS_PART ); #### Define new variables $SBEAMS_PART = 'Glycopeptide'; #### Override variables from main Settings.pm $SBEAMS_SUBDIR = 'Glycopeptide';