List the species captured in WikiPathways and the number of pathways per species.
收藏NIAID Data Ecosystem2026-03-08 收录
下载链接:
https://figshare.com/articles/dataset/List_the_species_captured_in_WikiPathways_and_the_number_of_pathways_per_species_/1047283
下载链接
链接失效反馈官方服务:
资源简介:
Example query to count the pathways per species in WikiPathways:
PREFIX wp:
PREFIX rdfs:
PREFIX dc:
SELECT DISTINCT ?organism ?label count(?pathway) as ?noPathways
WHERE {
?pathway dc:title ?title .
?pathway wp:organism ?organism .
?organism rdfs:label ?label .
}
ORDER BY DESC(?noPathways)
创建时间:
2014-06-05



