Help for this page

Select Code to Download


  1. or download this
    my %hash;  # somewhere before you start to loop over the data
    ...
    # within the loop over your data
    ...
      label => $label,
    };
    $hash{$signature} = $structure;  # save it
    
  2. or download this
    for my $signature (keys %hash) {
      my $structure = $hash{$signature};
      printf "%s|%s\n%s\n%s\n",
    ...
          $structure->{sequence},
          $structure->{label};
    }