-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.sparql
25 lines (22 loc) · 965 Bytes
/
test.sparql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX wfdesc: <http://purl.org/wf4ever/wfdesc#>
PREFIX wfprov: <http://purl.org/wf4ever/wfprov#>
PREFIX tavernaprov: <http://ns.taverna.org.uk/2012/tavernaprov/>
PREFIX cnt: <http://www.w3.org/2011/content#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wf4ever: <http://purl.org/wf4ever/wf4ever#>
SELECT DISTINCT ?paramName ?name ?value ?ended ?script
WHERE {
?greeting tavernaprov:content <outputs/greeting.txt> .
?greeting prov:wasGeneratedBy ?concatenate .
?concatenate prov:endedAtTime ?ended ;
wfprov:wasPartOfWorkflowRun ?run ;
wfprov:describedByProcess ?plan .
?concatenate wfprov:usedInput ?input .
?input tavernaprov:content ?name .
OPTIONAL { ?name cnt:chars ?value } .
OPTIONAL { ?plan wf4ever:script ?script } .
?input wfprov:describedByParameter ?param .
?plan wfdesc:hasInput ?param .
OPTIONAL { ?param rdfs:label ?paramName } .
}