in reply to Re^2: Merge huge files (individually sorted) by order
in thread Merge huge files (individually sorted) by order
Try something like putting a file handle for each column value in a hash, and then looking up the file handle on demand:
my %OFH; my $OFH; while (<$IFH>) { my @fields = split /\t/,$_; $OFH = $OFH{$fields[$key_column]}; if (! defined $OFH) { # We don't have this value yet, so open another file open $OFH, '>', 'key_value.' . $fields[$key_column]; $OFH{$fields[$key_column]} = $OFH; } print $OFH join("\t",@fields); }
Note: It's rough, untested and needs some error handling and such. But the basic concept should work fine for you.
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|