aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala
index 9d80dd5..ece6d15 100644
--- a/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala
+++ b/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala
@@ -155,7 +155,7 @@ object Ontology {
155 RDFoxUtil.addData(data, ttn, datafiles: _*) 155 RDFoxUtil.addData(data, ttn, datafiles: _*)
156 156
157 /* Build the graph */ 157 /* Build the graph */
158 val query = "SELECT ?X ?Y WHERE { ?X rsa:E ?Y }" 158 val query = "SELECT ?X ?Y WHERE { ?X rsacomb:E ?Y }"
159 val answers = RDFoxUtil.submitQuery(data, query, RSA.Prefixes).get 159 val answers = RDFoxUtil.submitQuery(data, query, RSA.Prefixes).get
160 var edges: Seq[DiEdge[Resource]] = 160 var edges: Seq[DiEdge[Resource]] =
161 answers.collect { case (_, Seq(n1, n2)) => n1 ~> n2 } 161 answers.collect { case (_, Seq(n1, n2)) => n1 ~> n2 }