Virtuoso RDFZZ Error DB.DBA.SPARQL_REXEC('http://sparql.wikipathways.org/', ...) returned Content-Type 'text/html' status 'HTTP/1.1 200 OK ' WikiPathways SNORQL UI SPARQL Endpoint SPARQL Query: var editor = CodeMirror.fromTextArea(document.getElementById("querytext"), { lineNumbers: true, mode: "application/sparql-query", matchBrackets: true }); SPARQL Examples: Search Tree: Search Clear Powered by WikiPathways (doi:10.1093/nar/gkad960) and Snorql - Cookie Policy - Licenced Un SPARQL query: define sql:big-data-const 0 #output-format:text/html define sql:signal-void-variables 1 PREFIX wp: SELECT DISTINCT str(?DiseaseName) as ?DiseaseName ?PathwayID str(?PathwayName) as ?PathwayName count(DISTINCT ?gene) AS ?genes WHERE { # DisGeNET: get disease-genes ?gda sio:SIO_000628 ?gene,?disease ; sio:SIO_000216 ?scoreIRI . ?gene rdf:type ncit:C16612 . ?disease rdf:type ncit:C7057 ; skos:exactMatch ; dcterms:title ?DiseaseName . ?scoreIRI sio:SIO_000300 ?score . FILTER (?score > "0.35"^^xsd:decimal) # WikiPathways: get gene-pathways SERVICE { ?geneProduct a wp:GeneProduct ; dc:identifier ?gene ; dcterms:isPartOf ?pathway . ?pathway dc:identifier ?PathwayID ; dc:title ?PathwayName . } # end of service } # end of query ORDER BY DESC(?genes)DESC(?PathwayName) LIMIT 100