Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ merge-owl-shacl: get-jena-cli-tools get-rdf-differ
# Get rdf-differ-ws repository
get-rdf-differ:
@if [ ! -d "rdf-differ-ws" ]; then \
git clone --depth 1 --branch 2.1.0-beta https://github.com/meaningfy-ws/rdf-differ-ws.git; \
git clone --depth 1 --branch 2.1.0 https://github.com/OP-TED/rdf-differ-ws.git; \
rm -rf rdf-differ-ws/.git; \
if ! grep -q "^rdf-differ-ws/" .gitignore 2>/dev/null; then \
echo "rdf-differ-ws/" >> .gitignore; \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,15 +380,15 @@ make owl-core XMI_INPUT_FILE_PATH=/home/mypc/work/model2owl/file1.xml OUTPUT_FOL
```

### Generating diff reports
Model2owl uses the [RDF Differ](https://meaningfy-ws.github.io/rdf-differ-ws/)
Model2owl uses the [RDF Differ](https://github.com/OP-TED/rdf-differ-ws)
tool to calculate differences between two RDF graphs and to generate diff
reports in AsciiDoc and JSON formats. It compares either two OWL core files or
two pairs consisting of an OWL core file and a SHACL shapes file. When SHACL
files are provided, the comparison scope additionally covers domain, range, and
cardinality properties. The comparison scope is defined in an application
profile suitable for comparing OWL ontologies. Details on how the RDF Differ
tool works, produced reports, and how to interpret them can be found in the [project
documentation](https://github.com/meaningfy-ws/rdf-differ-ws/blob/master/README.md).
documentation](https://github.com/OP-TED/rdf-differ-ws/blob/2.1.0/README.md).

Model2owl integrates the tool (via its CLI client) and provides a dedicated set
of commands to interact with it (see the descriptions of the `run-rdf-diff` and
Expand Down