Sha256: 3d7b670f0433eaa8f3aafcbdc14c50fda44ce4e8b36ac1c56bb48147b2f16bb8

Contents?: true

Size: 1.16 KB

Versions: 20

Compression:

Stored size: 1.16 KB

Contents

#!/usr/bin/env ruby 
#
# pmfetch.rb - generate BibTeX format reference list by PubMed ID list
#
#   Copyright (C) 2002 KATAYAMA Toshiaki <k@bioruby.org>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#  $Id: pmfetch.rb,v 1.2 2002/07/23 04:52:03 k Exp $
#

require 'bio' 

if ARGV[0] =~ /-f/
  ARGV.shift
  form = ARGV.shift
else
  form = 'bibtex'
end

ARGV.each do |id| 
  entry = Bio::PubMed.query(id) 
  case form
  when 'medline'
    puts entry
  else
    puts Bio::MEDLINE.new(entry).reference.send(form)
  end
end 

Version data entries

20 entries across 20 versions & 4 rubygems

Version Path
bioruby-bio-1.2.9.9001 sample/pmfetch.rb
bioruby-bio-1.2.9.9501 sample/pmfetch.rb
bioruby-bio-1.3.0.5000 sample/pmfetch.rb
bioruby-bio-1.3.0.9901 sample/pmfetch.rb
bioruby-bio-1.3.0 sample/pmfetch.rb
bioruby-bio-1.3.1.5000 sample/pmfetch.rb
jandot-bio-1.2.1 sample/pmfetch.rb
ngoto-bio-1.2.9.9001 sample/pmfetch.rb
ngoto-bio-1.2.9.9501 sample/pmfetch.rb
ngoto-bio-1.3.0.5000 sample/pmfetch.rb
ngoto-bio-1.3.0 sample/pmfetch.rb
ngoto-bio-1.3.1.5000 sample/pmfetch.rb
bio-1.3.1 sample/pmfetch.rb
bio-0.7.0 sample/pmfetch.rb
bio-0.7.1 sample/pmfetch.rb
bio-1.0.0 sample/pmfetch.rb
bio-1.2.1 sample/pmfetch.rb
bio-1.1.0 sample/pmfetch.rb
bio-1.2.0 sample/pmfetch.rb
bio-1.3.0 sample/pmfetch.rb