Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
        my @pieces = split /\s+/;
    ...
        $results{$id} = [] unless exists $results{$id};
        push @{$results{$id}}, $seq;
    }
    
  2. or download this
     $results{$id} = [] unless exists $results{$id};