Hi, I got an error
Can't use string ("HASH(0x20e9f78)") as a HASH ref while "strict refs" in use at ConfigSetup.pm line 84, <FH> line 59.
I changed ConfigSetup.pm line 84 and ModelPred.pm line 403,
from:
for my $soft (keys %{$ENV{"method"}}) {
to:
for my $soft (keys %{$ENV->{"method"}}) {
Sorry I don't quit understand about perl HASH reference...
Does it work on your machine?
My machine :
CentOS release 6.4 (Final) x86_64
My perl version :
This is perl 5, version 18, subversion 1 (v5.18.1) built for x86_64-linux
And I'm afraid that ConfigSetup.pm line 64
now:
$ENV{"methods"} = $methods if defined $methods;
right?:
$ENV{"method"} = $methods if defined $methods;
Thank you for great software.
Hiroyo