Conversation
Codecov Report❌ Patch coverage is
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
|
I tried running a query through the ARAX pathfinder and it's unclear what happened. I got these logs: but nothing else before it was timed out after 5 minutes. I sent it Imatinib->Asthma. |
|
Hi @maximusunc, I changed the parameters to make it faster for now. I will get back to Shepherd-pathfinder and check it probably next week to figure out what the problem is. |
maximusunc
left a comment
There was a problem hiding this comment.
When testing with Imatinib->Asthma, your Pathfinder is returning 0 paths. Is this intended?
workers/arax_pathfinder/worker.py
Outdated
There was a problem hiding this comment.
I'm not sure if your pathfinder code is asynchronous or not, but this call is blocking and so your pathfinder implementation can only handle one query at a time. Is this intended?
There was a problem hiding this comment.
Hi @maximusunc
Could you please provide me your json query that you sent and got 0 paths?
There was a problem hiding this comment.
Here is my query and I got result for this one.
{
"message": {
"query_graph": {
"nodes": {
"n0": {
"ids": [
"CHEBI:31690"
]
},
"n1": {
"ids": [
"MONDO:0004979"
]
}
},
"paths": {
"p0": {
"subject": "n0",
"object": "n1",
"predicates": [
"biolink:related_to"
],
"constraints": []
}
}
}
}
}
There was a problem hiding this comment.
It is now can handle multiple queries.
Hi @maximusunc,
Please review this pull request.