aboutsummaryrefslogtreecommitdiff

Tissue Metadata

'tissue'

Generated Triples:

The following SQL query was executed:

SELECT Tissue.Short_Name, Tissue.Name FROM Tissue

The above query results to triples that have the form:

gn:tissueTissue_short_name -> rdf:type -> gnc:tissue 
gn:tissueTissue_short_name -> rdfs:label -> Tissue(Name) 

Here's an example query:

PREFIX gn: <http://genenetwork.org/id/> 
PREFIX gnt: <http://genenetwork.org/term/> 
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX gnc: <http://genenetwork.org/category/> 
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> 

SELECT * WHERE { 
    ?s rdf:type gnc:tissue .
    ?s rdfs:label "Brain mRNA" .
    ?s ?p ?o .
}

Expected Result:

gn:tissueBrn rdf:type gnc:tissue .
gn:tissueBrn rdfs:label "Brain mRNA" .