Help for this page

Select Code to Download


  1. or download this
    ...
    my $fn = 'data.dat';
    ...
    { local $/; $stuff = <$fh> }
    close $fh;
    ...
    
  2. or download this
    ...
    while( $stuff =~ /^ (\d+): \s+            # the number xx: => $1
    ...
       print join "\n\n", $locus, $name, $kegg, $func, $proc, $comp;
    }
    ...