aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 87b721f..9cd3029 100644
--- a/README.md
+++ b/README.md
@@ -187,12 +187,11 @@ java -cp lib/JRDFox.jar:target/scala-2.13/RSAComb-assembly-0.2.0.jar uk.ac.ox.cs
187This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`). 187This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`).
188You can run the provided RDFox script as follows 188You can run the provided RDFox script as follows
189```{.sh} 189```{.sh}
190./lib/RDFox-linux-x86_64-5.2.1/RDFox sandbox . "simulate <debug-folder> <data> <query-id>" 190path/to/RDFox sandbox <debug-folder> "simulate <query-id>"
191``` 191```
192where 192where
193- `debug-folder` is the newly generated folder (`rsacomb-20211005120845` in this example) 193- `debug-folder` is the newly generated folder (`rsacomb-20211005120845` in this example)
194- `<data>` is the path to the data file used with RSAComb (`tests/lubm/data/lubm1.ttl` in this example) 194- `query-id` is the identifier of the query we want to simulate (if we want to simulate query 16 we will pass `16` as an argument). We can pass `all` to simulate all queries.
195- `query-id` is the identifier of the query we want to simulate (if we want to simulate query 16 we will pass `16` as an argument)
196 195
197This will launch a sandboxed RDFox console, where you will be able to explore a simulation of the datastore used by RSAComb. 196This will launch a sandboxed RDFox console, where you will be able to explore a simulation of the datastore used by RSAComb.
198You can also access the same datastore from the web interface at [http://localhost:12110/console/](http://localhost:12110/console/). 197You can also access the same datastore from the web interface at [http://localhost:12110/console/](http://localhost:12110/console/).