Help for this page

Select Code to Download


  1. or download this
    for my $href ( @AoH ) {
      for my $role ( sort keys %$href ) {
    ...
    + . "\n";
    }
    
  2. or download this
    for my $href ( @AoH ) {
      for my $key ( sort keys %$href ){
    ...
        $index += 3 while ( ($index + 3) < $href->{$key} );
        print "$key $href->{$key} " . substr($sequences{$key}, $index, 3) 
    +. "\n";
    }