Skip to content
JervenBolleman edited this page May 20, 2014 · 25 revisions

RDF model (Ensembl/DDBJ/RefSeq)

SIO or SO

  • ?gene sio:is-transcribed-into or so:so_transcribed_to ?transcript
  • ?transcript sio:has-ordered-part ?exon, ?exon, ?exon ...
  • ?exon sio:has-value, sio:refers-to ?exon_stable_uri
  • Ask SO group (OBO foundry) to add descriptions and mappings to SIO?
  • If they won't do it, we'll keep using SIO.

Sequence IDs

Ensembl

  • Need to speak to EBI guys to proceed more...

Identifiers.org

  • Going to make virtual SPARQL endpoint visible from outside
  • Filter some parts of graph so that you can select just the active URIs
    • e.g.
       SELECT ?go ?protein {
	SERVICE <htttp://identifiers.org/mappingsparql>{ # just an example for now
      SELECT ?go
      WHERE {
        GRAPH <id:active> {
             <http://identifiers.org/go/GO:0000001> owl:sameAs ?go .
          }
      }
    }  
    ?protein up:classsifiedWith ?go.
}

And

SELECT ?go {
WHERE {
       <http://identifiers.org/go/GO:0000001> owl:sameAs ?go .
       FILTER(contains(str(?go), "bio2rdf")
}

GFVO

  • Updated GFVO to convert GFF, GVF; no exceptions produced in Ruby code now.

  • Coding VCF converter with SIO

  • After Joachim releasing updated shell tool, Soichi will try to run it on his VCF files.

  • Wrote converter RDF to JSON-LD to use NoSQL database as SPARQL endpoint; minimize JSON.

  • RDF SPARQL On The Fly


Low priority issues for this time

Clone this wiki locally