[[PageOutline]] == KazusaAnnoation RDF == [http://a.kazusa.or.jp KazusaAnnotation] is a social genome annotation tool. KazusaAnnotation SPARQL endpoint: http://beta.dbcls.jp/4store/ka/test/ == Turtle sample == {{{ "2008-01-15T16:23:42+09:00"^^ . "yoshimura_h" . gi:annotate . "CyanoBase/Synechocystis - syn:sll0821" . . "CyanoBase/Synechocystis - syn:sll0821" . "sll0821" . gi:gene . gi:aspect "genes" . gi:dsn . gi:dataset . gi:species "Synechocystis" . gi:comment "[pmid:15641769][Discussion]" . gi:tag "pmid:15641769" . gi:tag "pmid" . gi:tag "Discussion" . }}} == vocabulary == * http://purl.org/dc/elements/1.1/date * http://purl.org/dc/elements/1.1/creator * http://purl.org/dc/elements/1.1/title * http://purl.org/dc/elements/1.1/uri * http://www.w3.org/2000/01/rdf-schema#label http://a.kazusa.or.jp/core/1.0/ (image) * http://a.kazusa.or.jp/core/1.0/annotate * http://a.kazusa.or.jp/core/1.0/gene * http://a.kazusa.or.jp/core/1.0/aspect * http://a.kazusa.or.jp/core/1.0/dsn * http://a.kazusa.or.jp/core/1.0/dataset * http://a.kazusa.or.jp/core/1.0/commont * http://a.kazusa.or.jp/core/1.0/tag * http://a.kazusa.or.jp/core/1.0/species == Sample queries == === Bookmarks and tags annotated with gene "slr1311" === {{{ SELECT ?b ?tag WHERE { ?page "slr1311" . ?b ?p ?page . ?b ?tag } LIMIT 1000 }}} === bookmarks and predicates of a page === {{{ select * where {?s ?p } limit 10 }}} === bookmarks and tags of page 23 === {{{ select ?s ?tag where { ?s ?p . ?s ?tag } limit 10 }}} === pages and labels === {{{ select * WHERE { ?s ?o } limit 10 }}} === slr1311 page === {{{ select * WHERE { ?s "slr1311" } limit 10 }}} === bookmarks annotated with slr1311 page === {{{ select * WHERE { ?page "slr1311" . ?b ?page . } limit 10 }}} === bookmarks and tags annotated with slr1311 page === {{{ select * WHERE { ?page "slr1311" . ?b ?page . ?b ?tag . } }}} === bookmarks to have "title" tag === {{{ select * where {?s "title" } }}} === bookmarks and genes in article pmid:8193127 === {{{ select * where { ?b "pmid:8193127" . ?b ?page . ?page ?gene } }}} === tags of article pmid:8193127 === {{{ select ?tag where { ?b "pmid:8193127" . ?b ?page . ?c ?page . ?c ?tag } }}} === generic guery === {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: SELECT * WHERE { ?s ?p ?o } LIMIT 10 }}} === "slr1485" === {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: SELECT * WHERE { ?s ?p "slr1485" } LIMIT 10 }}} {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: CONSTRUCT { ?s ?p "slr1485" } WHERE { ?s ?p "slr1485" } LIMIT 10 }}} {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: SELECT * WHERE { ?p ?o } LIMIT 10 }}} {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: CONSTRUCT { ?p ?o } WHERE { ?p ?o } LIMIT 10 }}} {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: SELECT * WHERE { ?s ?p } LIMIT 10 }}} {{{ PREFIX rdf: PREFIX rdfs: PREFIX ka: PREFIX mb: PREFIX togo: CONSTRUCT { ?s ?p } WHERE { ?s ?p } LIMIT 10 }}}