I have been going through the process of installing SignalIP. I am trying to run the following command on the test data:
./bin/signalp -fasta test/euk10.fsa -org euk -format short -prefix euk_10_short
from this directory
1983390@vettel:~/apps/signalp-5.0b$ pwd
/home/u1983390/apps/signalp-5.0b
It produces this output:
SignalP-5.0. Starting fasta file reading...
Total proteins read: 10.
Organism: euk.
Starting protein prediction...
2020/06/22 16:23:08 asset: open /home/u1983390/apps/signalp-5.0b/bin/bin/signalp: no such file or directory
It seems like like SignalP is adding the extraneous "bin". The path signalp-5.0b/bin/bin/signalp
is used when it should be signalp-5.0b/bin/signalp
.
I don't understand why it is appearing twice. If I run the command signalp -fasta test/euk10.fsa -org euk -format short -prefix euk_10_short
the output is signalp: command not found
.
How do I fix this?
Thank you for your advice. Adding
/home/u1983390/apps/signalp-5.0b/bin
to my .bash_profile seems to have worked.