Help for this page

Select Code to Download


  1. or download this
    print "my header ...\n";
    while (<FILE>){
        ...
    
  2. or download this
    ...
    open OUTFILE, ">", "outfile.txt" or die $!;
    ...
    while (<FILE>){
        print OUTFILE join("\t", map { $_ * $df * 50 } split /\t/), "\n";
    }