in reply to Help De-bugging
Welcome to PerlMonks, GeneGeek!
This:
my $rep_sample = $data->{$rep_label} {'Samples'}{$dye};
...shouldn't have the whitespace in it. perl ignores whitespace, but it should be:
my $rep_sample = $data->{$rep_label}{'Samples'}{$dye};
That piece of code is looking deep into a hash (reference) of hashes, of hashes.
Parent has been updated with full code... What we need to see is the code that processes the data file and extracts the information into the hash.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help De-bugging
by GeneGeek (Initiate) on Sep 04, 2015 at 20:57 UTC |