We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cedc533 commit dfd8f95Copy full SHA for dfd8f95
experiments/virtuoso.sh
@@ -0,0 +1,27 @@
1
+#!/bin/bash
2
+
3
+[ -z "$1" ] && echo "Specify Virtuoso PID" && exit 1
4
5
+virtuoso_pid=$1
6
7
+# Prepare data
8
+for file in ../data/*
9
+do
10
+ # there should be only files anyway
11
+ if [[ -f $file ]]; then
12
+ # PUT into virtuoso
13
+ ./put-in-virtuoso.sh $file "file:$file"
14
+ fi
15
+done
16
17
+# Run experiments
18
+export QUERY_ENDPOINT=http://localhost:8890/sparql
19
20
21
22
23
+ export QUERY_GRAPH="file:$file"
24
+ eid=virtuoso-$(basename "${file%.*}")
25
+ ./run-experiment.sh $virtuoso_pid $eid suite/test.txt 1 3 10
26
27
0 commit comments