1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
#
# = sample/demo_pubmed.rb - demonstration of Bio::PubMed
#
# Copyright:: Copyright (C) 2001, 2007, 2008 Toshiaki Katayama <k@bioruby.org>
# Copyright:: Copyright (C) 2006 Jan Aerts <jan.aerts@bbsrc.ac.uk>
# License:: The Ruby License
#
#
# == Description
#
# Demonstration of Bio::PubMed, NCBI Entrez/PubMed client module.
#
# == Requirements
#
# Internet connection is needed.
#
# == Usage
#
# Simply run this script.
#
# $ ruby demo_pubmed.rb
#
# == Development information
#
# The code was moved from lib/bio/io/pubmed.rb and modified as below:
# * Codes using Entrez CGI are disabled.
require 'bio'
Bio::NCBI.default_email = 'staff@bioruby.org'
#if __FILE__ == $0
puts "=== instance methods ==="
pubmed = Bio::PubMed.new
puts "--- Search PubMed by E-Utils ---"
opts = {"rettype" => "count"}
puts Time.now
puts pubmed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
puts pubmed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
puts pubmed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
pubmed.esearch("(genome AND analysis) OR bioinformatics").each do |x|
puts x
end
puts "--- Retrieve PubMed entry by E-Utils ---"
puts Time.now
puts pubmed.efetch(16381885)
puts Time.now
puts pubmed.efetch("16381885")
puts Time.now
puts pubmed.efetch("16381885")
puts Time.now
opts = {"retmode" => "xml"}
puts pubmed.efetch([10592173, 14693808], opts)
puts Time.now
puts pubmed.efetch(["10592173", "14693808"], opts)
#puts "--- Search PubMed by Entrez CGI ---"
#pubmed.search("(genome AND analysis) OR bioinformatics").each do |x|
# p x
#end
#puts "--- Retrieve PubMed entry by Entrez CGI ---"
#puts pubmed.query("16381885")
puts "--- Retrieve PubMed entry by PMfetch ---"
puts pubmed.pmfetch("16381885")
puts "=== class methods ==="
puts "--- Search PubMed by E-Utils ---"
opts = {"rettype" => "count"}
puts Time.now
puts Bio::PubMed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
puts Bio::PubMed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
puts Bio::PubMed.esearch("(genome AND analysis) OR bioinformatics", opts)
puts Time.now
Bio::PubMed.esearch("(genome AND analysis) OR bioinformatics").each do |x|
puts x
end
puts "--- Retrieve PubMed entry by E-Utils ---"
puts Time.now
puts Bio::PubMed.efetch(16381885)
puts Time.now
puts Bio::PubMed.efetch("16381885")
puts Time.now
puts Bio::PubMed.efetch("16381885")
puts Time.now
opts = {"retmode" => "xml"}
puts Bio::PubMed.efetch([10592173, 14693808], opts)
puts Time.now
puts Bio::PubMed.efetch(["10592173", "14693808"], opts)
#puts "--- Search PubMed by Entrez CGI ---"
#Bio::PubMed.search("(genome AND analysis) OR bioinformatics").each do |x|
# p x
#end
#puts "--- Retrieve PubMed entry by Entrez CGI ---"
#puts Bio::PubMed.query("16381885")
puts "--- Retrieve PubMed entry by PMfetch ---"
puts Bio::PubMed.pmfetch("16381885")
#end
|