Changes between Version 8 and Version 9 of SparqlTutorial

Show
Ignore:
Timestamp:
2010/02/10 10:36:03 (14 years ago)
Author:
akinjo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SparqlTutorial

    v8 v9  
    1414 * http://dbpedia.org/fct 
    1515 
     16{{{ 
     17select ?s2 as ?c1 count (*) as ?c2 
     18where { 
     19?s1 ?s1textp ?o1 . 
     20?o1 bif:contains '"hexokinase"' . 
     21?s1 a <http://purl.uniprot.org/core/Sequence> . 
     22?s1 a <http://purl.uniprot.org/core/Citation_Statement> . 
     23?s1 <http://purl.uniprot.org/core/memberOf> ?s2 . 
     24group by ?s2 order by desc 2 limit 20 offset 0 
     25}}}