query-ae19a3c84c726156118712947a1aebf6
File formats used in bioinformatics ranked by the number of software titles known to read them
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?fileFormat ?fileFormatLabel (COUNT(?item) AS ?count)
WHERE
{
?item wdt:P31/wdt:P279* wd:Q7397.
?item wdt:P366 wd:Q128570.
?item wdt:P1072 ?fileFormat.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?fileFormat ?fileFormatLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?fileFormat"):::projected
v2("?item"):::projected
a1((" "))
c3(["wd:Q7397"]):::iri
c8(["bd:serviceParam"]):::iri
c5(["wd:Q128570"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P366"--> c5
v2 --"wdt:P1072"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v4