This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://beta.sparql.uniprot.org/ | |
prefix up: <http://purl.uniprot.org/core/> | |
prefix tax: <http://purl.uniprot.org/taxonomy/> | |
select * | |
where { | |
tax:9606 up:scientificName ?name . | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Convert MIRIAM Registry XML file (http://www.ebi.ac.uk/miriam/main/export/) to CSV | |
# for browsing at TogoDB (http://semantic.togodb.dbcls.jp/togodb/view/miriam) | |
# | |
# Copyright (C) 2012 Toshiaki Katayama <[email protected]> | |
# | |
# Pre requirements: | |
# % curl http://www.ebi.ac.uk/miriam/main/export/xml/ > resources_all.xml | |
# % gem install nokogiri |
NewerOlder