Skip to content

Commit

Permalink
#183: change "labels" to "metadata"
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebeal committed Mar 1, 2023
1 parent 5a72e1f commit 7c8eb40
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions labop/labop.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -269,20 +269,20 @@ labop:Dataset a owl:Class ;
rdfs:comment """The Dataset class is used to associate a set of data and metadata for a collection of samples,
thereby producing a collection of data and attributes ready for analysis.
The fromSamples property of the data and the forSamples property of the labels must be the same SampleCollection
The fromSamples property of the data and the forSamples property of the metadata must be the same SampleCollection
""" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty labop:data ],
[ a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty labop:labels ],
owl:onProperty labop:metadata ],
[ a owl:Restriction ;
owl:allValuesFrom labop:SampleMetadata ;
owl:onProperty labop:labels ],
owl:onProperty labop:metadata ],
[ a owl:Restriction ;
owl:minCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty labop:labels ],
owl:onProperty labop:metadata ],
[ a owl:Restriction ;
owl:minCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty labop:data ],
Expand Down Expand Up @@ -470,9 +470,9 @@ labop:data a owl:ObjectProperty ;
rdfs:range labop:SampleData .


labop:labels a owl:ObjectProperty ;
rdfs:label "labels" ;
rdfs:comment """The labels property indicates the SampleMetadata used in a Dataset.""" ;
labop:metadata a owl:ObjectProperty ;
rdfs:label "metadata" ;
rdfs:comment """The metadata property indicates the SampleMetadata used in a Dataset.""" ;
rdfs:domain labop:Dataset ;
rdfs:range labop:SampleMetadata .

Expand Down

0 comments on commit 7c8eb40

Please sign in to comment.