On Nov 3, 2004, at 12:31 AM, Moosmann, James wrote:
@INC is the path perl uses to find modules
add something like: #----begin BEGIN {
push @INC, "/usr/local/lib/perl5/site_perl/5.8.3/Bio/DB/GFF/Adaptor";
}
#----end
to the top of your script and perl should be able to find dbi, of course you
may have to add other paths if you get the same complaint from other
modules... you get the idea.
dbi.pm is not DBI.pm! The name of the modules should be case sensitive...
By the way if you look at the dbi.pm code you will find
...... use DBI; use Bio::DB::GFF; ......
This means that dbi.pm needs DBI.pm So you need to install DBI packages and the DBD packages in order to use your GFF database.
