Synthetic Biology:Semantic web ontology/OWL: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
Line 44: Line 44:
===Resources===
===Resources===
#[http://en.wikipedia.org/wiki/Web_Ontology_Language Wikipedia page]
#[http://en.wikipedia.org/wiki/Web_Ontology_Language Wikipedia page]
#[http://www.w3.org/2004/OWL/ Web Ontology Language OWL]: W3C Semantic Web Activity
#[http://www.w3.org/2004/OWL/ Web Ontology Language OWL]: W3C Semantic Web Activity - links
#[http://www.w3.org/2004/OWL/ OWL @ W3C] - links
#[http://protege.stanford.edu/publications/ontology_development/ontology101-noy-mcguinness.html Ontology Development 101]: A Guide to Creating Your First Ontology
#[http://www.w3.org/TR/owl-guide/ OWL Web Ontology Language Guide]
#[http://www.w3.org/TR/owl-guide/ OWL Web Ontology Language Guide]
#[http://www.w3.org/TR/owl-features/  OWL Web Ontology Language Overview]
#[http://www.w3.org/TR/owl-features/  OWL Web Ontology Language Overview]

Revision as of 16:35, 21 November 2005

Web Ontology Language (OWL) is used to define relationships between vocabularies and other constraints. As the Semantic Web is inherently distributed, OWL must allow for information to be gathered from distributed sources.

OWL adds the ability to indicate when two classes or properties are identical. OWL declarations provide additional information to let rule-checking and theorem-proving systems work with RDF data. Other richer schema capabilities that have been identified as useful (but that are not provided by RDF Schema) include:

  • cardinality constraints on properties, e.g., that a Person has exactly one biological father.
  • specifying that a given property (such as ex:hasAncestor) is transitive, e.g., that if A ex:hasAncestor B, and B ex:hasAncestor C, then A ex:hasAncestor C.
  • specifying that a given property is a unique identifier (or key) for instances of a particular class.
  • specifying that two different classes (having different URIrefs) actually represent the same class.
  • specifying that two different instances (having different URIrefs) actually represent the same individual.
  • specifying constraints on the range or cardinality of a property that depend on the class of resource to which a property is applied, e.g., being able to say that for a soccer team the ex:hasPlayers property has 11 values, while for a basketball team the same property should have only 5 values.
  • the ability to describe new classes in terms of combinations (e.g., unions and intersections) of other classes, or to say that two classes are disjoint (i.e., that no resource is an instance of both classes).

OWL introduces its own Class and Thing to differentiate the individuals from the classes

owl:Class rdfs:subClassOf rdfs:Class
owl:Thing rdf:type owl:Class

owl:oneOf - class consists of exactly of those individuals:

<rdf:Property rdf:ID="chartType">
   <rdf:range>
      <owl:Class>
         <owl:oneOf rdf:parseType="Collection">
            <owl:Thing rdf:ID="Bar"/>
            <owl:Thing rdf:ID="Pie"/>
            <owl:Thing rdf:ID="Radar"/>
            …
         </owl:oneOf>
      </owl:Class>
   </rdf:range>
</rdf:Property>

owl:unionOf (also: complementOf, intersectionOf)

<owl:Class rdf:ID="AnimationEntity">
   <owl:unionOf rdf:parseType="Collection">
       <owl:Class rdf:about="#animate"/>
       <owl:Class rdf:about="#animateMotion"/>
       <owl:Class rdf:about="#animateColor"/>
       …
   </owl:unionOf>
</owl:Class>

Resources

  1. Wikipedia page
  2. Web Ontology Language OWL: W3C Semantic Web Activity - links
  3. Ontology Development 101: A Guide to Creating Your First Ontology
  4. OWL Web Ontology Language Guide
  5. OWL Web Ontology Language Overview
  6. OWL Web Ontology Language Reference
  7. OWL Web Ontology Language Semantics and Abstract Syntax
  8. OWL Vocabulary reference
  9. OWL Implementations as of December 2003 (Historical)
  10. OWL Web Ontology Language Semantics and Abstract Syntax
  11. Vocabulary Documentation from W3C