Mercurial > hg > sonic-annotator
comparison tests/misc-queries/test-query-plugin-output-types @ 1:92911f967a16
* some reorganisation
author | Chris Cannam |
---|---|
date | Thu, 11 Dec 2008 10:26:12 +0000 |
parents | test-queries/test-query-plugin-output-types@581b1b150a4d |
children |
comparison
equal
deleted
inserted
replaced
0:581b1b150a4d | 1:92911f967a16 |
---|---|
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 |