Advertisement
LuciaPrieto

Untitled

Jun 22nd, 2018
2,425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.44 KB | None | 0 0
  1. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  2. PREFIX dcterms: <http://purl.org/dc/terms/>
  3. PREFIX sio: <http://semanticscience.org/resource/>
  4.        
  5. SELECT DISTINCT
  6.     STR(?class) AS ?class
  7.     STR(?classID) AS ?classID            
  8.        
  9. WHERE {  
  10.     ?panther rdfs:subClassOf sio:SIO_000275 .
  11.              FILTER REGEX (?panther, "panther.classification").
  12.     ?panther dcterms:title ?class;
  13.              dcterms:identifier ?classID.
  14.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement