roarce92 has asked for the wisdom of the Perl Monks concerning the following question:
Hello everyone! I'm trying to run a command in perl and I recive the same error all time. The files I use were generated by the same module I am receiving the error. My command is
use Seeder::Finder; my $finder = Seeder::Finder->new( seed_width => "6", strand => "revcom", motif_width => "12", n_motif => "10", hd_index_file => "6.index", seq_file => "Potato_FldvsWTinC_INDUCED_gene_list_promoters.fa +a", bkgd_file => "Potato_genome_promoters.bkgd", out_file => "Potato_FldvsWTinC_INDUCED_gene_list_promoters.fa +a", ); $finder->find_motifs;
And the output is:
Use of uninitialized value in subroutine entry at /home/roarce/perl5/p +erlbrew/perls/perl-5.28.0/lib/site_perl/5.28.0/Seeder/Finder.pm line +476, <IN> line 8192. Use of uninitialized value in subroutine entry at /home/roarce/perl5/p +erlbrew/perls/perl-5.28.0/lib/site_perl/5.28.0/Seeder/Finder.pm line +476, <IN> line 8192. Use of uninitialized value in subroutine entry at /home/roarce/perl5/p +erlbrew/perls/perl-5.28.0/lib/site_perl/5.28.0/Seeder/Finder.pm line +476, <IN> line 8192.
A lot of times and finally:
Can't use an undefined value as an ARRAY reference at /home/roarce/perl5/perlbrew/perls/perl-5.28.0/lib/site_perl/5.28.0/Seeder/Finder.pm line 611, <IN> line 8192.I installed perl yesterday, I checked the module and it is ok. The files too. I don't know what else to change in this command, could you help me? Thank you in advance!
|
|---|