Module: Bio::Blast::Remote

Defined in:
lib/bio/appl/blast/remote.rb,
lib/bio/appl/blast/ddbj.rb,
lib/bio/appl/blast/genomenet.rb

Overview

Bio::Blast::Remote is a namespace for Remote Blast factory.

Defined Under Namespace

Modules: DDBJ, GenomeNet, Information

Constant Summary collapse

Ddbj =

for lazy load DDBJ module

DDBJ
Genomenet =

alias for lazy load

GenomeNet

Class Method Summary collapse

Class Method Details

.ddbj(program, db, options = []) ⇒ Object

creates a remote BLAST factory using DDBJ Web service



30
31
32
33
# File 'lib/bio/appl/blast/remote.rb', line 30

def self.ddbj(program, db, options = [])
  DDBJ.new(program, db, options)
  #Bio::Blast.new(program, db, options, 'ddbj')
end

.genomenet(program, db, options = []) ⇒ Object

creates a remote BLAST factory using GenomeNet



24
25
26
27
# File 'lib/bio/appl/blast/remote.rb', line 24

def self.genomenet(program, db, options = [])
  GenomeNet.new(program, db, options)
  #Bio::Blast.new(program, db, options, 'genomenet')
end