#!/usr/bin/perl =head1 NAME extropy -- A system to organize genome features =head1 SYNOPSIS extropy =head1 DESCRIPTION This is a menu-driven system to obtain and manipulate genome data from FPC files and other sources. Just start "extropy" and follow the directions. Programmers: search the source code for "PROG" for changes that you may need to make on your system. =head1 VERSION 0.001 (last update, 6/30/04) =head1 AUTHOR Chet Langin, clangin@siu.edu SIU Plant Biotechnology and Genomics Core-facility =head1 BUGS None known. =head1 SEE ALSO Extropy::MenuMain =head1 COPYRIGHT This program is free software. You may copy or redistribute it under the same terms as Perl itself. =cut # load the pragmas use warnings; use strict; use lib "$ENV{HOME}/gbrowse/round4/Extropy"; # -- PROG: Change the above directory to where the extropy library files # are located in your system. no lib "."; # load other modules use Extropy::MenuMain; # run the Main_Menu object MenuMain -> run; @INC = @lib::ORIG_INC;