Revision: 2145 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2145&view=rev Author: lorenz_b Date: 2010-05-14 16:02:25 +0000 (Fri, 14 May 2010) Log Message: ----------- Fixed some bugs in reasoner classes. Fixed bug in RhoDRDown class, caused by missing comparator in TreeSet construction. Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/reasoning/OWLAPIReasoner.java trunk/src/dl-learner/org/dllearner/reasoning/PelletReasoner.java trunk/src/dl-learner/org/dllearner/refinementoperators/RhoDRDown.java trunk/src/dl-learner/org/dllearner/scripts/evaluation/OntologyChecker.java trunk/src/dl-learner/org/dllearner/test/junit/ReasonerTests.java Added Paths: ----------- trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_errors.txt trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_list.txt trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_ontologies_output.txt trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_tractable.txt Modified: trunk/src/dl-learner/org/dllearner/reasoning/OWLAPIReasoner.java =================================================================== --- trunk/src/dl-learner/org/dllearner/reasoning/OWLAPIReasoner.java 2010-05-04 20:36:49 UTC (rev 2144) +++ trunk/src/dl-learner/org/dllearner/reasoning/OWLAPIReasoner.java 2010-05-14 16:02:25 UTC (rev 2145) @@ -243,6 +243,7 @@ ontology = ((OWLAPIOntology)source).getOWLOntolgy(); } else if (source instanceof SparqlKnowledgeSource) { ontology = ((SparqlKnowledgeSource)source).getOWLAPIOntology(); + manager = ontology.getOWLOntologyManager(); } else { ontology = manager.loadOntologyFromOntologyDocument(IRI.create(url.toURI())); } @@ -629,6 +630,9 @@ if (set.isEmpty()) return new Thing(); OWLClass oc = set.iterator().next().getRepresentativeElement(); + if(oc.isOWLThing()){ + return Thing.instance; + } return new NamedClass(oc.toStringID()); } Modified: trunk/src/dl-learner/org/dllearner/reasoning/PelletReasoner.java =================================================================== --- trunk/src/dl-learner/org/dllearner/reasoning/PelletReasoner.java 2010-05-04 20:36:49 UTC (rev 2144) +++ trunk/src/dl-learner/org/dllearner/reasoning/PelletReasoner.java 2010-05-14 16:02:25 UTC (rev 2145) @@ -109,7 +109,6 @@ import com.clarkparsia.modularity.IncrementalClassifier; import com.clarkparsia.modularity.PelletIncremantalReasonerFactory; import com.clarkparsia.pellet.owlapiv3.PelletReasonerFactory; -import com.clarkparsia.pellet.owlapiv3.Reasoner; public class PelletReasoner extends ReasonerComponent { @@ -477,8 +476,8 @@ if (source instanceof OWLAPIOntology) { ontology = ((OWLAPIOntology) source).getOWLOntolgy(); } else if (source instanceof SparqlKnowledgeSource) { - ontology = ((SparqlKnowledgeSource) source) - .getOWLAPIOntology(); + ontology = ((SparqlKnowledgeSource) source).getOWLAPIOntology(); + manager = ontology.getOWLOntologyManager(); } else { try { ontology = manager.loadOntologyFromOntologyDocument(IRI.create(url @@ -1256,12 +1255,12 @@ @Override public Description getDomainImpl(ObjectProperty objectProperty) { OWLObjectProperty prop = OWLAPIConverter.getOWLAPIObjectProperty(objectProperty); - - // Pellet returns a set of sets of named class, which are more - // general than the actual domain/range - NodeSet<OWLClass> set = reasoner.getObjectPropertyDomains(prop, false); - return getDescriptionFromReturnedDomain(set); - + + // Pellet returns a set of sets of named class, which are more + // general than the actual domain/range + NodeSet<OWLClass> set = reasoner.getObjectPropertyDomains(prop, false); + return getDescriptionFromReturnedDomain(set); + } @Override @@ -1283,7 +1282,7 @@ if (set.isEmpty()) return new Thing(); OWLClass oc = set.iterator().next().getRepresentativeElement(); - return new NamedClass(oc.toStringID()); + return getDescriptionFromReturnedDomain(set); } @@ -1670,5 +1669,8 @@ return definitions; } + public static String getName() { + return "Pellet reasoner"; + } } Modified: trunk/src/dl-learner/org/dllearner/refinementoperators/RhoDRDown.java =================================================================== --- trunk/src/dl-learner/org/dllearner/refinementoperators/RhoDRDown.java 2010-05-04 20:36:49 UTC (rev 2144) +++ trunk/src/dl-learner/org/dllearner/refinementoperators/RhoDRDown.java 2010-05-14 16:02:25 UTC (rev 2145) @@ -1222,7 +1222,7 @@ } private SortedSet<Description> getNegClassCandidatesRecursive(Description index, Description lowerClass) { - SortedSet<Description> candidates = new TreeSet<Description>(); + SortedSet<Description> candidates = new TreeSet<Description>(conceptComparator); for(Description candidate : subHierarchy.getSuperClasses(lowerClass)) { if(!isDisjoint(new Negation(candidate),index)) { Modified: trunk/src/dl-learner/org/dllearner/scripts/evaluation/OntologyChecker.java =================================================================== --- trunk/src/dl-learner/org/dllearner/scripts/evaluation/OntologyChecker.java 2010-05-04 20:36:49 UTC (rev 2144) +++ trunk/src/dl-learner/org/dllearner/scripts/evaluation/OntologyChecker.java 2010-05-14 16:02:25 UTC (rev 2145) @@ -148,7 +148,7 @@ System.out.println(inconsistentOntologies.size() + " inconsistent ontologies:"); int cnt = 1; for(String uri : inconsistentOntologies){ - System.out.println(uri); + System.out.println(cnt++ + ": " + uri); } System.out.println(); System.out.println(incohaerentOntologies.size() + " incohaerent ontologies(#unsatisfiable classes):"); Added: trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_errors.txt =================================================================== --- trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_errors.txt (rev 0) +++ trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_errors.txt 2010-05-14 16:02:25 UTC (rev 2145) @@ -0,0 +1,42 @@ +http://owl.cs.manchester.ac.uk/repository/download?ontology=ftp://rgd.mcw.edu/pub/data_release/pathway.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://PCS.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://attempto.ifi.uzh.ch/ontologies/owlswrl/test&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://bioontology.org/projects/ontologies/fma/fmaOwlDlComponent_1_4_0&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://cocus&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://confious&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://iasted&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19103&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19107&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19108&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19109&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19111&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19112&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/%7Ewbs/ontology/2004/09/iso-19115&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.07.12e.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.02d.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.08d.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.svn.sourceforge.net/viewvc/*checkout*/obo/fma-conversion/trunk/fma_obo.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/mosquito_insecticide_resistance.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/worm_phenotype.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biochemical-reaction-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biochemistry-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/bro&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://pellet.owldl.com/ontologies/cancer_cc.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://pellet.owldl.com/ontologies/cancer_ra.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://purl.org/obo/owl/OBO_REL&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.co-ode.org/ontologies/galen&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.co-ode.org/ontologies/photography/photography.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.co-ode.org/roberts/family-tree.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.co-ode.org/roberts/pto.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.estrellaproject.org/lkif-core/lkif-core.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.estrellaproject.org/lkif-core/norm.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.gong.manchester.ac.uk/cton.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.loria.fr/%7Ecoulet/ontology/sopharm/version2.0/sopharm.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.mindswap.org/2003/nciOncology.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.mygrid.org.uk/mygrid-moby-service&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.mygrid.org.uk/ontology&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.opengalen.org/owl/opengalen-no-propchains.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.semanticweb.org/ontologies/FMA-1.4.0-allinone.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.ordnancesurvey.co.uk/ontology/BuildingsAndPlaces/v1.1/BuildingsAndPlaces.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://www.ordnancesurvey.co.uk/ontology/Hydrology/v2.0/Hydrology.owl&format=RDF/XML \ No newline at end of file Added: trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_list.txt =================================================================== --- trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_list.txt (rev 0) +++ trunk/src/dl-learner/org/dllearner/scripts/evaluation/tones_list.txt 2010-05-14 16:02:25 UTC (rev 2145) @@ -0,0 +1,440 @@ +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dfile:/Users/seanb/Desktop/Cercedilla2005/hands-on/people.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dftp://rgd.mcw.edu/pub/data_release/pathway.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://bioontology.org/projects/ontologies/fma/fmaOwlDlComponent_1_4_0%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ccdb.ucsd.edu/SAO/1.2%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://keg.cs.tsinghua.edu.cn/ontology/software%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ksg.meraka.co.za/adolena.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://loki.cae.drexel.edu/~wbs/ontology/2004/09/iso-19103%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://lsdis.cs.uga.edu/projects/glycomics/propreo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://mged.sourceforge.net/ontologies/MGEDOntology.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://msi-ontology.sourceforge.net/ontology/NMR.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.07.12e.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.02d.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.08d.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/caro/caro.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/caro/spatial.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/cell_type/cell.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/amphibian/amphibian_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/medaka_ontology.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/teleost_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/zebrafish_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fly/fly_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/frog/xenopus_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/human/human-dev-anat-abstract.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/human/human-dev-anat-staged.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mosquito_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mouse/EMAP.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mouse/adult_mouse_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/spider/spider_comparative_biology.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/worm/worm_anatomy/WBbt.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/microbial_gross_anatomy/dictyostelium/dictyostelium_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/microbial_gross_anatomy/fungi/fungal_anatomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/chemical/chebi.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/animal_development/fly/fly_development.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/animal_development/worm/worm_development.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/plant_development/plant/po_temporal.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/environmental/envo.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/evidence_code.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/experimental_conditions/imaging_methods/image.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/genomic-proteomic/gene_ontology_edit.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/genomic-proteomic/pro.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/environment/environment_ontology.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/human_disease.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/infectious_disease.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/mammalian_phenotype.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/mosquito_insecticide_resistance.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/plant_traits/plant_trait.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/quality.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/transmission_process.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/worm_phenotype.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/physicochemical/rex.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/taxonomy/fly_taxonomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/taxonomy/teleost_taxonomy.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.sourceforge.net/cl.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.sourceforge.net/so.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://obo.svn.sourceforge.net/viewvc/*checkout*/obo/fma-conversion/trunk/fma_obo.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/annotation%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/atom-common%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/atom-complex-disjoint%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/atom-complex-proton-2.0.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/atom-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/bfo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/biochemical-reaction-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/biochemistry-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/biochemistry-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/biological-measure-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/bro-owl11%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/bro-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/chemistry-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/chemistry-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/element-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/goslim%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/molecule-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/molecule-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/nulo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/organic-compound-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/organic-compound-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/organic-functional-group-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/organic-functional-group-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/periodic-table-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/periodic-table-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/pharmacogenomics-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/pharmacogenomics-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/physics-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/physics-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/property-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/property-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/subatomic-particle-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/subatomic-particle-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/unit-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/unit-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/yowl-complex%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://ontology.dumontierlab.com/yowl-primitive%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://org.semanticweb.ontologies/Ontology1225724807074194000%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://org.semanticweb.ontologies/Ontology1225725433367251000%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://owl.cs.manchester.ac.uk/repository/download?ontology%253Dinteresting_equivalences.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://owl.cs.manchester.ac.uk/repository/download?ontology%253Dtopbotprop.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://pellet.owldl.com/ontologies/cancer_cc.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://pellet.owldl.com/ontologies/cancer_ra.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://protege.cim3.net/file/pub/ontologies/tambis/tambis-full.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://protege.stanford.edu/plugins/owl/dc/protege-dc.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://protege.stanford.edu/plugins/owl/owl-library/koala.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://protege.stanford.edu/plugins/owl/protege%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://psidev.sourceforge.net/mi/psi-mi.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://psidev.sourceforge.net/mod/data/PSI-MOD.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://purl.org/NET/biopax-obo/examples/reaction.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://purl.org/obo/owl/OBO_REL%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://purl.org/ontology/po/%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://reliant.teknowledge.com/DAML/Economy.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://reliant.teknowledge.com/DAML/Transportation.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://smi.stanford.edu/people/dameron/ontology/anatomy/heart%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://song.cvs.sourceforge.net/viewvc/*checkout*/song/ontology/so-xp.obo?revision%253D1.163%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/biosphere.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/data.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/earthrealm.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/human_activities.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/material_thing.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/numerics.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/phenomena.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/process.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/property.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/substance.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/time.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/1.1/units.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/ontology/biosphere.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/ontology/human_activities.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/ontology/material_thing.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/ontology/process.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://sweet.jpl.nasa.gov/ontology/units.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://tripcom.tid.es/DAM%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CMT-CONFTOOL.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CMT-CONFTOOL.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CMT-CONFTOOL.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CMT-CONFTOOL.owl/ctxmatch%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl/ctxmatch%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl/falcon%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-CMT.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-CMT.owl/ctxmatch%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-CONFTOOL.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-CONFTOOL.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CONFTOOL-EKAW.owl/falcon%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-EKAW.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-PCS.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-PCS.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-PCS.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-PCS.owl/ctxmatch%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-SIGKDD.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/CRS-SIGKDD.owl/falcon%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/PCS-CONFTOOL.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/PCS-CONFTOOL.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/PCS-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/PCS-EKAW.owl/coma%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/SIGKDD-EKAW.owl%26version%3Dhttp://webrum.uni-mannheim.de/math/lski/ontdebug/SIGKDD-EKAW.owl/ctxmatch%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.berkeleybop.org/ontologies/obo-all/molecular_function_xp_chebi/molecular_function_xp_chebi.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.berkeleybop.org/ontologies/obo-all/worm_phenotype_xp/worm_phenotype_xp.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.biopax.org/release/biopax-level2.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.bootstrep.eu/ontology/GRO%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.bpiresearch.com/BPMO/2004/03/03/cdl/Countries%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/nautilus%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/amino-acid/2006/05/18/amino-acid.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/brokenPizza/2005/07/06/brokenPizza.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/eukariotic/2005/06/01/eukariotic.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/galen%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/photography/photography.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/pizza/pizza.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/ontologies/ribosome/ribosome.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/roberts/family-tree.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/roberts/particle.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.co-ode.org/roberts/pto.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.man.ac.uk/~horridgm/ontologies/aero.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.man.ac.uk/~horridgm/ontologies/complexity/UnsatCook.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.man.ac.uk/~horrocks/OWL/Ontologies/galen.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/mob.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/obr.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/org.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/owl/ontologies/tambis-patched.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/proc.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.cs.manchester.ac.uk/substance.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.ebi.ac.uk/efo/swo/software-ontology%26version%3Dhttp://www.ebi.ac.uk/efo/swo/software-ontology/versions/expl-1%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.ebi.ac.uk/sbo/docs/exports/SBO_OBO.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.ebi.ac.uk/~kirill/FIX/fix.obo%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/action.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/expression.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/legal-action.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/legal-role.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/lkif-core.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/lkif-rules.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/lkif-top.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/mereology.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/norm.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/process.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/relative-places.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/role.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/time-modification.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.estrellaproject.org/lkif-core/time.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.gong.manchester.ac.uk/cton.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.inoh.org/inohblog/main/MoleculeRoleOntology_222.zip%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.inter2geo.eu/2008/ontology/GeoSkills%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.inter2geo.eu/2008/ontology/ontology.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.loa-cnr.it/Files/DLPOnts/DOLCE_Lite_397.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.loa-cnr.it/ontologies/DUL.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/dav/ontologies/commonsense/food/foodswap.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/dav/ontologies/policyContainmentTest.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/ontologies/GH5Complete.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/ontologies/IEDM.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/ontologies/SC.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/ontologies/debugging/university.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mindswap.org/ontologies/family.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mygrid.org.uk/mygrid-moby-service%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mygrid.org.uk/ontology%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.mygrid.org.uk/ontology/mygrid-unclassified%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.opengalen.org/owl/opengalen-no-propchains.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.ordnancesurvey.co.uk/ontology/BuildingsAndPlaces/v1.1/BuildingsAndPlaces.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.ordnancesurvey.co.uk/ontology/Hydrology/v2.0/Hydrology.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.owl-ontologies.com/Movie.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.owl-ontologies.com/Ontology1191594278.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.owl-ontologies.com/generations-minus-same-individual-axioms.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.owl-ontologies.com/generations.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.owl-ontologies.com/unnamed.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontolgies/chemical%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontologies/2007/9/AirSystem.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontologies/2008/7/Ontology1217839243861.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontologies/FMA-1.4.0-allinone.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontologies/Three-SAT%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dhttp://www.semanticweb.org/ontologies/propertyinferences.owl%26format%3DRDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dinteresting_equivalences.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dtopbotprop.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=all&format=OWL/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=all&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=file:/Users/seanb/Desktop/Cercedilla2005/hands-on/people.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=ftp://rgd.mcw.edu/pub/data_release/pathway.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://bioontology.org/projects/ontologies/fma/fmaOwlDlComponent_1_4_0&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ccdb.ucsd.edu/SAO/1.2&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://keg.cs.tsinghua.edu.cn/ontology/software&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ksg.meraka.co.za/adolena.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://loki.cae.drexel.edu/~wbs/ontology/2004/09/iso-19103&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://lsdis.cs.uga.edu/projects/glycomics/propreo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://mged.sourceforge.net/ontologies/MGEDOntology.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://msi-ontology.sourceforge.net/ontology/NMR.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.07.12e.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.02d.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.08.08d.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/caro/caro.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/caro/spatial.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/cell_type/cell.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/amphibian/amphibian_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/medaka_ontology.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/teleost_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fish/zebrafish_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/fly/fly_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/frog/xenopus_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/human/human-dev-anat-abstract.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/human/human-dev-anat-staged.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mosquito_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mouse/EMAP.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/mouse/adult_mouse_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/spider/spider_comparative_biology.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/animal_gross_anatomy/worm/worm_anatomy/WBbt.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/microbial_gross_anatomy/dictyostelium/dictyostelium_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/gross_anatomy/microbial_gross_anatomy/fungi/fungal_anatomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/chemical/chebi.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/animal_development/fly/fly_development.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/animal_development/worm/worm_development.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/developmental/plant_development/plant/po_temporal.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/environmental/envo.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/evidence_code.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/experimental_conditions/imaging_methods/image.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/genomic-proteomic/gene_ontology_edit.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/genomic-proteomic/pro.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/environment/environment_ontology.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/human_disease.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/infectious_disease.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/mammalian_phenotype.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/mosquito_insecticide_resistance.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/plant_traits/plant_trait.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/quality.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/transmission_process.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/phenotype/worm_phenotype.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/physicochemical/rex.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/taxonomy/fly_taxonomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/taxonomy/teleost_taxonomy.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.sourceforge.net/cl.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.sourceforge.net/so.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://obo.svn.sourceforge.net/viewvc/*checkout*/obo/fma-conversion/trunk/fma_obo.obo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/annotation&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/atom-common&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/atom-complex-disjoint&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/atom-complex-proton-2.0.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/atom-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/bfo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biochemical-reaction-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biochemistry-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biochemistry-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/biological-measure-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/bro-owl11&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/bro-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/chemistry-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/chemistry-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/element-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/goslim&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/molecule-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/molecule-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/nulo&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/organic-compound-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/organic-compound-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/organic-functional-group-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/organic-functional-group-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/periodic-table-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/periodic-table-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/pharmacogenomics-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/pharmacogenomics-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/physics-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/physics-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/property-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/property-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/subatomic-particle-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/subatomic-particle-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/unit-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/unit-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/yowl-complex&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://ontology.dumontierlab.com/yowl-primitive&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://org.semanticweb.ontologies/Ontology1225724807074194000&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://org.semanticweb.ontologies/Ontology1225725433367251000&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dinteresting_equivalences.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://owl.cs.manchester.ac.uk/repository/download?ontology%3Dtopbotprop.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://pellet.owldl.com/ontologies/cancer_cc.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://pellet.owldl.com/ontologies/cancer_ra.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://protege.cim3.net/file/pub/ontologies/tambis/tambis-full.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl&format=RDF/XML +http://owl.cs.manchester.ac.uk/repository/download?ontology=http://protege.stanford.edu/plugins/owl/owl-librar... [truncated message content]
View entire thread
You seem to have CSS turned off. Please don't fill out this field.
Click URL instructions: Right-click on the ad, choose "Copy Link", then paste here → (This may not be possible with some types of ads)
Ad destination/click URL: