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

From OpenWetWare
Jump to navigationJump to search
Line 44: Line 44:
*[http://jena.sourceforge.net/tutorial/RDF_API Intro to RDF and Jena RDP API]
*[http://jena.sourceforge.net/tutorial/RDF_API Intro to RDF and Jena RDP API]
*[http://www.w3.org/Consortium/Offices/Presentations/RDFTutorial/ RDF Tutorial @ W3C] - a lengthy presentation
*[http://www.w3.org/Consortium/Offices/Presentations/RDFTutorial/ RDF Tutorial @ W3C] - a lengthy presentation
*[http://logicerror.com/rdf Resource Description Framework] @ logicerror.com
*[http://www.w3schools.com/rdf/default.asp RDF tutorial] from w3schools.com
*[http://www.w3schools.com/rdf/default.asp RDF tutorial] from w3schools.com
*[http://safari.oreilly.com/0596002637 Practical RDF] - O'Reilly book, decent but not great
*[http://safari.oreilly.com/0596002637 Practical RDF] - O'Reilly book, decent but not great

Revision as of 15:50, 3 May 2006

Home        About        Conferences        Labs        Courses        Resources        FAQ       

Overview

Resource Definition Framework - used for making statements about facts

<http://www.example.org/index.html>  has a creator whose value is John Smith

the RDF terms for the various parts of the statement are:

Beware of thinking of RDF as a format for serailizing objects. The semantic web is different - it is weblike.

  • Any document can (potentially) say anything about anything. There is no set of "slots" or "attributes" for a class. The properties defined in a schema are not the only properties which one can use to describe something which is in that class.
  • An object can be in many classes. When you create a semantic web document about something, others can deduce more things about it, in vocabularies you have never heard of.
  • Entity-Relationship and UML diagrams are useful for describing RDF -- so long as you remember the above.

From http://www.w3.org/2000/10/swap/doc/formats.

N3

Notes:

  • Comments start with # sign
  • When you say what type of thing something is, you say a Class it belongs to.
  • A property is something which is used to declare a relationship between two things.
  • When the subject of any property must be in a class, that class is a domain of the property.
  • When the object must be in a class, that class is called the range of a property.
  • class identifiers start with capitals, properties with lower case letters
  • a rdf:type
  • => ?

References:

Turtle

  • Turtle - Terse RDF Triple Language - defines a text syntax for RDF called Turtle as an extension of the N-Triples test case format carefully taking the most useful and appropriate things added from Notation 3 while keeping the syntax describing only RDF graphs.

References

Miscellaneous

  • Fresnel - Display Vocabulary for RDF

This site is hosted on OpenWetWare and can be edited by all members of the Synthetic Biology community.
Making life better, one part at a time.