Mercurial > hg > sonic-annotator
comparison test-queries/test-query-plugin-output-types @ 0:581b1b150a4d
* copy to sonic-annotator
| author | Chris Cannam | 
|---|---|
| date | Thu, 11 Dec 2008 10:22:33 +0000 | 
| parents | |
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| -1:000000000000 | 0:581b1b150a4d | 
|---|---|
| 1 | |
| 2 PREFIX vamp: <http://purl.org/ontology/vamp/> | |
| 3 PREFIX examples: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> | |
| 4 | |
| 5 SELECT ?output_id ?output_type ?feature_type ?event_type ?unit | |
| 6 FROM <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> | |
| 7 | |
| 8 WHERE { | |
| 9 ?plugin a vamp:Plugin . | |
| 10 ?plugin vamp:identifier "percussiononsets" . | |
| 11 ?plugin vamp:output_descriptor ?output . | |
| 12 ?output vamp:identifier ?output_id . | |
| 13 ?output a ?output_type . | |
| 14 OPTIONAL { ?output vamp:computes_feature_type ?feature_type } . | |
| 15 OPTIONAL { ?output vamp:computes_event_type ?event_type } . | |
| 16 OPTIONAL { ?output vamp:unit ?unit } . | |
| 17 } | |
| 18 | 
