You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"app": "mmseqs",
"verbose": true,
"server" : {
"address" : "0.0.0.0:3000",
"dbmanagment": false,
"cors" : true
},
"worker": {
"gracefulexit" : true
},
"paths" : {
"databases" : "/local/banks/",
"results" : "/shared/home/rey/colabfold",
"temporary" : "/tmp",
"colabfold" : {
"uniref" : "/local/banks/UniRef50"
},
"mmseqs" : "/usr/local/bin/mmseqs",
"foldseek" : "/usr/local/bin/foldseek"
},
"redis" : {
"network" : "tcp",
"address" : "mmseqs-web-redis:6379",
"password" : "",
"index" : 0
},
"mail" : {
"type" : "null",
"sender" : "[email protected]",
"templates" : {
"success" : {
"subject" : "Done -- %s",
"body" : "Dear User,\nThe results of your submitted job are available now at https://search.mmseqs.com/queue/%s .\n"
},
"timeout" : {
"subject" : "Timeout -- %s",
"body" : "Dear User,\nYour submitted job timed out. More details are available at https://search.mmseqs.com/queue/%s .\nPlease adjust the job and submit it again.\n"
},
"error" : {
"subject" : "Error -- %s",
"body" : "Dear User,\nYour submitted job failed. More details are available at https://search.mmseqs.com/queue/%s .\nPlease submit your job later again.\n"
}
}
}
}
I get a response with curl which seems to indicate that the API is running and listening on correct port (3000):
curl -X GET http://10.0.1.246:3000/databases
{"databases":[{"name":"UniRef50","version":"","path":"UniRef50","default":true,"order":0,"taxonomy":false,"full_header":false,"index":"","search":"","status":"COMPLETE"},{"name":"UniRef30","version":"2103","path":"UniRef30","default":false,"order":1,"taxonomy":false,"full_header":false,"index":"","search":"","status":"COMPLETE"}]}
On a side note, I can't list databases if I the status in the params file is different from COMPLETE.
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.
The text was updated successfully, but these errors were encountered: