amalgame/commit

opmv stuff moved to opmv package

authorJacco van Ossenbruggen
Mon Nov 29 22:30:39 2010 +0100
committerJacco van Ossenbruggen
Mon Nov 29 22:30:39 2010 +0100
commit260a540ed9346c098d6fd13195af5d65d34f988b
tree4f18aac1ea7e2c68922ea0e6a82c9b1e6af66117
parent94d9bd1078cfb591dc44fa46c183d9399ffb9e74
Diff style: patch stat
diff --git a/rdf/tool/Manifest.ttl b/rdf/tool/Manifest.ttl
index 8c92765..dad3763 100644
--- a/rdf/tool/Manifest.ttl
+++ b/rdf/tool/Manifest.ttl
@@ -23,26 +23,11 @@
 		# <align.rdfs> .
 		<align.owl> .
 
-<opmv>
-	a lib:Ontology ;
-	a lib:Virtual ;
-	dcterms:title "Schema for the open provenance model vocabulary "@en ;
-	lib:source <http://open-biomed.sourceforge.net/opmv/opmv.owl> ;
-	owl:imports <opmv.ttl> .
-
-<opmvc>
-	a lib:Ontology ;
-	a lib:Virtual ;
-	dcterms:title "Schema for the common extensions to the open provenance model vocabulary "@en ;
-	lib:source <http://opmv.googlecode.com/svn/trunk/schema/types/common.rdf> ;
-	owl:imports <opmv>, <opmvc.rdf> .
-
-<Amalgame>
+<amalgame>
 	a lib:Ontology ;
 	a lib:Virtual ;
 	dcterms:title "Schema for the Amalgame RDF vocabulary"@en ;
 	lib:source amalgame: ;
 	owl:imports
-		<opmvc> ,
 		<alignmentschema> ,
 		<amalgame.ttl> .
