Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

perl bioperl version

3 views
Skip to first unread message

Lella Sana

unread,
Feb 21, 2011, 6:28:51 AM2/21/11
to
Hi All,
I'm using a perl script with Bioperl /Bio::DB::Sam object but it runs
differently on two server on which there are two different perl
version (5.8.8 and 5.10.1 respectively). On the first machine on which
there is the 5.8.8 perl version, the script runs correctly, on the
second it doesn't return errors but doesn't work perfectly. Any
elucidation?
Thanx a lot

smallpond

unread,
Feb 21, 2011, 7:09:52 PM2/21/11
to

What you want to run on the 5.10.1 system is:
perldoc perldelta

This will tell you the differences between the current perl and
previous versions.
Most likely the code is doing something iffy or unsupported. Perhaps
you have a
sub named "say", for example or use the $# variable.

You should also check perl -V output on both systems to see if Perl
was
built with the same options.

The Bio::DB::Sam module source should include test code which can be
run as
part of the build process to verify that it works correctly. How
complete the
test code is depends on the developers of the module, but you may be
able to
add test cases of interest.

0 new messages