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

From OpenWetWare
Jump to navigationJump to search
No edit summary
 
 
(20 intermediate revisions by the same user not shown)
Line 1: Line 1:
===Resources===
{{Synthetic biology top}}
#[http://www.w3.org/2001/11/13-RDF-Query-Rules/ RDF Query Survey] - query language survey
<div style="padding: 10px; color: #000000; background-color: #ccccff; width:730px" >
#[http://librdf.org/query Redland Rasqal RDF Query Demonstration]
 
====RDQL====
==Miscellaneous==
#[http://www.w3.org/Submission/RDQL/ RDQL - A Query Language for RDF]
*[http://www.w3.org/2001/11/13-RDF-Query-Rules/ RDF Query Survey] - query language survey
*[http://www.aifb.uni-karlsruhe.de/WBS/pha/rdf-query/ A Comparison of RDF Query Languages] from 2005-04-11
*[http://librdf.org/query Redland Rasqal RDF Query Demonstration]
*[http://www.openrdf.org/doc/rql-tutorial.html Sesame RQL: a Tutorial]
*[http://www.w3.org/2004/05/06-Algae/ Algae] an RDF Query Language used in the [http://www.w3.org/2001/Annotea/ W3C Annotea Server]
*[http://esw.w3.org/topic/LifeSciencesQueries Life Sciences Queries] - ESW Wiki
*[http://mcdb750.med.yale.edu/yeasthub/queryForm.jsp Yeast Hub query form]
*[http://www.w3.org/2001/sw/DataAccess/ RDF Data Access Working Group (DAWG)]
**[http://esw.w3.org/topic/DawgShows DawgShows] - ESW Wiki
*[http://sw.nokia.com/uriqa/URIQA.html URIQA (URI Query Agent)] is a model for knowledge discovery, both from authoritative sources as well as from arbitrary third party sources. It introduces an extension to the present web architecture used to indicate to a web server that it should resolve the specified URI in terms of knowledge about the resource denoted by that URI rather than in terms of a representation of the resource in question.
**[http://www.w3.org/Submission/CBD/ CBD] - Concise Bounded Description
**Semantic Web Methods for HTTP: URIQA extends the present web architecture by introducing the following new HTTP methods for interacting with an authoritative semantic web enabled web server:
***MGET - return a concise bounded description of the resource denoted by the request URI
***MPUT - add the statements contained in a concise bounded description of the resource, provided as input, to the (possibly empty) body of knowledge maintained about the resource denoted by the request URI
***MDELETE - remove the statements contained in a concise bounded description of the resource, provided as input, from the existing knowledge maintained about the resource denoted by the request URI
 
==RDQL==
#[http://www.w3.org/Submission/RDQL/ RDQL - A Query Language for RDF] - W3C submission
#[http://phpxmlclasses.sourceforge.net/rdql.html RDQL Tutorial] from phpxmlclasses project
#[http://phpxmlclasses.sourceforge.net/rdql.html RDQL Tutorial] from phpxmlclasses project
#[http://jena.sourceforge.net/tutorial/RDQL/index.html A Programmer's Introduction to RDQL] - Jena tutorial
#[http://jena.sourceforge.net/tutorial/RDQL/index.html A Programmer's Introduction to RDQL] - Jena tutorial
====SPARQL====
 
#[http://www.w3.org/TR/rdf-sparql-query/ SPARQL Query Language for RDF]
==SPARQL==
#[http://www.w3.org/TR/rdf-sparql-XMLres/ SPARQL Query Results XML Format]
The SPARQL Protocol and RDF Query Language (SPARQL) is a query language and protocol for RDF.
#[http://www.w3.org/TR/rdf-sparql-protocol/ SPARQL Protocol for RDF]
 
#[http://www.oreillynet.com/lpt/wlg/7823 SPARQL: Web 2.0 Meet the Semantic Web]
REST conceptualizes (and HTTP standardizes) public interfaces; SPARQL standardizes how one interacts, ad hoc'edly and without central control, with arbitrary slices of someone else's data.
 
*[[Wikipedia:SPARQL|SPARQL]] Wikipedia article (specs, articles, tutorials, examples, demos)
*[http://thefigtrees.net/lee/sw/sparql-faq SPARQL FAQ]
*[http://www.w3.org/TR/rdf-sparql-query/ SPARQL Query Language for RDF]
*[http://www.w3.org/TR/rdf-sparql-XMLres/ SPARQL Query Results XML Format]
*[http://www.w3.org/TR/rdf-sparql-protocol/ SPARQL Protocol for RDF]
*[http://www.oreillynet.com/lpt/wlg/7823 SPARQL: Web 2.0 Meet the Semantic Web] @ oreillynet.com
*[http://www.xml.com/pub/a/2005/11/16/introducing-sparql-querying-semantic-web-tutorial.html Introducing SPARQL: Querying the Semantic Web] @ xml.com
*[http://www.ibm.com/developerworks/library/j-sparql/ Search RDF data with SPARQL] @ ibm.com (using Jena Toolkit)
*[http://planb.nicecupoftea.org/archives/001302.html Ajax and Sparql]
*[http://www.dajobe.org/2005/04-sparql/ SPARQL RDF Query Language Reference]
*[http://jena.sourceforge.net/ARQ/Tutorial/index.html ARQ - SPARQL tutorial]
 
</div>
{{Synthetic biology bottom}}

Latest revision as of 14:59, 29 September 2006

Home        About        Conferences        Labs        Courses        Resources        FAQ       

Miscellaneous

  • RDF Query Survey - query language survey
  • A Comparison of RDF Query Languages from 2005-04-11
  • Redland Rasqal RDF Query Demonstration
  • Sesame RQL: a Tutorial
  • Algae an RDF Query Language used in the W3C Annotea Server
  • Life Sciences Queries - ESW Wiki
  • Yeast Hub query form
  • RDF Data Access Working Group (DAWG)
  • URIQA (URI Query Agent) is a model for knowledge discovery, both from authoritative sources as well as from arbitrary third party sources. It introduces an extension to the present web architecture used to indicate to a web server that it should resolve the specified URI in terms of knowledge about the resource denoted by that URI rather than in terms of a representation of the resource in question.
    • CBD - Concise Bounded Description
    • Semantic Web Methods for HTTP: URIQA extends the present web architecture by introducing the following new HTTP methods for interacting with an authoritative semantic web enabled web server:
      • MGET - return a concise bounded description of the resource denoted by the request URI
      • MPUT - add the statements contained in a concise bounded description of the resource, provided as input, to the (possibly empty) body of knowledge maintained about the resource denoted by the request URI
      • MDELETE - remove the statements contained in a concise bounded description of the resource, provided as input, from the existing knowledge maintained about the resource denoted by the request URI

RDQL

  1. RDQL - A Query Language for RDF - W3C submission
  2. RDQL Tutorial from phpxmlclasses project
  3. A Programmer's Introduction to RDQL - Jena tutorial

SPARQL

The SPARQL Protocol and RDF Query Language (SPARQL) is a query language and protocol for RDF.

REST conceptualizes (and HTTP standardizes) public interfaces; SPARQL standardizes how one interacts, ad hoc'edly and without central control, with arbitrary slices of someone else's data.

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.