Skip Menu |

This queue is for tickets about the go-perl CPAN distribution.

Report information
The Basics
Id: 57994
Status: open
Priority: 0/
Queue: go-perl

People
Owner: Nobody in particular
Requestors: hsk [...] fli-leibniz.de
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.10
  • 0.11
Fixed in: (no value)



Subject: bug in obo_text_parser
in release 0.10, $ISOFORM was added to the initialization of @COLS, but the upper index at the declaration was not increased, so it was ignored. fixing this, subtest 4 of t/t070parseannot2obj.t results in 86 (as it used to :-) --- GO/Parsers/go_assoc_parser.pm 2010-05-14 03:29:05.000000000 +0200 +++ GO/Parsers/go_assoc_parser.pm 2010-05-31 15:47:48.992474420 +0200 @@ -94,7 +94,7 @@ my $obo_parser; # an OBO parser may be required for parsing the PROPERTIES column - my @COLS = (0..15); + my @COLS = (0..16); my ($PRODDB, $PRODACC, $PRODSYMBOL, --- t/t070parseannot2obj.t 2010-05-12 21:16:49.000000000 +0200 +++ t/t070parseannot2obj.t 2010-05-31 15:58:28.856165622 +0200 @@ -65,7 +65,7 @@ my $term = $graph->get_term('GO:0003673'); ok(!@{$term->association_list || []}); printf "annots: %d\n", scalar @{$graph->deep_association_list('GO:0003673')}; -ok(@{$graph->deep_association_list('GO:0003673')} == 100); +ok(@{$graph->deep_association_list('GO:0003673')} == 86); #ok(@{$term->deep_association_list} == 86); my $prods = $graph->deep_product_list($term->acc);
Subject: bug in go_assoc_parser
From: hsk [...] fli-leibniz.de
ahh, well, the subject line should have been "bug in go_assoc_parser'
Thanks!! fixed in svn. Do you need a CPAN release promptly?
From: hsk [...] fli-leibniz.de
On Mon May 31 15:17:05 2010, CMUNGALL wrote: Show quoted text
> fixed in svn. Do you need a CPAN release promptly?
well, no, as for my installation it is fixed :-) as i am no biologist i cannot judge the impact of the described error. my intent was just (as with the other bug report i submitted) to get a silent "make test" with perl5.12, where the bug shows up with lots of "use of uninitialised" warnings thanks for your fast reply