class Bio::HGC::HiGet

Description

Interface for the HiGet service provided by Human Genome Center (HGC), Japan. HiGet performs full-text search against various biological databases.

References

Constants

SERVER_URI

Public Class Methods

new(wsdl = nil) click to toggle source
Calls superclass method Bio::SOAPWSDL.new
# File lib/bio/io/higet.rb, line 27
def initialize(wsdl = nil)
  super(wsdl || SERVER_URI)
end

Public Instance Methods

higet_in_fasta(db, entries) click to toggle source
# File lib/bio/io/higet.rb, line 31
def higet_in_fasta(db, entries)
  self.higet(db, entries, "-d fasta")
end
higet_in_xml(db, entries) click to toggle source
# File lib/bio/io/higet.rb, line 35
def higet_in_xml(db, entries)
  self.higet(db, entries, "-d xml")
end