Open reyjul opened 11 months ago
Please try adding -local.workers 1
to the command line call.
There should be a local
settings in the config file:
"local" : {
"workers" : 1
}
I guess when that part is missing it will get initialized to 0 by default and not start any worker?
If this was not the issue, can you post the output that the singularity process generated?
Great, that works.
I also had to modify this line in the Dockerfile to avoid "Permission denied" issues:
RUN chmod -R +rx binaries
And the .params files have to be writeable by all or I would get this message from the API:
Execution Error: open /local/banks/UniRef50.params: permission denied
Thanks a lot.
Hello,
I'm trying to make the mmseqs-web API work but I'm encountering several issues.
This is the Dockerfile I used to build the API:
I then installed the databanks and created the indexes the usual way:
and added the params files along the banks in the same directory (/local/banks):
This is how I launch the API:
This is the content of the config.json file:
I get a response with curl which seems to indicate that the API is running and listening on correct port (3000):
On a side note, I can't list databases if I the status in the params file is different from COMPLETE.
If I try to submit a sequence with python:
The directory containing the job is correctly created. But then nothing happens, the jobs stays forever in PENDING state.
Trying to get job status after a few hours, nothing seems to happen either:
Any idea / advice are welcome.