Mercurial > hg > sonic-annotator
comparison tests/misc-queries/test-query-transforms @ 1:92911f967a16
* some reorganisation
author | Chris Cannam |
---|---|
date | Thu, 11 Dec 2008 10:26:12 +0000 |
parents | test-queries/test-query-transforms@581b1b150a4d |
children |
comparison
equal
deleted
inserted
replaced
0:581b1b150a4d | 1:92911f967a16 |
---|---|
1 | |
2 PREFIX vamp: <http://purl.org/ontology/vamp/> | |
3 | |
4 SELECT ?transform ?plugin ?output ?program | |
5 ?step_size ?block_size ?window_type | |
6 ?sample_rate ?start ?duration | |
7 | |
8 FROM <file:///work/runner/transforms/percussiononsets.n3> | |
9 | |
10 WHERE { | |
11 ?transform a vamp:Transform ; | |
12 vamp:plugin ?plugin . | |
13 OPTIONAL { ?transform vamp:output ?output } . | |
14 OPTIONAL { ?transform vamp:program ?program } . | |
15 OPTIONAL { ?transform vamp:step_size ?step_size } . | |
16 OPTIONAL { ?transform vamp:block_size ?block_size } . | |
17 OPTIONAL { ?transform vamp:window_type ?window_type } . | |
18 OPTIONAL { ?transform vamp:sample_rate ?sample_rate } . | |
19 OPTIONAL { ?transform vamp:start ?start } . | |
20 OPTIONAL { ?transform vamp:duration ?duration } | |
21 } |