Help for this page

Select Code to Download


  1. or download this
    for my $c(1..16)
    
  2. or download this
    while (<>) {
        chomp;
        my @s = split /\t/,$_;
        push @input ,\@s;
    }
    
  3. or download this
    $output[$_][$c] = $x++ for sort { $input[$b][$c] <=> $input[$a][$c] } 
    +0 .. $#input;