diff options
Diffstat (limited to 'test/uk/ac/ox/cs/hermit/JAIR_HermiT.java')
| -rw-r--r-- | test/uk/ac/ox/cs/hermit/JAIR_HermiT.java | 69 |
1 files changed, 39 insertions, 30 deletions
diff --git a/test/uk/ac/ox/cs/hermit/JAIR_HermiT.java b/test/uk/ac/ox/cs/hermit/JAIR_HermiT.java index 2fc478d..a3264ba 100644 --- a/test/uk/ac/ox/cs/hermit/JAIR_HermiT.java +++ b/test/uk/ac/ox/cs/hermit/JAIR_HermiT.java | |||
| @@ -1,17 +1,17 @@ | |||
| 1 | package uk.ac.ox.cs.hermit; | 1 | package uk.ac.ox.cs.hermit; |
| 2 | 2 | ||
| 3 | import org.junit.Test; | 3 | import org.junit.Test; |
| 4 | 4 | import uk.ac.ox.cs.pagoda.util.TestUtil; | |
| 5 | import uk.ac.ox.cs.pagoda.tester.PagodaTester; | ||
| 6 | 5 | ||
| 7 | public class JAIR_HermiT { | 6 | public class JAIR_HermiT { |
| 8 | 7 | ||
| 9 | @Test | 8 | @Test |
| 10 | public void lubm1() throws Exception { | 9 | public void lubm1() throws Exception { |
| 10 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 11 | String[] args = new String[] { | 11 | String[] args = new String[] { |
| 12 | PagodaTester.onto_dir + "lubm/univ-bench.owl", | 12 | TestUtil.combinePaths(ontoDir, "lubm/univ-bench.owl"), |
| 13 | PagodaTester.onto_dir + "lubm/data/lubm1_owl", | 13 | TestUtil.combinePaths(ontoDir, "lubm/data/lubm1_owl"), |
| 14 | PagodaTester.onto_dir + "lubm/queries/test.sparql" | 14 | TestUtil.combinePaths(ontoDir, "lubm/queries/test.sparql") |
| 15 | // , "/home/yzhou/java-workspace/test-share/results_new/lubm1/hermit" | 15 | // , "/home/yzhou/java-workspace/test-share/results_new/lubm1/hermit" |
| 16 | }; | 16 | }; |
| 17 | HermitQueryReasoner.main(args); | 17 | HermitQueryReasoner.main(args); |
| @@ -19,10 +19,11 @@ public class JAIR_HermiT { | |||
| 19 | 19 | ||
| 20 | @Test | 20 | @Test |
| 21 | public void lubm1_rolledUp() throws Exception { | 21 | public void lubm1_rolledUp() throws Exception { |
| 22 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 22 | String[] args = new String[] { | 23 | String[] args = new String[] { |
| 23 | "/home/yzhou/backup/20141212/univ-bench-queries.owl", | 24 | "/home/yzhou/backup/20141212/univ-bench-queries.owl", |
| 24 | PagodaTester.onto_dir + "lubm/data/lubm1_owl", | 25 | TestUtil.combinePaths(ontoDir, "lubm/data/lubm1_owl"), |
| 25 | PagodaTester.onto_dir + "lubm/queries/atomic_lubm.sparql" | 26 | TestUtil.combinePaths(ontoDir, "lubm/queries/atomic_lubm.sparql") |
| 26 | // , "/home/yzhou/java-workspace/test-share/results_new/lubm1/hermit_rolledUp" | 27 | // , "/home/yzhou/java-workspace/test-share/results_new/lubm1/hermit_rolledUp" |
| 27 | }; | 28 | }; |
| 28 | HermitQueryReasoner.main(args); | 29 | HermitQueryReasoner.main(args); |
| @@ -30,10 +31,11 @@ public class JAIR_HermiT { | |||
| 30 | 31 | ||
| 31 | @Test | 32 | @Test |
| 32 | public void uobm1() throws Exception { | 33 | public void uobm1() throws Exception { |
| 34 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 33 | String[] args = new String[] { | 35 | String[] args = new String[] { |
| 34 | PagodaTester.onto_dir + "uobm/univ-bench-dl.owl", | 36 | TestUtil.combinePaths(ontoDir, "uobm/univ-bench-dl.owl"), |
| 35 | PagodaTester.onto_dir + "uobm/data/uobm1_owl_withDeclaration", | 37 | TestUtil.combinePaths(ontoDir, "uobm/data/uobm1_owl_withDeclaration"), |
| 36 | PagodaTester.onto_dir + "uobm/queries/standard.sparql" | 38 | TestUtil.combinePaths(ontoDir, "uobm/queries/standard.sparql") |
| 37 | // , "hermit_uobm1.out" | 39 | // , "hermit_uobm1.out" |
| 38 | // , "/home/yzhou/java-workspace/test-share/results_new/uobm1/hermit" | 40 | // , "/home/yzhou/java-workspace/test-share/results_new/uobm1/hermit" |
| 39 | }; | 41 | }; |
| @@ -42,10 +44,11 @@ public class JAIR_HermiT { | |||
| 42 | 44 | ||
| 43 | @Test | 45 | @Test |
| 44 | public void uobm1_rolledUp() throws Exception { | 46 | public void uobm1_rolledUp() throws Exception { |
| 47 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 45 | String[] args = new String[] { | 48 | String[] args = new String[] { |
| 46 | "/home/yzhou/backup/20141212/univ-bench-dl-queries.owl", | 49 | "/home/yzhou/backup/20141212/univ-bench-dl-queries.owl", |
| 47 | PagodaTester.onto_dir + "uobm/data/uobm1_owl_withDeclaration", | 50 | TestUtil.combinePaths(ontoDir, "uobm/data/uobm1_owl_withDeclaration"), |
| 48 | PagodaTester.onto_dir + "uobm/queries/atomic_uobm.sparql" | 51 | TestUtil.combinePaths(ontoDir, "uobm/queries/atomic_uobm.sparql") |
| 49 | , "hermit_uobm1_rolledUp.out" | 52 | , "hermit_uobm1_rolledUp.out" |
| 50 | // , "/home/yzhou/java-workspace/test-share/results_new/uobm1/hermit_rolledUp" | 53 | // , "/home/yzhou/java-workspace/test-share/results_new/uobm1/hermit_rolledUp" |
| 51 | }; | 54 | }; |
| @@ -54,21 +57,23 @@ public class JAIR_HermiT { | |||
| 54 | 57 | ||
| 55 | @Test | 58 | @Test |
| 56 | public void fly_rolledUp() throws Exception { | 59 | public void fly_rolledUp() throws Exception { |
| 60 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 57 | HermitQueryReasoner.main( | 61 | HermitQueryReasoner.main( |
| 58 | PagodaTester.onto_dir + "fly/fly-all-in-one_rolledUp.owl", | 62 | TestUtil.combinePaths(ontoDir, "fly/fly-all-in-one_rolledUp.owl"), |
| 59 | // PagodaTester.onto_dir + "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl", | 63 | // TestUtil.combinePaths(ontoDir, "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl", |
| 60 | null, | 64 | null, |
| 61 | PagodaTester.onto_dir + "fly/queries/fly_atomic.sparql" | 65 | TestUtil.combinePaths(ontoDir, "fly/queries/fly_atomic.sparql") |
| 62 | , "hermit_fly.out" | 66 | , "hermit_fly.out" |
| 63 | ); | 67 | ); |
| 64 | } | 68 | } |
| 65 | 69 | ||
| 66 | @Test | 70 | @Test |
| 67 | public void npd() throws Exception { | 71 | public void npd() throws Exception { |
| 72 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 68 | HermitQueryReasoner.main( | 73 | HermitQueryReasoner.main( |
| 69 | PagodaTester.onto_dir + "npd/npd-all-minus-datatype.owl", | 74 | TestUtil.combinePaths(ontoDir, "npd/npd-all-minus-datatype.owl"), |
| 70 | PagodaTester.onto_dir + "npd/data/npd-data-dump-minus-datatype-new.ttl", | 75 | TestUtil.combinePaths(ontoDir, "npd/data/npd-data-dump-minus-datatype-new.ttl"), |
| 71 | PagodaTester.onto_dir + "npd/queries/atomic_ground.sparql" | 76 | TestUtil.combinePaths(ontoDir, "npd/queries/atomic_ground.sparql") |
| 72 | , "hermit_npd.out" | 77 | , "hermit_npd.out" |
| 73 | // , "/home/yzhou/java-workspace/test-share/results_new/npd/hermit" | 78 | // , "/home/yzhou/java-workspace/test-share/results_new/npd/hermit" |
| 74 | ); | 79 | ); |
| @@ -76,31 +81,34 @@ public class JAIR_HermiT { | |||
| 76 | 81 | ||
| 77 | @Test | 82 | @Test |
| 78 | public void dbpedia() throws Exception { | 83 | public void dbpedia() throws Exception { |
| 84 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 79 | HermitQueryReasoner.main( | 85 | HermitQueryReasoner.main( |
| 80 | PagodaTester.onto_dir + "dbpedia/integratedOntology-all-in-one-minus-datatype.owl", | 86 | TestUtil.combinePaths(ontoDir, "dbpedia/integratedOntology-all-in-one-minus-datatype.owl"), |
| 81 | PagodaTester.onto_dir + "dbpedia/data/dbpedia-minus-datatype-new.ttl", | 87 | TestUtil.combinePaths(ontoDir, "dbpedia/data/dbpedia-minus-datatype-new.ttl"), |
| 82 | PagodaTester.onto_dir + "dbpedia/queries/atomic_ground.sparql" | 88 | TestUtil.combinePaths(ontoDir, "dbpedia/queries/atomic_ground.sparql") |
| 83 | , "/home/yzhou/java-workspace/test-share/results_new/dbpedia/hermit" | 89 | , "/home/yzhou/java-workspace/test-share/results_new/dbpedia/hermit" |
| 84 | ); | 90 | ); |
| 85 | } | 91 | } |
| 86 | 92 | ||
| 87 | @Test | 93 | @Test |
| 88 | public void reactome() throws Exception { | 94 | public void reactome() throws Exception { |
| 95 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 89 | HermitQueryReasoner.main( | 96 | HermitQueryReasoner.main( |
| 90 | PagodaTester.onto_dir + "bio2rdf/reactome/biopax-level3-processed.owl", | 97 | TestUtil.combinePaths(ontoDir, "bio2rdf/reactome/biopax-level3-processed.owl"), |
| 91 | PagodaTester.onto_dir + "bio2rdf/reactome/graph sampling/reactome_sample_10.ttl", | 98 | TestUtil.combinePaths(ontoDir, "bio2rdf/reactome/graph sampling/reactome_sample_10.ttl"), |
| 92 | PagodaTester.onto_dir + "bio2rdf/reactome/queries/atomic_ground.sparql" | 99 | TestUtil.combinePaths(ontoDir, "bio2rdf/reactome/queries/atomic_ground.sparql") |
| 93 | , "/home/yzhou/java-workspace/test-share/results_new/reactome/hermit_10p" | 100 | , "/home/yzhou/java-workspace/test-share/results_new/reactome/hermit_10p" |
| 94 | ); | 101 | ); |
| 95 | } | 102 | } |
| 96 | 103 | ||
| 97 | @Test | 104 | @Test |
| 98 | public void chembl() throws Exception { | 105 | public void chembl() throws Exception { |
| 106 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 99 | HermitQueryReasoner.main( | 107 | HermitQueryReasoner.main( |
| 100 | PagodaTester.onto_dir + "bio2rdf/chembl/cco-noDPR.ttl", | 108 | TestUtil.combinePaths(ontoDir, "bio2rdf/chembl/cco-noDPR.ttl"), |
| 101 | // null, | 109 | // null, |
| 102 | PagodaTester.onto_dir + "bio2rdf/chembl/graph sampling/sample_1.nt", | 110 | TestUtil.combinePaths(ontoDir, "bio2rdf/chembl/graph sampling/sample_1.nt"), |
| 103 | PagodaTester.onto_dir + "bio2rdf/chembl/queries/atomic_ground.sparql" | 111 | TestUtil.combinePaths(ontoDir, "bio2rdf/chembl/queries/atomic_ground.sparql") |
| 104 | , "hermit_chembl.out" | 112 | , "hermit_chembl.out" |
| 105 | // , "/home/yzhou/java-workspace/test-share/results_new/chembl/hermit_1p" | 113 | // , "/home/yzhou/java-workspace/test-share/results_new/chembl/hermit_1p" |
| 106 | ); | 114 | ); |
| @@ -108,10 +116,11 @@ public class JAIR_HermiT { | |||
| 108 | 116 | ||
| 109 | @Test | 117 | @Test |
| 110 | public void uniprot() throws Exception { | 118 | public void uniprot() throws Exception { |
| 119 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 111 | HermitQueryReasoner.main( | 120 | HermitQueryReasoner.main( |
| 112 | PagodaTester.onto_dir + "bio2rdf/uniprot/core-sat.owl", | 121 | TestUtil.combinePaths(ontoDir, "bio2rdf/uniprot/core-sat.owl"), |
| 113 | PagodaTester.onto_dir + "bio2rdf/uniprot/graph sampling/sample_1.nt", | 122 | TestUtil.combinePaths(ontoDir, "bio2rdf/uniprot/graph sampling/sample_1.nt"), |
| 114 | PagodaTester.onto_dir + "bio2rdf/uniprot/queries/atomic_ground.sparql" | 123 | TestUtil.combinePaths(ontoDir, "bio2rdf/uniprot/queries/atomic_ground.sparql") |
| 115 | , "hermit_uniprot.out" | 124 | , "hermit_uniprot.out" |
| 116 | // , "/home/yzhou/java-workspace/test-share/results_new/uniprot/hermit_1p" | 125 | // , "/home/yzhou/java-workspace/test-share/results_new/uniprot/hermit_1p" |
| 117 | ); | 126 | ); |
