OnToology
OnToology copied to clipboard
Online tool to automatically generate documentation and evaluation for Ontologies hosted on GitHub
A system for collaborative ontology development process. Given a repository with an owl file, OnToology will survey it and produce diagrams, a complete documentation and validation based on common pitfalls. It also offers seamless publication of user ontologies with w3id using GitHub pages.
You can find a live version of OnToology online: http://ontoology.linkeddata.es.
Team: Ahmad Alobaid, Daniel Garijo, Maria Poveda, Idafen Santa, Alba Fernandez Izquierdo, Oscar Corcho
License: Apache License v2 (http://www.apache.org/licenses/LICENSE-2.0)
If you want to cite Ontoology in a scientific paper or technical report, you can use the following Bibtex citation or directly this text: Alobaid A, Garijo D, Poveda-Villalón M, Santana-Pérez I, Fernández-Izquierdo A, Corcho O (2019) Automating ontology engineering support activities with OnToology. Journal of Web Semantics 57:100472, https://doi.org/10.1016/j.websem.2018.09.003
Funding
The development of OnToology has been supported by the Spanish national project Datos 4.0 (TIN2016-78011-C4-4-R)
Tools
Here is a list of tools being used by OnToology.
- owl2jsonld ( zenodo )
- Widoco ( zenodo )
- OOPS!
- AR2DTool
- oops-report
- Themis
Documentation for users
If you are an ontology engineer willing to use OnToology, you can check our step by step documentation. You can also check our list of Frequently Asked Questions
Documentation for developers
We provide some documentation for developers who want to contribute to the development OnToology or for those who are interested in deploying OnToology locally or in their servers. Feel free to contact us if you are interested in contributing to the project.
Test workflow
There are two kinds of tests:
- Using mock. These kinds of tests use a list of stored requests expected from GitHub APIs. These are fast and do not need GitHub keys or setup.
- Using real GitHub repos. These kinds of tests uses GitHub APIs. These tests can take some time and need special keys to access relevant test repos. For this reason, these are not available for the public. However, they are executed automatically after each merge to the
mainbranch.
Run Tests on Real GitHub Repo
This is only available for certain people
- Copy the keys into the folder
ssh - Create a file
scripts/secret_setup.sh - Write the following and fill the missing values (currently the private app is not added in the tests, so it can be left empty). (see secret setup section below).
- Run the tests on docker
sh scripts/run_docker_tests.sh
Note: If you made changes, you might need to rebuild the image docker-compose build
Secret Setup
#!/bin/sh
export github_password=""
export github_email=""
export client_id_login=""
export client_id_public=""
export client_id_private=""
export client_secret_login=""
export client_secret_public=""
export client_secret_private=""
export test_user_token=""
export test_user_email=""
export github_username=""
Run Locally
- Setup (see Run Tests on Real GitHub Repo section here)
- Run the following:
sh scripts/run_docker.sh - Go to
127.0.0.1:8000and start using OnToology.
Deploy
- Clone the repo.
- Set up the variables in
OnToology/localwsgi.py(see above for the details). - Create virtual env (optional).
- Install dependencies using pip (
pip install -r requirements). - Run the stiqueue server (with the ip and port).
- Run
OnToology/sqclient.py.