in reply to why is my pm not finding the correct files
Look like they could be a problem. If $assignments{vector_files} is a reference to an array it may not be working as you expect. Do $vec and $spli contain the values you expect ?$vec=${$$assignments{vector_files}}[$num_lib-1]; $spli=${$$assignments{splice_files}}[$num_lib-1];
my $ref = $assignments{vector_files}; $vec=$$ref[$num_lib-1];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: why is my pm not finding the correct files
by tangledupinperl (Initiate) on Feb 20, 2009 at 17:39 UTC |