Help for this page

Select Code to Download


  1. or download this
        foreach my $val (@values){
            $val *= $df * 50 ;
        }
        print join("\t", @values), "\n";
    
  2. or download this
        print join("\t", map { $_ * $df * 50 } @values), "\n";
    
  3. or download this
    ...
    while (<FILE>){
        print join("\t", map { $_ * $df * 50 } split /\t/), "\n";
    }