Hey everyone. I stuck an error when running homer script findMotifsGenome.pl
.
The error content is like this.
Can't locate HomerConfig.pm in @INC (you may need to install the HomerConfig module)
BEGIN failed--compilation aborted at /path-to-homer-bin/findMotifsGenome.pl line 22.
From this error, I thought I failed to install homer properly, but I installed homer like this.
wget configureHomer.pl
&
perl configureHomer.pl -install
&
perl configureHomer.pl -install mm10
If anyone knows the solution, please let me know ! Thanks.
Just a guess but I would remove these
&
since this sends all processes to background while starting them simultaneously. Install the basic Homer first, wait until finished properly, then install additional stuff like annotations for your organism. Do things sequentially but properly. If you want this sequentially this would be&&
, not&
. Still do it manually, typing in one command after the other and check the log messages for each step.