in reply to Re^3: Best way to store/access large dataset?
in thread Best way to store/access large dataset?

I was able to read in the ID file by doing the following:

my @split_names = split(/\./,$fileext); my ($column) = $split_names[0];

But that only creates problems in the follow on summation block.