Help for this page

Select Code to Download


  1. or download this
    while (<FILE2>) {
      push @col, $_ =~ m/^(\S+)/  unless ...;
    }
    
  2. or download this
    while(<COL>) {
      $_ =~ s/^(\S)/$1 $col[$i++]/;
      print OUT2 $_;
    }
    
  3. or download this
    while (<COUNT>){
      ($i, $j) = ...
    
  4. or download this
    my ($i, $j)
    
  5. or download this
    open (FILE, "test.pat") or die "Can't open test.pat: $!";
    open (OUT, ">TRUE_OUTPUTS") or die "Can't open TRUE_OUTPUTS: $!";
    ...
    }
    close (FILE);
    close (OUT);