Help for this page

Select Code to Download


  1. or download this
    while ( ($GeneID, $BMB) = each %hash) {
    print "$GeneID => $BMB[0]\n";
    
  2. or download this
    foreach my $key (keys %hash) {
        foreach my $val (@{$hash{$key}}) {
            print "$key --> $val\n";