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

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