Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add paging to ontomatch service #69
Comments
jnguyenx
was assigned
by cmungall
Mar 10, 2017
|
I would also be happy with the full all-by-all table. How could I obtain this? |
|
You should be able to just use the API directly: BMKnowledgeBase bmKnowledgeBase = BMKnowledgeBase.owlLoader()...createKnowledgeBase();
ClassMatcher classMatcher= new ClassMatcher(bmKnowledgeBase);
List<SimpleClassMatch> matches = classMatcher.matchOntologies("HP", "MP"); |
|
We had a look with Chris, it doesn't seem to be an issue with the returned data being too large. But the service takes too long to return anyway, Chris will take a look at that. |
|
OK, great. To summarize:
|
|
I am happy with using the API. I am not closing, because the ticket is about something else now. |
jnguyenx
removed their assignment
Apr 14, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cmungall commentedMar 10, 2017
The route '/ontolomatch/MP/HP' should return a set of best matches in MP for HP (note this is less than the full all-by-all table).
Currently this gives a gateway timeout. Paging should be added.
Also, we should have a version that works for a specific ID, @drseb would use this.