Class: Bio::Hinv::HitPubmedId
- Includes:
- Common
- Defined in:
- lib/bio/io/hinv.rb
Overview
serv = Bio::Hinv::HitPubmedId.new serv.query("hit" => "HIT000053961") puts serv.result
Instance Method Summary collapse
-
#initialize ⇒ HitPubmedId
constructor
A new instance of HitPubmedId.
-
#result ⇒ Object
.7624364 11279095 15489334
Methods included from Common
Constructor Details
#initialize ⇒ HitPubmedId
Returns a new instance of HitPubmedId.
236 237 238 |
# File 'lib/bio/io/hinv.rb', line 236 def initialize @url = BASE_URI + "hit_pubmedid.php" end |
Instance Method Details
#result ⇒ Object
246 247 248 249 250 251 252 |
# File 'lib/bio/io/hinv.rb', line 246 def result list = [] @xml.elements.each('//CDNA_DB-REFERENCE_PUBMED') do |e| list << e.text.to_i end return list end |