diff --git a/rdf/tool/opmv.ttl b/rdf/tool/opmv.ttl
deleted file mode 100644
index f694270..0000000
--- a/rdf/tool/opmv.ttl
+++ /dev/null
@@ -1,336 +0,0 @@
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
-@prefix : <http://purl.org/net/opmv/ns#> .
-@prefix xml: <http://www.w3.org/XML/1998/namespace> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
-@base <http://purl.org/net/opmv/ns#> .
-@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
-@prefix void:    <http://rdfs.org/ns/void#> .
-@prefix dct:     <http://purl.org/dc/terms/> .
-
-<http://purl.org/net/opmv/ns#> rdf:type owl:Ontology .
-
-<http://purl.org/net/opmv/ns>
-  a owl:Ontology , foaf:Document , void:Dataset ;
-  rdfs:label "The Core OPMV Vocabulary"@en ;
-  dct:title "The Core OPMV Vocabulary"@en ;
-  dct:creator <http://www.jenitennison.com/#me> ;
-  dct:created "2010-04-14"^^xsd:date ;
-  dct:modified "2010-10-04"^^xsd:date ;
-  void:exampleResource :Artifact , :Process , :Agent ;
-.
-
-
-#################################################################
-#
-#    Object Properties
-#
-#################################################################
-
-
-###  http://purl.org/net/opmv/ns#used
-
-<http://purl.org/net/opmv/ns#used> rdf:type owl:ObjectProperty ;
-                                   
-                                   rdfs:comment "used is an abstract property to express that a process used an artifact"@en ;
-					
-				   rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                   
-                                   rdfs:range <http://purl.org/net/opmv/ns#Artifact> ;
-                                   
-                                   rdfs:domain <http://purl.org/net/opmv/ns#Process> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasControlledBy
-
-<http://purl.org/net/opmv/ns#wasControlledBy> rdf:type owl:ObjectProperty ;
-                                              
-                                              rdfs:comment "wasControlledBy is an abstract property to express that a process was controlled by an agent."@en ;
-					
-					      rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-                                              rdfs:range <http://purl.org/net/opmv/ns#Agent> ;
-                                              
-                                              rdfs:domain <http://purl.org/net/opmv/ns#Process> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasDerivedFrom
-
-<http://purl.org/net/opmv/ns#wasDerivedFrom> rdf:type owl:ObjectProperty ;
-                                             
-                                             rdfs:comment "wasDerivedFrom is an abstract property to express that an artifact was derived from another artifact."@en ;
-                                             
-                                             rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-					     rdfs:domain <http://purl.org/net/opmv/ns#Artifact> ;
-                                             
-                                             rdfs:range <http://purl.org/net/opmv/ns#Artifact> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasEncodedBy
-
-<http://purl.org/net/opmv/ns#wasEncodedBy> rdf:type owl:ObjectProperty ;
-                                           
-                                           rdfs:comment "wasEncodedBy is an object property to express that an artifact is encoded by another artifact. The property is useful for expressing the relationship between the data and the file encoding the data."@en ;
-
-					   rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                           
-                                           rdfs:range <http://purl.org/net/opmv/ns#Artifact> ;
-                                           
-                                           rdfs:domain <http://purl.org/net/opmv/ns#Artifact> ;
-                                           
-                                           rdfs:subPropertyOf <http://purl.org/net/opmv/ns#wasDerivedFrom> .
-
-
-
-
-
-###  http://purl.org/net/opmv/ns#wasEndedAt
-
-<http://purl.org/net/opmv/ns#wasEndedAt> rdf:type owl:ObjectProperty ;
-
-					 rdfs:comment "wasEndedAt is an object property to express that a process was finished at a specific time instant. The property chain defines that all processes, that were performed during a specific time period which ended at a specific instant, were actually finished at that specific time instant."@en ;
-
-					 rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                         
-                                         rdfs:domain <http://purl.org/net/opmv/ns#Process> ;
-                                         
-                                         rdfs:range <http://www.w3.org/2006/time#Instant> ;
-                                         
-                                         owl:propertyChainAxiom ( <http://purl.org/net/opmv/ns#wasPerformedAt>
-                                                                  <http://www.w3.org/2006/time#hasEnd>
-                                                                ) .
-
-
-
-###  http://purl.org/net/opmv/ns#wasGeneratedAt
-
-<http://purl.org/net/opmv/ns#wasGeneratedAt> rdf:type owl:ObjectProperty ;
-					     rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-					     rdfs:comment "wasGeneratedAt is an object property to express that an artifact was generated at a specific time instant. This property is very similar to dct:created. Note that in a very fine-grained case the time when an artifact was generated might not be the same as the time when the process producing that artifact finished."@en ;
-                                             
-                                             rdfs:domain <http://purl.org/net/opmv/ns#Artifact> ;
-                                             
-                                             rdfs:subPropertyOf owl:topObjectProperty ;
-                                             
-                                             rdfs:range <http://www.w3.org/2006/time#Instant>  
-.
-
-
-###  http://purl.org/net/opmv/ns#wasUsedAt
-
-<http://purl.org/net/opmv/ns#wasUsedAt> rdf:type owl:ObjectProperty ;
-					rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-					rdfs:comment "wasUsedAt is an object property to express that an artifact was used at a specific time instant. An artifact might not be used at the starting time of the process that actually consumed it. Hence, we provide a different time-related property to express when an artifact was used."@en ;
-                                             
-                                        rdfs:domain <http://purl.org/net/opmv/ns#Artifact> ;
-                                             
-                                        rdfs:subPropertyOf owl:topObjectProperty ;
-                                             
-                                        rdfs:range <http://www.w3.org/2006/time#Instant> ;
-					
-.
-
-###  http://purl.org/net/opmv/ns#withRespectOf
-
-<http://purl.org/net/opmv/ns#withRespectOf> rdf:type owl:ObjectProperty ;
-					rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-					rdfs:comment "withRespectOf is an object property to associate a time instant at which an artifact was used or generated with the process that used or generated that artifact. At a very fine-grained distinction, the time when an artifact was used or generated might not be exactly the same as the starting or ending time of the process in which the artifact was involved. The related properties opmv:wasUsedAt and opmv:wasGeneratedAt can be used as shortcuts to express time-related information about an artifact. The property opmv:wasUsedAt is only used when users want to express precisely in which process an artifact was used or generated. It can be omitted in most cases."@en ;
-                                             
-                                        rdfs:domain <http://www.w3.org/2006/time#Instant> ;
-                                             
-                                        rdfs:subPropertyOf owl:topObjectProperty ;
-                                             
-                                        rdfs:range <http://purl.org/net/opmv/ns#Process> ;
-					
-.
-
-
-###  http://purl.org/net/opmv/ns#wasGeneratedBy
-
-<http://purl.org/net/opmv/ns#wasGeneratedBy> rdf:type owl:ObjectProperty ;
-                                             
-                                             rdfs:comment "wasGeneratedBy is an abstract property to express that an artifact was generated by a process."@en ;
-                                             
-					     rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-
-                                             rdfs:domain <http://purl.org/net/opmv/ns#Artifact> ;
-                                             
-                                             rdfs:range <http://purl.org/net/opmv/ns#Process> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasPerformedAt
-
-<http://purl.org/net/opmv/ns#wasPerformedAt> rdf:type owl:ObjectProperty ;
-
-					     rdfs:comment "wasPerformedAt is an object property to express that a process is performed either at a specific time instant or during a specific time interval."@en ;
-
-					     rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                             
-                                             rdfs:domain <http://purl.org/net/opmv/ns#Process> ;
-                                             
-                                             rdfs:subPropertyOf owl:topObjectProperty ;
-                                             
-                                             rdfs:range <http://www.w3.org/2006/time#TemporalEntity> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasPerformedBy
-
-<http://purl.org/net/opmv/ns#wasPerformedBy> rdf:type owl:ObjectProperty ;
-                                             
-                                             rdfs:comment "wasPerformedBy is an object property to express that a process was performed by another process. It is a sub-property of wasControlledBy. "@en ;
-					     rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                             
-                                             rdfs:range <http://purl.org/net/opmv/ns#Agent> ;
-                                             
-                                             rdfs:domain <http://purl.org/net/opmv/ns#Process> ;
-                                             
-                                             rdfs:subPropertyOf <http://purl.org/net/opmv/ns#wasControlledBy> .
-
-
-
-###  http://purl.org/net/opmv/ns#wasStartedAt
-
-<http://purl.org/net/opmv/ns#wasStartedAt> rdf:type owl:ObjectProperty ;
-
-					   rdfs:comment "wasStartedAt is an object property to express that a process is started at a specific time instant. The property chain defines that all processes, that were performed during a specific time period which began at a specific instant, were actually started at that specific time instant."@en ;
-
-					   rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                           
-                                           rdfs:domain <http://purl.org/net/opmv/ns#Process> ;
-                                           
-                                           rdfs:range <http://www.w3.org/2006/time#Instant> ;
-                                           
-                                           owl:propertyChainAxiom ( <http://purl.org/net/opmv/ns#wasPerformedAt>
-                                                                    <http://www.w3.org/2006/time#hasBeginning>
-                                                                  ) .
-
-
-
-###  http://purl.org/net/opmv/ns#wasTriggeredBy
-
-<http://purl.org/net/opmv/ns#wasTriggeredBy> rdf:type owl:ObjectProperty ;
-                                             
-                                             rdfs:comment "wasTriggeredBy is an abstract property to express that a process was triggerred by another process. "@en ;
-
-					     rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                             
-                                             rdfs:range <http://purl.org/net/opmv/ns#Process> ;
-                                             
-                                             rdfs:domain <http://purl.org/net/opmv/ns#Process> .
-
-
-
-###  http://www.w3.org/2002/07/owl#topObjectProperty
-
-owl:topObjectProperty rdf:type owl:ObjectProperty .
-
-
-
-###  http://www.w3.org/2006/time#hasBeginning
-
-<http://www.w3.org/2006/time#hasBeginning> rdf:type owl:ObjectProperty ;
-
-					   rdfs:isDefinedBy <http://www.w3.org/2006/time> ;
-                                           
-                                           rdfs:range <http://www.w3.org/2006/time#Instant> ;
-                                           
-                                           rdfs:domain <http://www.w3.org/2006/time#TemporalEntity> .
-
-
-
-###  http://www.w3.org/2006/time#hasEnd
-
-<http://www.w3.org/2006/time#hasEnd> rdf:type owl:ObjectProperty ;
-
-				     rdfs:isDefinedBy <http://www.w3.org/2006/time> ;
-                                     
-                                     rdfs:range <http://www.w3.org/2006/time#Instant> ;
-                                     
-                                     rdfs:domain <http://www.w3.org/2006/time#TemporalEntity> .
-
-
-#################################################################
-#
-#    Classes
-#
-#################################################################
-
-
-###  http://purl.org/net/opmv/ns#Agent
-
-<http://purl.org/net/opmv/ns#Agent> rdf:type owl:Class ;
-                                    
-				    owl:equivalentClass foaf:Agent ;
-
-                                    owl:disjointWith <http://purl.org/net/opmv/ns#Process> ;
-
-				    rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                    
-                                    rdfs:comment "Agent is a contextual entity acting as a catalyst of a process, enabling, facilitating, controlling, or affecting its execution."@en .
-
-
-
-###  http://purl.org/net/opmv/ns#Artifact
-
-<http://purl.org/net/opmv/ns#Artifact> rdf:type owl:Class ;
-                                       
-                                       owl:disjointWith <http://purl.org/net/opmv/ns#Process> ;
-
-				       rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;
-                                       
-                                       rdfs:comment "Artifact is a general concept that represents immutable piece of state, which may have a physical embodiment in a physical object, or a digital representation in a computer system."@en .
-
-
-
-###  http://purl.org/net/opmv/ns#Process
-
-<http://purl.org/net/opmv/ns#Process> rdf:type owl:Class ;
-
-				      rdfs:isDefinedBy <http://purl.org/net/opmv/ns> ;  
-                                    
-                                      rdfs:comment "Process refers to an action or series of actions performed on or caused by artifacts, and resulting in new artifacts."@en .
-
-
-
-###  http://www.w3.org/2006/time#Instant
-
-<http://www.w3.org/2006/time#Instant> rdf:type owl:Class ;
-                                      
-				      rdfs:isDefinedBy <http://www.w3.org/2006/time> ;  
-
-                                      rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> .
-
-
-
-###  http://www.w3.org/2006/time#Interval
-
-<http://www.w3.org/2006/time#Interval> rdf:type owl:Class ;
-
-				      rdfs:isDefinedBy <http://www.w3.org/2006/time> ;  
-                                       
-                                       rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> .
-
-
-
-###  http://www.w3.org/2006/time#TemporalEntity
-
-<http://www.w3.org/2006/time#TemporalEntity> rdf:type owl:Class ;
-				      rdfs:isDefinedBy <http://www.w3.org/2006/time> ;  
-.
-
-
-
-
-###  Generated by the OWL API (version 3.0.0.1451) http://owlapi.sourceforge.net
-
diff --git a/rdf/tool/opmvc.rdf b/rdf/tool/opmvc.rdf
deleted file mode 100644
index c79b6ae..0000000
--- a/rdf/tool/opmvc.rdf
+++ /dev/null
@@ -1,145 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:common="http://purl.org/net/opmv/types/common#"
-   xmlns:cs="http://purl.org/vocab/changeset/schema#"
-   xmlns:dct="http://purl.org/dc/terms/"
-   xmlns:doap="http://usefulinc.com/ns/doap#"
-   xmlns:foaf="http://xmlns.com/foaf/0.1/"
-   xmlns:http="http://www.w3.org/2006/http#"
-   xmlns:opmv="http://purl.org/net/opmv/ns#"
-   xmlns:owl="http://www.w3.org/2002/07/owl#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
-   xmlns:skos="http://www.w3.org/2004/02/skos/core#"
-   xmlns:void="http://rdfs.org/ns/void#"
-   xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
-  <owl:Ontology rdf:about="http://purl.org/net/opmv/types/common">
-    <dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-06-06</dct:created>
-    <dct:creator rdf:resource="http://www.jenitennison.com/#me"/>
-    <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-09-12</dct:modified>
-    <dct:title xml:lang="en">Common Specialisations for OPMV</dct:title>
-    <void:exampleResource rdf:resource="http://purl.org/net/opmv/types/common#Download"/>
-    <void:exampleResource rdf:resource="http://purl.org/net/opmv/types/common#usedData"/>
-    <void:exampleResource rdf:resource="http://purl.org/net/opmv/types/common#usedScript"/>
-    <void:vocabulary rdf:resource="http://purl.org/net/opmv/ns#"/>
-    <void:vocabulary rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/>
-    <void:vocabulary rdf:resource="http://www.w3.org/2002/07/owl#"/>
-    <rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>
-    <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
-    <rdfs:label xml:lang="en">Common Specialisations for OPMV</rdfs:label>
-  </owl:Ontology>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Download">
-    <rdfs:comment xml:lang="en">The download of a file. The location that the file was downloaded from can be indicated through a common:downloadUri or (in more detail) a common:connection. The time at which the download occurred should be indicated through opmv:wasPerformedAt.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Download</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-  </rdfs:Class>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Zip">
-    <rdfs:comment xml:lang="en">The zipping of a collection of files. The files that are zipped should be indicated through common:usedData.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Zip</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-  </rdfs:Class>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Unzip">
-    <rdfs:comment xml:lang="en">The unzipping of an archive.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Unzip</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-  </rdfs:Class>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Edit">
-    <rdfs:comment xml:lang="en">The editing of a resource by a person.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Edit</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-  </rdfs:Class>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Program">
-    <rdfs:comment xml:lang="en">A computer program that performs some action (and is therefore an opmv:Agent), is controlled by someone and is an instantiation of some piece of software.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Program</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/ns#Agent"/>
-  </rdfs:Class>
-  <rdfs:Class rdf:about="http://purl.org/net/opmv/types/common#Service">
-    <rdfs:comment xml:lang="en">An online service.</rdfs:comment>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Service</rdfs:label>
-    <rdfs:subClassOf rdf:resource="http://purl.org/net/opmv/types/common#Program"/>
-  </rdfs:Class>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#usedData">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">The data that was used in the execution of the process.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Used Data</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/net/opmv/ns#Artifact"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/net/opmv/ns#used"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#usedScript">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">The script that was used to drive the process.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Used Script</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/net/opmv/ns#Artifact"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/net/opmv/ns#used"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#isCachedResultOf">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">This indicates that the resource is a cached copy of the result of a download from some location at a particular time.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/ns#Artifact"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Cached Result Of</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/net/opmv/types/common#Download"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/net/opmv/ns#wasGeneratedBy"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#isCachedCopyOf">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">This indicates the resource that this is a cached copy of. Use opmv:wasGeneratedAt to indicate the time at which the copy was made.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/ns#Artifact"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Cached Copy Of</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/net/opmv/ns#Artifact"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/source"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/net/opmv/ns#wasDerivedFrom"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#operator">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">The agent (usually but not always a foaf:Agent) that operates a program.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/types/common#Program"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Operator</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/net/opmv/ns#Agent"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#changeSet">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">A change set that describes the changes that were applied to an RDF graph through the process.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/ns#Process"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">ChangeSet</rdfs:label>
-    <rdfs:range rdf:resource="http://purl.org/vocab/changeset/schema#ChangeSet"/>
-    <rdfs:subPropertyOf rdf:resource="http://purl.org/net/opmv/ns#used"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#downloadUri">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
-    <rdfs:comment xml:lang="en">This property can be used as a simple way of providing the URI of the resource that has been downloaded. In the case of an HTTP download, it will be the Content-Location of the resource.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/types/common#Download"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Download URI</rdfs:label>
-    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#connection">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">This property can be used to describe in more detail an HTTP connection that was used to download a file.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/types/common#Download"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">HTTP Connection</rdfs:label>
-    <rdfs:range rdf:resource="http://www.w3.org/2006/http#Connection"/>
-  </rdf:Property>
-  <rdf:Property rdf:about="http://purl.org/net/opmv/types/common#software">
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
-    <rdfs:comment xml:lang="en">The software that was used to execute the program.</rdfs:comment>
-    <rdfs:domain rdf:resource="http://purl.org/net/opmv/types/common#Program"/>
-    <rdfs:isDefinedBy rdf:resource="http://purl.org/net/opmv/types/common"/>
-    <rdfs:label xml:lang="en">Software</rdfs:label>
-    <rdfs:range rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-  </rdf:Property>
-</rdf:RDF>
diff --git a/rdf/tool/update.sh b/rdf/tool/update.sh
deleted file mode 100755
index 9debf89..0000000
--- a/rdf/tool/update.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-curl -o opmv.ttl  -D opmv.headers  http://open-biomed.sourceforge.net/opmv/opmv.owl
-curl -o opmvc.rdf -D opmvc.headers http://opmv.googlecode.com/svn/trunk/schema/types/common.rdf
-