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
-
.ddbj(program, db, options = []) ⇒ Object
creates a remote BLAST factory using DDBJ Web service.
-
.genomenet(program, db, options = []) ⇒ Object
creates a remote BLAST factory using GenomeNet.
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, = []) DDBJ.new(program, db, ) #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, = []) GenomeNet.new(program, db, ) #Bio::Blast.new(program, db, options, 'genomenet') end |