Removed implementationOntology - now included in workflowOntology
authorStian Soiland-Reyes <soiland-reyes@cs.manchester.ac.uk>
Tue, 27 Sep 2011 17:59:34 +0100
changeset 387 b5f3ca1d024c
parent 386 1e4db3445dcb
child 388 0c6c0edc6650
Removed implementationOntology - now included in workflowOntology
ontology/examples/ontology-extensions/workflow/implementationOntology.ttl
--- a/ontology/examples/ontology-extensions/workflow/implementationOntology.ttl	Tue Sep 27 17:59:12 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix cnt: <http://www.w3.org/2011/content#> .
-@prefix dcterms: <http://purl.org/dc/terms/> .
-
-# Domain-specific ontologies
-@prefix wf: <http://www.example.com/scientific-workflow#> .
-@prefix impl: <http://company.example.org/engine-implementation#> .
-
-@prefix prov: <http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/ProvenanceOntology.owl#> .
-# Not (yet) in the official OWL
-@prefix prov2: <http://www.w3.org/2011/prov/new#> .
-
-
-impl:WorkflowEngine a owl:Class ;
-    rdfs:subClassOf wf:WorkflowEngine .
-
-impl:FileValue a owl:Class ;
-    owl:has_key ( impl:file wf:value ) ;
-    rdfs:subClassOf prov:Entity, wf:Value .
-
-impl:file a owl:DataProperty ;
-    rdfs:domain impl:FileValue .
-
-impl:Workflow a owl:Class ;
-    rdfs:subClassOf wf:ProcessDefinition .    
-
-impl:Constant a owl:Class ;
-    rdfs:subClassOf wf:ProcessorDefinition .
-impl:constant a owl:DataProperty ;
-    rdfs:domain impl:Command .
-
-impl:Command a owl:Class ;
-    rdfs:subClassOf wf:ProcessorDefinition .
-
-impl:command a owl:DataProperty ;
-    rdfs:domain impl:Command .
-
-impl:wasReadFrom a owl:ObjectProperty ;
-    rdfs:domain wf:Value ;
-    rdfs:range impl:FileValue ;
-    rdfs:subPropertyOf prov:wasDerivedFrom .