A framework for managing and validating ontologies with support for both local and Oracle RDF storage.
- Consistent prefix and namespace management
- Local and Oracle RDF store support
- Pre-commit hooks for ontology validation
- SHACL validation support
- Automated testing infrastructure
Install using conda (recommended):
conda env create -f environment.yml
conda activate ontology-framework
Or using pip:
pip install -r requirements.txt
To use the Oracle RDF store functionality:
- Oracle Database with RDF support
- Java must be installed and configured in the Oracle database
- Required environment variables:
ORACLE_USER
: Database usernameORACLE_PASSWORD
: Database passwordORACLE_DSN
: Database connection string
To verify Oracle setup:
python -m scripts.verify_oracle_setup
-
Clone the repository:
git clone https://github.com/yourusername/ontology-framework.git cd ontology-framework
-
Install pre-commit hooks:
pip install pre-commit pre-commit install
-
Run tests:
pytest tests/
The framework provides consistent prefix management through the PrefixMap
class:
from ontology_framework.prefix_map import default_prefix_map
# Get standard namespace
meta_ns = default_prefix_map.get_namespace("meta")
# Register custom prefix
default_prefix_map.register_prefix("custom", "./custom#", PrefixCategory.DOMAIN)
# Bind prefixes to graph
g = Graph()
default_prefix_map.bind_to_graph(g)
The following checks are run on commit:
- Python code formatting (black)
- Import sorting (isort)
- Python code quality (flake8)
- Ontology validation:
- Required prefixes
- Class property requirements
- SHACL constraints
Ontologies must follow these rules:
- Use standard prefixes from
prefix_map.py
- Include required properties:
rdfs:label
rdfs:comment
owl:versionInfo
- Pass SHACL validation if shapes are defined
-
Create a feature branch:
git checkout -b feature/your-feature-name
-
Make changes and ensure all tests pass:
pytest tests/
-
Commit with appropriate type and version:
git commit -m "onto(scope): description Ontology-Version: X.Y.Z"
[Your license here]