in reply to Re^7: problems with flip flop
in thread problems with flip flop

Okay, several hours later and I have no idea where the problem is!

Replies are listed 'Best First'.
Re^9: problems with flip flop
by bio25 (Initiate) on Aug 19, 2011 at 10:37 UTC

    Forget about it. Flip-Flop was okay, just replaced

    while ( ($GeneID, $BMB) = each %hash) { print "$GeneID => $BMB[0]\n";

    with

    foreach my $key (keys %hash) { foreach my $val (@{$hash{$key}}) { print "$key --> $val\n";

    and now everything is fine. Thanks for the help