- or download this
while (<FILE2>) {
push @col, $_ =~ m/^(\S+)/ unless ...;
}
- or download this
while(<COL>) {
$_ =~ s/^(\S)/$1 $col[$i++]/;
print OUT2 $_;
}
- or download this
while (<COUNT>){
($i, $j) = ...
- or download this
my ($i, $j)
- 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);