in reply to Re^3: Hash making
in thread Hash making
while(<INPUT2>){ chomp; my @current_line = split /\t/; # eliminate unqualified lines early next unless $current_line[5] == 1 && $current_line[14] >= 3; $counter1++; if ($file1{ $current_line[1]}) { my ($from, $to) = @{ $file1{ $current_line[1] } }; for ($from <= $current_line[2] && $current_line[2] <= $to) { print join("\t", $current_line[1],$current_line[5],$current_line[14 +], "***",$current_line[2]), "\n"; $lines++; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Hash making
by ikegami (Patriarch) on Sep 21, 2008 at 19:20 UTC |