Location: Testing plugin annotation @ e344e16ae14b / queries.sparql

Author:
Test Author <testing@staging.physiomeproject.org>
Date:
2017-02-02 15:48:20+13:00
Desc:
Correct ns.physiome URL.
Permanent Source URI:
https://models.cellml.org/workspace/43a/rawfile/e344e16ae14b782519ec0952d7818d9339a2960b/queries.sparql

PMR SPARQL endpoint: https://models.physiomeproject.org/pmr2_virtuoso_search

// Find all plugins that conform to the MAP Client plugin API
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX swo-x: <http://www.ebi.ac.uk/swo/EXTENSIONS/>

SELECT ?me 
WHERE { 
  ?me dcterms:conforms_to swo-x:MAPClient-Plugin-API 
}


// Find all plugins that conform to the CTK plugin API
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX swo-x: <http://www.ebi.ac.uk/swo/EXTENSIONS/>

SELECT ?me 
WHERE { 
  ?me dcterms:conforms_to swo-x:CTKPlugin-API 
}

// Find all plugins that conform to the MAP Client plugin API and have a desktop GUI
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX swo: <http://www.ebi.ac.uk/swo/>
PREFIX swo-x: <http://www.ebi.ac.uk/swo/EXTENSIONS/>

SELECT ?me 
WHERE { 
  ?me dcterms:conforms_to swo-x:MAPClient-Plugin-API .
  ?me swo:SWO_0004001 <http://www.ebi.ac.uk/swo/interface/SWO_5000003> 
}