2011-11-02 21:22:15 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
|
|
|
<!-- See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
|
|
|
|
|
|
|
<list-view-config>
|
|
|
|
<query-select>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
2011-11-06 03:17:23 +00:00
|
|
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
2011-11-02 21:22:15 +00:00
|
|
|
|
2011-11-10 17:19:32 +00:00
|
|
|
SELECT ?concept ?conceptLabel ?conceptName ?vocabularySource ?vocabularySourceName
|
2011-11-02 21:22:15 +00:00
|
|
|
WHERE {
|
|
|
|
?subject ?property ?concept .
|
2011-11-06 03:17:23 +00:00
|
|
|
LET (?conceptName := afn:localname(?concept))
|
|
|
|
optional {?concept rdfs:label ?conceptLabel}
|
2011-11-10 17:19:32 +00:00
|
|
|
optional {?concept rdfs:isDefinedBy ?vocabularySource
|
|
|
|
optional { ?vocabularySource rdfs:label ?vocabularySourceName}}
|
2011-11-06 03:17:23 +00:00
|
|
|
} ORDER BY ?conceptLabel ?conceptName
|
2011-11-02 21:22:15 +00:00
|
|
|
</query-select>
|
|
|
|
|
2011-11-06 01:25:22 +00:00
|
|
|
<query-construct>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?concept .
|
2011-11-10 17:19:32 +00:00
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?concept .
|
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?concept .
|
|
|
|
?concept rdfs:label ?conceptLabel
|
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?concept .
|
2011-11-06 01:25:22 +00:00
|
|
|
?concept rdfs:label ?conceptLabel
|
2011-11-10 17:19:32 +00:00
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?concept .
|
|
|
|
?concept rdfs:isDefinedBy ?vocabularySource
|
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?concept .
|
|
|
|
?concept rdfs:isDefinedBy ?vocabularySource
|
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?concept .
|
|
|
|
?concept rdfs:isDefinedBy ?vocabularySource .
|
|
|
|
?vocabularySource rdfs:label ?vocabularySourceName
|
2011-11-06 01:25:22 +00:00
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?concept .
|
2011-11-10 17:19:32 +00:00
|
|
|
?concept rdfs:isDefinedBy ?vocabularySource .
|
|
|
|
?vocabularySource rdfs:label ?vocabularySourceName
|
2011-11-06 01:25:22 +00:00
|
|
|
}
|
|
|
|
</query-construct>
|
2011-11-10 17:19:32 +00:00
|
|
|
|
2011-11-02 21:22:15 +00:00
|
|
|
<template>propStatement-hasAssociatedConcept.ftl</template>
|
|
|
|
</list-view-config>
|