Help for this page

Select Code to Download


  1. or download this
    my %results;
    { local @ARGV =  ( 'q1.fa', 'q2.fa' );
      /^>/ or push @{ $results{ $ARGV } }, $_ while <>;
    }
    
  2. or download this
    for ( keys %results ) {
      print "$_:\n";
      print @{ $results{ $_ } };
      print "\n";
    }