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 |
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 | |
require "rubygems" | |
require "net/http" | |
require "uri" | |
require "cgi" | |
require "json" # gem install json | |
class SPARQL |
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
{ | |
"-": { | |
"so_id": "SO:0000110", | |
"so_term": "located_sequence_feature", | |
"ft_desc": "\"-\" is a placeholder for no key; should be used when the need is merely to mark region in order to comment on it or to use it in another feature's location", | |
"so_desc": "A biological feature that can be attributed to a region of biological sequence." | |
}, | |
"-10_signal": { | |
"so_id": "SO:0000175", | |
"so_term": "minus_10_signal", |
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-1.9 | |
require 'rubygems' | |
require 'bio' | |
require 'json' | |
require 'securerandom' | |
# [TODO] true to combine the result with the EdgeDB | |
if $DEBUG | |
$edgedb = true |
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-1.9 | |
require 'rubygems' | |
require 'uri' | |
require 'bio' | |
require 'json' | |
require 'securerandom' | |
# [TODO] integrate this into BioRuby | |
module Bio |
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
# SO:chromosome, SO:linear | |
<urn:uuid:63a091c1-1409-4a91-9f46-db9b04bce8f6> | |
<http://genome.db/sw/feature_chromosome> 7 ; | |
<http://genome.db/sw/feature_isolate> "3D7" ; | |
<http://genome.db/sw/length> 1501717 ; | |
<http://genome.db/sw/location> "1..1501717" ; | |
<http://genome.db/sw/molecularType> "genomic DNA" ; | |
<http://genome.db/sw/organism> "Plasmodium falciparum 3D7" ; |
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-1.9 | |
ENV["BIO_GITAX_DB"] = "#{ENV['HOME']}/ncbi/taxonomy/gitax" | |
require "rubygems" | |
require "open-uri" | |
require "fileutils" | |
begin | |
require "kyotocabinet" |
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 RDF | |
# | |
# Copyright (C) 2012 Toshiaki Katayama <[email protected]> | |
# | |
# Pre requirements: | |
# % curl http://www.ebi.ac.uk/miriam/main/export/xml/ > miriam.xml | |
# % gem install nokogiri | |
# % miriam_xml2rdf.rb miriam.xml > miriam.rdf |
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
{ | |
/* | |
* NCBI RefSeq | |
*/ | |
"RefSeq": { | |
"label": "NCBI RefSeq", // custom | |
"class": "RefSeq", | |
"prefix": "http://identifiers.org/refseq/" | |
}, |
OlderNewer