bio 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/bioruby +14 -122
- data/bin/br_biofetch.rb +2 -2
- data/bin/br_bioflat.rb +2 -2
- data/bin/br_biogetseq.rb +2 -2
- data/bin/br_pmfetch.rb +3 -3
- data/doc/Changes-0.7.rd +77 -0
- data/doc/KEGG_API.rd +523 -232
- data/doc/KEGG_API.rd.ja +529 -207
- data/doc/Tutorial.rd +48 -11
- data/lib/bio.rb +59 -6
- data/lib/bio/alignment.rb +713 -103
- data/lib/bio/appl/bl2seq/report.rb +2 -18
- data/lib/bio/appl/blast.rb +108 -91
- data/lib/bio/appl/blast/format0.rb +33 -18
- data/lib/bio/appl/blast/format8.rb +6 -20
- data/lib/bio/appl/blast/report.rb +293 -429
- data/lib/bio/appl/blast/rexml.rb +8 -22
- data/lib/bio/appl/blast/wublast.rb +21 -12
- data/lib/bio/appl/blast/xmlparser.rb +180 -183
- data/lib/bio/appl/blat/report.rb +127 -30
- data/lib/bio/appl/clustalw.rb +87 -59
- data/lib/bio/appl/clustalw/report.rb +20 -22
- data/lib/bio/appl/emboss.rb +113 -20
- data/lib/bio/appl/fasta.rb +173 -198
- data/lib/bio/appl/fasta/format10.rb +244 -347
- data/lib/bio/appl/gcg/msf.rb +212 -0
- data/lib/bio/appl/gcg/seq.rb +195 -0
- data/lib/bio/appl/genscan/report.rb +5 -23
- data/lib/bio/appl/hmmer.rb +8 -45
- data/lib/bio/appl/hmmer/report.rb +2 -20
- data/lib/bio/appl/iprscan/report.rb +374 -0
- data/lib/bio/appl/mafft.rb +87 -50
- data/lib/bio/appl/mafft/report.rb +151 -44
- data/lib/bio/appl/muscle.rb +52 -0
- data/lib/bio/appl/phylip/alignment.rb +129 -0
- data/lib/bio/appl/phylip/distance_matrix.rb +96 -0
- data/lib/bio/appl/probcons.rb +41 -0
- data/lib/bio/appl/psort.rb +89 -96
- data/lib/bio/appl/psort/report.rb +6 -22
- data/lib/bio/appl/pts1.rb +263 -0
- data/lib/bio/appl/sim4.rb +26 -36
- data/lib/bio/appl/sim4/report.rb +2 -18
- data/lib/bio/appl/sosui/report.rb +5 -20
- data/lib/bio/appl/spidey/report.rb +2 -2
- data/lib/bio/appl/targetp/report.rb +4 -20
- data/lib/bio/appl/tcoffee.rb +55 -0
- data/lib/bio/appl/tmhmm/report.rb +4 -20
- data/lib/bio/command.rb +235 -64
- data/lib/bio/data/aa.rb +21 -26
- data/lib/bio/data/codontable.rb +2 -20
- data/lib/bio/data/na.rb +19 -4
- data/lib/bio/db.rb +27 -12
- data/lib/bio/db/aaindex.rb +2 -20
- data/lib/bio/db/embl/common.rb +4 -21
- data/lib/bio/db/embl/embl.rb +33 -85
- data/lib/bio/db/embl/sptr.rb +612 -302
- data/lib/bio/db/embl/swissprot.rb +10 -29
- data/lib/bio/db/embl/trembl.rb +10 -29
- data/lib/bio/db/embl/uniprot.rb +10 -29
- data/lib/bio/db/fantom.rb +15 -20
- data/lib/bio/db/fasta.rb +3 -3
- data/lib/bio/db/genbank/common.rb +37 -46
- data/lib/bio/db/genbank/ddbj.rb +6 -18
- data/lib/bio/db/genbank/genbank.rb +47 -186
- data/lib/bio/db/genbank/genpept.rb +4 -17
- data/lib/bio/db/genbank/refseq.rb +4 -17
- data/lib/bio/db/gff.rb +103 -35
- data/lib/bio/db/go.rb +4 -20
- data/lib/bio/db/kegg/brite.rb +26 -36
- data/lib/bio/db/kegg/compound.rb +81 -85
- data/lib/bio/db/kegg/drug.rb +98 -0
- data/lib/bio/db/kegg/enzyme.rb +133 -110
- data/lib/bio/db/kegg/expression.rb +2 -20
- data/lib/bio/db/kegg/genes.rb +208 -238
- data/lib/bio/db/kegg/genome.rb +164 -285
- data/lib/bio/db/kegg/glycan.rb +114 -157
- data/lib/bio/db/kegg/keggtab.rb +242 -303
- data/lib/bio/db/kegg/kgml.rb +117 -160
- data/lib/bio/db/kegg/orthology.rb +112 -0
- data/lib/bio/db/kegg/reaction.rb +54 -69
- data/lib/bio/db/kegg/taxonomy.rb +331 -0
- data/lib/bio/db/lasergene.rb +209 -0
- data/lib/bio/db/litdb.rb +3 -27
- data/lib/bio/db/medline.rb +228 -249
- data/lib/bio/db/nbrf.rb +3 -3
- data/lib/bio/db/newick.rb +510 -0
- data/lib/bio/db/nexus.rb +1854 -0
- data/lib/bio/db/pdb.rb +5 -17
- data/lib/bio/db/pdb/atom.rb +2 -18
- data/lib/bio/db/pdb/chain.rb +2 -18
- data/lib/bio/db/pdb/chemicalcomponent.rb +2 -18
- data/lib/bio/db/pdb/model.rb +2 -18
- data/lib/bio/db/pdb/pdb.rb +73 -34
- data/lib/bio/db/pdb/residue.rb +4 -20
- data/lib/bio/db/pdb/utils.rb +2 -18
- data/lib/bio/db/prosite.rb +403 -422
- data/lib/bio/db/rebase.rb +84 -40
- data/lib/bio/db/soft.rb +404 -0
- data/lib/bio/db/transfac.rb +5 -17
- data/lib/bio/feature.rb +106 -52
- data/lib/bio/io/das.rb +32 -42
- data/lib/bio/io/dbget.rb +2 -20
- data/lib/bio/io/ddbjxml.rb +77 -138
- data/lib/bio/io/ebisoap.rb +158 -0
- data/lib/bio/io/ensembl.rb +229 -0
- data/lib/bio/io/fastacmd.rb +89 -82
- data/lib/bio/io/fetch.rb +163 -96
- data/lib/bio/io/flatfile.rb +170 -73
- data/lib/bio/io/flatfile/bdb.rb +3 -16
- data/lib/bio/io/flatfile/index.rb +2 -2
- data/lib/bio/io/flatfile/indexer.rb +3 -2
- data/lib/bio/io/higet.rb +12 -31
- data/lib/bio/io/keggapi.rb +210 -269
- data/lib/bio/io/ncbisoap.rb +155 -0
- data/lib/bio/io/pubmed.rb +169 -147
- data/lib/bio/io/registry.rb +4 -20
- data/lib/bio/io/soapwsdl.rb +43 -38
- data/lib/bio/io/sql.rb +242 -305
- data/lib/bio/location.rb +407 -285
- data/lib/bio/map.rb +410 -0
- data/lib/bio/pathway.rb +558 -695
- data/lib/bio/reference.rb +272 -75
- data/lib/bio/sequence.rb +255 -13
- data/lib/bio/sequence/aa.rb +71 -10
- data/lib/bio/sequence/common.rb +187 -33
- data/lib/bio/sequence/compat.rb +59 -4
- data/lib/bio/sequence/format.rb +54 -7
- data/lib/bio/sequence/generic.rb +3 -3
- data/lib/bio/sequence/na.rb +328 -26
- data/lib/bio/shell.rb +11 -4
- data/lib/bio/shell/core.rb +221 -160
- data/lib/bio/shell/demo.rb +18 -15
- data/lib/bio/shell/interface.rb +14 -12
- data/lib/bio/shell/irb.rb +95 -0
- data/lib/bio/shell/object.rb +45 -26
- data/lib/bio/shell/plugin/blast.rb +42 -0
- data/lib/bio/shell/plugin/codon.rb +22 -14
- data/lib/bio/shell/plugin/das.rb +58 -0
- data/lib/bio/shell/plugin/emboss.rb +2 -2
- data/lib/bio/shell/plugin/entry.rb +22 -11
- data/lib/bio/shell/plugin/flatfile.rb +2 -2
- data/lib/bio/shell/plugin/keggapi.rb +13 -6
- data/lib/bio/shell/plugin/midi.rb +4 -4
- data/lib/bio/shell/plugin/obda.rb +2 -2
- data/lib/bio/shell/plugin/psort.rb +56 -0
- data/lib/bio/shell/plugin/seq.rb +35 -8
- data/lib/bio/shell/plugin/soap.rb +87 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb +29 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_classes.rhtml +4 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_log.rhtml +27 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_methods.rhtml +11 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_modules.rhtml +4 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_variables.rhtml +7 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-bg.gif +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-console.png +0 -0
- data/lib/bio/shell/rails/{public/images/icon.png → vendor/plugins/generators/bioruby/templates/bioruby-gem.png} +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-link.gif +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.css +369 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.rhtml +47 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_controller.rb +144 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_helper.rb +47 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/commands.rhtml +8 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/history.rhtml +10 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/index.rhtml +22 -0
- data/lib/bio/shell/script.rb +25 -0
- data/lib/bio/shell/setup.rb +109 -0
- data/lib/bio/shell/web.rb +70 -58
- data/lib/bio/tree.rb +850 -0
- data/lib/bio/util/color_scheme.rb +84 -107
- data/lib/bio/util/color_scheme/buried.rb +5 -24
- data/lib/bio/util/color_scheme/helix.rb +5 -24
- data/lib/bio/util/color_scheme/hydropathy.rb +5 -24
- data/lib/bio/util/color_scheme/nucleotide.rb +5 -24
- data/lib/bio/util/color_scheme/strand.rb +5 -24
- data/lib/bio/util/color_scheme/taylor.rb +5 -24
- data/lib/bio/util/color_scheme/turn.rb +5 -24
- data/lib/bio/util/color_scheme/zappo.rb +5 -24
- data/lib/bio/util/contingency_table.rb +70 -43
- data/lib/bio/util/restriction_enzyme.rb +228 -0
- data/lib/bio/util/restriction_enzyme/analysis.rb +249 -0
- data/lib/bio/util/restriction_enzyme/analysis_basic.rb +217 -0
- data/lib/bio/util/restriction_enzyme/cut_symbol.rb +107 -0
- data/lib/bio/util/restriction_enzyme/double_stranded.rb +321 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb +130 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb +103 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb +38 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb +76 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb +107 -0
- data/lib/bio/util/restriction_enzyme/enzymes.yaml +7061 -0
- data/lib/bio/util/restriction_enzyme/range/cut_range.rb +24 -0
- data/lib/bio/util/restriction_enzyme/range/cut_ranges.rb +47 -0
- data/lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb +67 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range.rb +257 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb +242 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb +51 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb +41 -0
- data/lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb +77 -0
- data/lib/bio/util/restriction_enzyme/single_strand.rb +199 -0
- data/lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb +135 -0
- data/lib/bio/util/restriction_enzyme/single_strand_complement.rb +23 -0
- data/lib/bio/util/restriction_enzyme/string_formatting.rb +111 -0
- data/lib/bio/util/sirna.rb +4 -22
- data/sample/color_scheme_na.rb +4 -12
- data/sample/enzymes.rb +78 -0
- data/sample/goslim.rb +5 -13
- data/sample/psortplot_html.rb +4 -12
- data/test/data/blast/2.2.15.blastp.m7 +876 -0
- data/test/data/embl/AB090716.embl.rel89 +63 -0
- data/test/data/fasta/example1.txt +75 -0
- data/test/data/fasta/example2.txt +21 -0
- data/test/data/iprscan/merged.raw +32 -0
- data/test/data/iprscan/merged.txt +74 -0
- data/test/data/soft/GDS100_partial.soft +92 -0
- data/test/data/soft/GSE3457_family_partial.soft +874 -0
- data/test/functional/bio/io/test_ensembl.rb +103 -0
- data/test/functional/bio/io/test_soapwsdl.rb +5 -17
- data/test/unit/bio/appl/bl2seq/test_report.rb +2 -2
- data/test/unit/bio/appl/blast/test_report.rb +3 -16
- data/test/unit/bio/appl/blast/test_xmlparser.rb +4 -16
- data/test/unit/bio/appl/genscan/test_report.rb +3 -16
- data/test/unit/bio/appl/hmmer/test_report.rb +3 -16
- data/test/unit/bio/appl/iprscan/test_report.rb +338 -0
- data/test/unit/bio/appl/mafft/test_report.rb +63 -0
- data/test/unit/bio/appl/sosui/test_report.rb +3 -16
- data/test/unit/bio/appl/targetp/test_report.rb +3 -16
- data/test/unit/bio/appl/test_blast.rb +3 -16
- data/test/unit/bio/appl/test_fasta.rb +4 -16
- data/test/unit/bio/appl/test_pts1.rb +140 -0
- data/test/unit/bio/appl/tmhmm/test_report.rb +3 -16
- data/test/unit/bio/data/test_aa.rb +4 -17
- data/test/unit/bio/data/test_codontable.rb +3 -16
- data/test/unit/bio/data/test_na.rb +3 -3
- data/test/unit/bio/db/embl/test_common.rb +3 -16
- data/test/unit/bio/db/embl/test_embl.rb +3 -16
- data/test/unit/bio/db/embl/test_embl_rel89.rb +219 -0
- data/test/unit/bio/db/embl/test_sptr.rb +1548 -41
- data/test/unit/bio/db/embl/test_uniprot.rb +3 -16
- data/test/unit/bio/db/kegg/test_genes.rb +3 -16
- data/test/unit/bio/db/pdb/test_pdb.rb +7 -24
- data/test/unit/bio/db/test_aaindex.rb +2 -2
- data/test/unit/bio/db/test_fasta.rb +3 -16
- data/test/unit/bio/db/test_gff.rb +3 -16
- data/test/unit/bio/db/test_lasergene.rb +95 -0
- data/test/unit/bio/db/test_newick.rb +56 -0
- data/test/unit/bio/db/test_nexus.rb +360 -0
- data/test/unit/bio/db/test_prosite.rb +5 -18
- data/test/unit/bio/db/test_rebase.rb +11 -25
- data/test/unit/bio/db/test_soft.rb +138 -0
- data/test/unit/bio/io/test_ddbjxml.rb +5 -17
- data/test/unit/bio/io/test_ensembl.rb +109 -0
- data/test/unit/bio/io/test_fastacmd.rb +3 -16
- data/test/unit/bio/io/test_flatfile.rb +237 -0
- data/test/unit/bio/io/test_soapwsdl.rb +4 -17
- data/test/unit/bio/sequence/test_aa.rb +3 -3
- data/test/unit/bio/sequence/test_common.rb +3 -16
- data/test/unit/bio/sequence/test_compat.rb +3 -16
- data/test/unit/bio/sequence/test_na.rb +29 -3
- data/test/unit/bio/shell/plugin/test_seq.rb +8 -8
- data/test/unit/bio/test_alignment.rb +16 -27
- data/test/unit/bio/test_command.rb +242 -25
- data/test/unit/bio/test_db.rb +3 -16
- data/test/unit/bio/test_feature.rb +4 -16
- data/test/unit/bio/test_location.rb +4 -16
- data/test/unit/bio/test_map.rb +230 -0
- data/test/unit/bio/test_pathway.rb +4 -16
- data/test/unit/bio/test_reference.rb +2 -2
- data/test/unit/bio/test_sequence.rb +7 -19
- data/test/unit/bio/test_shell.rb +3 -16
- data/test/unit/bio/test_tree.rb +593 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +299 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +103 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +240 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +100 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +75 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +73 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +53 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +104 -0
- data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +83 -0
- data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +246 -0
- data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +44 -0
- data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +115 -0
- data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +147 -0
- data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +147 -0
- data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +60 -0
- data/test/unit/bio/util/test_color_scheme.rb +6 -18
- data/test/unit/bio/util/test_contingency_table.rb +6 -18
- data/test/unit/bio/util/test_restriction_enzyme.rb +42 -0
- data/test/unit/bio/util/test_sirna.rb +3 -16
- metadata +228 -169
- data/doc/BioRuby.rd.ja +0 -225
- data/doc/Design.rd.ja +0 -341
- data/doc/TODO.rd.ja +0 -138
- data/lib/bio/appl/fasta/format6.rb +0 -37
- data/lib/bio/db/kegg/cell.rb +0 -88
- data/lib/bio/db/kegg/ko.rb +0 -178
- data/lib/bio/shell/rails/Rakefile +0 -10
- data/lib/bio/shell/rails/app/controllers/application.rb +0 -4
- data/lib/bio/shell/rails/app/controllers/shell_controller.rb +0 -94
- data/lib/bio/shell/rails/app/helpers/application_helper.rb +0 -3
- data/lib/bio/shell/rails/app/models/shell_connection.rb +0 -30
- data/lib/bio/shell/rails/app/views/layouts/shell.rhtml +0 -37
- data/lib/bio/shell/rails/app/views/shell/history.rhtml +0 -5
- data/lib/bio/shell/rails/app/views/shell/index.rhtml +0 -2
- data/lib/bio/shell/rails/app/views/shell/show.rhtml +0 -13
- data/lib/bio/shell/rails/config/boot.rb +0 -19
- data/lib/bio/shell/rails/config/database.yml +0 -85
- data/lib/bio/shell/rails/config/environment.rb +0 -53
- data/lib/bio/shell/rails/config/environments/development.rb +0 -19
- data/lib/bio/shell/rails/config/environments/production.rb +0 -19
- data/lib/bio/shell/rails/config/environments/test.rb +0 -19
- data/lib/bio/shell/rails/config/routes.rb +0 -19
- data/lib/bio/shell/rails/doc/README_FOR_APP +0 -2
- data/lib/bio/shell/rails/public/404.html +0 -8
- data/lib/bio/shell/rails/public/500.html +0 -8
- data/lib/bio/shell/rails/public/dispatch.cgi +0 -10
- data/lib/bio/shell/rails/public/dispatch.fcgi +0 -24
- data/lib/bio/shell/rails/public/dispatch.rb +0 -10
- data/lib/bio/shell/rails/public/favicon.ico +0 -0
- data/lib/bio/shell/rails/public/images/rails.png +0 -0
- data/lib/bio/shell/rails/public/index.html +0 -277
- data/lib/bio/shell/rails/public/javascripts/controls.js +0 -750
- data/lib/bio/shell/rails/public/javascripts/dragdrop.js +0 -584
- data/lib/bio/shell/rails/public/javascripts/effects.js +0 -854
- data/lib/bio/shell/rails/public/javascripts/prototype.js +0 -1785
- data/lib/bio/shell/rails/public/robots.txt +0 -1
- data/lib/bio/shell/rails/public/stylesheets/main.css +0 -187
- data/lib/bio/shell/rails/script/about +0 -3
- data/lib/bio/shell/rails/script/breakpointer +0 -3
- data/lib/bio/shell/rails/script/console +0 -3
- data/lib/bio/shell/rails/script/destroy +0 -3
- data/lib/bio/shell/rails/script/generate +0 -3
- data/lib/bio/shell/rails/script/performance/benchmarker +0 -3
- data/lib/bio/shell/rails/script/performance/profiler +0 -3
- data/lib/bio/shell/rails/script/plugin +0 -3
- data/lib/bio/shell/rails/script/process/reaper +0 -3
- data/lib/bio/shell/rails/script/process/spawner +0 -3
- data/lib/bio/shell/rails/script/process/spinner +0 -3
- data/lib/bio/shell/rails/script/runner +0 -3
- data/lib/bio/shell/rails/script/server +0 -42
- data/lib/bio/shell/rails/test/test_helper.rb +0 -28
data/lib/bio/io/ddbjxml.rb
CHANGED
@@ -2,28 +2,10 @@
|
|
2
2
|
# = bio/io/ddbjxml.rb - DDBJ SOAP server access class
|
3
3
|
#
|
4
4
|
# Copyright:: Copyright (C) 2003, 2004
|
5
|
-
#
|
6
|
-
# License::
|
5
|
+
# Toshiaki Katayama <k@bioruby.org>
|
6
|
+
# License:: The Ruby License
|
7
7
|
#
|
8
|
-
# $Id: ddbjxml.rb,v 1.
|
9
|
-
#
|
10
|
-
#--
|
11
|
-
#
|
12
|
-
# This library is free software; you can redistribute it and/or
|
13
|
-
# modify it under the terms of the GNU Lesser General Public
|
14
|
-
# License as published by the Free Software Foundation; either
|
15
|
-
# version 2 of the License, or (at your option) any later version.
|
16
|
-
#
|
17
|
-
# This library is distributed in the hope that it will be useful,
|
18
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
20
|
-
# Lesser General Public License for more details.
|
21
|
-
#
|
22
|
-
# You should have received a copy of the GNU Lesser General Public
|
23
|
-
# License along with this library; if not, write to the Free Software
|
24
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
25
|
-
#
|
26
|
-
#++
|
8
|
+
# $Id: ddbjxml.rb,v 1.14 2007/04/05 23:35:41 trevor Exp $
|
27
9
|
#
|
28
10
|
|
29
11
|
require 'bio/io/soapwsdl'
|
@@ -45,6 +27,13 @@ class XML < Bio::SOAPWSDL
|
|
45
27
|
|
46
28
|
BASE_URI = "http://xml.nig.ac.jp/wsdl/"
|
47
29
|
|
30
|
+
# set default to GetEntry
|
31
|
+
SERVER_URI = BASE_URI + "GetEntry.wsdl"
|
32
|
+
|
33
|
+
def initialize(wsdl = nil)
|
34
|
+
super(wsdl || self.class::SERVER_URI)
|
35
|
+
end
|
36
|
+
|
48
37
|
# === Description
|
49
38
|
#
|
50
39
|
# DDBJ XML BLAST Database Search
|
@@ -72,11 +61,11 @@ class XML < Bio::SOAPWSDL
|
|
72
61
|
#
|
73
62
|
# === WSDL Methods
|
74
63
|
#
|
75
|
-
#
|
64
|
+
# * searchSimple(program, database, query)
|
76
65
|
#
|
77
66
|
# Returns a blast report in the default format.
|
78
67
|
#
|
79
|
-
#
|
68
|
+
# * searchParam(program, database, query, param)
|
80
69
|
#
|
81
70
|
# Blasts with param and returns a blast report.
|
82
71
|
#
|
@@ -86,11 +75,6 @@ class XML < Bio::SOAPWSDL
|
|
86
75
|
#
|
87
76
|
class Blast < XML
|
88
77
|
SERVER_URI = BASE_URI + "Blast.wsdl"
|
89
|
-
|
90
|
-
# returns a Bio::DDBJ::XML::Blast object.
|
91
|
-
def initialize(wsdl = nil)
|
92
|
-
super(wsdl || SERVER_URI)
|
93
|
-
end
|
94
78
|
end
|
95
79
|
|
96
80
|
|
@@ -123,8 +107,8 @@ class XML < Bio::SOAPWSDL
|
|
123
107
|
#
|
124
108
|
# === WSDL Methods
|
125
109
|
#
|
126
|
-
#
|
127
|
-
#
|
110
|
+
# * analyzeSimple(query)
|
111
|
+
# * analyzeParam(query, param)
|
128
112
|
#
|
129
113
|
# === References
|
130
114
|
#
|
@@ -132,11 +116,6 @@ class XML < Bio::SOAPWSDL
|
|
132
116
|
#
|
133
117
|
class ClustalW < XML
|
134
118
|
SERVER_URI = BASE_URI + "ClustalW.wsdl"
|
135
|
-
|
136
|
-
# returns a Bio::DDBJ::XML::ClustalW object.
|
137
|
-
def initialize(wsdl = nil)
|
138
|
-
super(wsdl || SERVER_URI)
|
139
|
-
end
|
140
119
|
end
|
141
120
|
|
142
121
|
|
@@ -158,12 +137,12 @@ class XML < Bio::SOAPWSDL
|
|
158
137
|
#
|
159
138
|
# === WSDL Methods
|
160
139
|
#
|
161
|
-
#
|
162
|
-
#
|
163
|
-
#
|
164
|
-
#
|
165
|
-
#
|
166
|
-
#
|
140
|
+
# * getFFEntry(accession)
|
141
|
+
# * getXMLEntry(accession)
|
142
|
+
# * getFeatureInfo(accession, feature)
|
143
|
+
# * getAllFeatures(accession)
|
144
|
+
# * getRelatedFeatures(accession, start, stop)
|
145
|
+
# * getRelatedFeaturesSeq(accession, start, stop)
|
167
146
|
#
|
168
147
|
# === References
|
169
148
|
#
|
@@ -171,11 +150,6 @@ class XML < Bio::SOAPWSDL
|
|
171
150
|
#
|
172
151
|
class DDBJ < XML
|
173
152
|
SERVER_URI = BASE_URI + "DDBJ.wsdl"
|
174
|
-
|
175
|
-
# returns a Bio::DDBJ::XML::DDBJ object.
|
176
|
-
def initialize(wsdl = nil)
|
177
|
-
super(wsdl || SERVER_URI)
|
178
|
-
end
|
179
153
|
end
|
180
154
|
|
181
155
|
|
@@ -196,8 +170,8 @@ class XML < Bio::SOAPWSDL
|
|
196
170
|
#
|
197
171
|
# === WSDL Methods
|
198
172
|
#
|
199
|
-
#
|
200
|
-
#
|
173
|
+
# * searchSimple(program, database, query)
|
174
|
+
# * searchParam(program, database, query, param)
|
201
175
|
#
|
202
176
|
# === References
|
203
177
|
#
|
@@ -205,11 +179,6 @@ class XML < Bio::SOAPWSDL
|
|
205
179
|
#
|
206
180
|
class Fasta < XML
|
207
181
|
SERVER_URI = BASE_URI + "Fasta.wsdl"
|
208
|
-
|
209
|
-
# returns a Bio::DDBJ::XML::Fasta object.
|
210
|
-
def initialize(wsdl = nil)
|
211
|
-
super(wsdl || SERVER_URI)
|
212
|
-
end
|
213
182
|
end
|
214
183
|
|
215
184
|
|
@@ -227,35 +196,35 @@ class XML < Bio::SOAPWSDL
|
|
227
196
|
#
|
228
197
|
# === WSDL Methods
|
229
198
|
#
|
230
|
-
#
|
231
|
-
#
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
241
|
-
#
|
242
|
-
#
|
243
|
-
#
|
244
|
-
#
|
245
|
-
#
|
246
|
-
#
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
250
|
-
#
|
251
|
-
#
|
252
|
-
#
|
253
|
-
#
|
254
|
-
#
|
255
|
-
#
|
256
|
-
#
|
257
|
-
#
|
258
|
-
#
|
199
|
+
# * getEntry(database, var, param1, param2)
|
200
|
+
# * getEntry(database, var)
|
201
|
+
# * getDDBJEntry(accession)
|
202
|
+
# * getDDBJCONEntry(accession)
|
203
|
+
# * getDDBJVerEntry(accession)
|
204
|
+
# * getLocus_DDBJEntry(locus)
|
205
|
+
# * getGene_DDBJEntry(gene)
|
206
|
+
# * getProd_DDBJEntry(products)
|
207
|
+
# * getPID_DDBJEntry(pid)
|
208
|
+
# * getClone_DDBJEntry(clone)
|
209
|
+
# * getXML_DDBJEntry(accession)
|
210
|
+
# * getEMBLEntry(accession)
|
211
|
+
# * getSWISSEntry(accession)
|
212
|
+
# * getPIREntry(accession)
|
213
|
+
# * getPRFEntry(accession)
|
214
|
+
# * getPDBEntry(accession)
|
215
|
+
# * getQVEntry(accession)
|
216
|
+
# * getDADEntry(accession)
|
217
|
+
# * getPID_DADEntry(pid)
|
218
|
+
# * getFASTA_DDBJEntry(accession)
|
219
|
+
# * getFASTA_DDBJCONEntry(accession)
|
220
|
+
# * getFASTA_DDBJVerEntry(accession)
|
221
|
+
# * getFASTA_DDBJSeqEntry(accession, start, end)
|
222
|
+
# * getFASTA_DADEntry(accession)
|
223
|
+
# * getFASTA_PIREntry(accession)
|
224
|
+
# * getFASTA_SWISSEntry(accession)
|
225
|
+
# * getFASTA_PDBEntry(accession)
|
226
|
+
# * getFASTA_PRFEntry(accession)
|
227
|
+
# * getFASTA_CDSEntry(accession)
|
259
228
|
#
|
260
229
|
# === References
|
261
230
|
#
|
@@ -263,11 +232,6 @@ class XML < Bio::SOAPWSDL
|
|
263
232
|
#
|
264
233
|
class GetEntry < XML
|
265
234
|
SERVER_URI = BASE_URI + "GetEntry.wsdl"
|
266
|
-
|
267
|
-
# returns a Bio::DDBJ::XML::GetEntry object.
|
268
|
-
def initialize(wsdl = nil)
|
269
|
-
super(wsdl || SERVER_URI)
|
270
|
-
end
|
271
235
|
end
|
272
236
|
|
273
237
|
|
@@ -294,17 +258,17 @@ class XML < Bio::SOAPWSDL
|
|
294
258
|
#
|
295
259
|
# === WSDL Methods
|
296
260
|
#
|
297
|
-
#
|
298
|
-
#
|
299
|
-
#
|
300
|
-
#
|
301
|
-
#
|
302
|
-
#
|
303
|
-
#
|
304
|
-
#
|
305
|
-
#
|
306
|
-
#
|
307
|
-
#
|
261
|
+
# * getOrganismList
|
262
|
+
# * getChIDList
|
263
|
+
# * getOrganismNameFromChid(chid)
|
264
|
+
# * getChIDFromOrganismName(orgName)
|
265
|
+
# * getAccession(chid)
|
266
|
+
# * getPieceNumber(chid)
|
267
|
+
# * getDivision(chid)
|
268
|
+
# * getType(chid)
|
269
|
+
# * getFlatFile(chid)
|
270
|
+
# * getFastaFile(chid, type)
|
271
|
+
# * getCDS(chid)
|
308
272
|
#
|
309
273
|
# === References
|
310
274
|
#
|
@@ -312,11 +276,6 @@ class XML < Bio::SOAPWSDL
|
|
312
276
|
#
|
313
277
|
class Gib < XML
|
314
278
|
SERVER_URI = BASE_URI + "Gib.wsdl"
|
315
|
-
|
316
|
-
# returns a Bio::DDBJ::XML::Gib object.
|
317
|
-
def initialize(wsdl = nil)
|
318
|
-
super(wsdl || SERVER_URI)
|
319
|
-
end
|
320
279
|
end
|
321
280
|
|
322
281
|
|
@@ -334,8 +293,8 @@ class XML < Bio::SOAPWSDL
|
|
334
293
|
#
|
335
294
|
# === WSDL Methods
|
336
295
|
#
|
337
|
-
#
|
338
|
-
#
|
296
|
+
# * getOrganismList
|
297
|
+
# * getMasterInfo(orfID, organism)
|
339
298
|
#
|
340
299
|
# === References
|
341
300
|
#
|
@@ -343,11 +302,6 @@ class XML < Bio::SOAPWSDL
|
|
343
302
|
#
|
344
303
|
class Gtop < XML
|
345
304
|
SERVER_URI = BASE_URI + "Gtop.wsdl"
|
346
|
-
|
347
|
-
# returns a Bio::DDBJ::XML::Gtop object.
|
348
|
-
def initialize(wsdl = nil)
|
349
|
-
super(wsdl || SERVER_URI)
|
350
|
-
end
|
351
305
|
end
|
352
306
|
|
353
307
|
|
@@ -364,12 +318,12 @@ class XML < Bio::SOAPWSDL
|
|
364
318
|
#
|
365
319
|
# === WSDL Methods
|
366
320
|
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
321
|
+
# * searchVariation(field, query, order)
|
322
|
+
# * searchVariationSimple(field, query)
|
323
|
+
# * searchFrequency(field, query, order)
|
324
|
+
# * searchFrequencySimple(field, query)
|
325
|
+
# * getVariation(variation_id)
|
326
|
+
# * getFrequency(variation_id, population_id)
|
373
327
|
#
|
374
328
|
# === References
|
375
329
|
#
|
@@ -377,11 +331,6 @@ class XML < Bio::SOAPWSDL
|
|
377
331
|
#
|
378
332
|
class PML < XML
|
379
333
|
SERVER_URI = BASE_URI + "PML.wsdl"
|
380
|
-
|
381
|
-
# returns a Bio::DDBJ::XML::PML object.
|
382
|
-
def initialize(wsdl = nil)
|
383
|
-
super(wsdl || SERVER_URI)
|
384
|
-
end
|
385
334
|
end
|
386
335
|
|
387
336
|
|
@@ -399,8 +348,8 @@ class XML < Bio::SOAPWSDL
|
|
399
348
|
#
|
400
349
|
# === WSDL Methods
|
401
350
|
#
|
402
|
-
#
|
403
|
-
#
|
351
|
+
# * searchSimple(query)
|
352
|
+
# * searchParam(query, param)
|
404
353
|
#
|
405
354
|
# === Examples
|
406
355
|
#
|
@@ -408,11 +357,6 @@ class XML < Bio::SOAPWSDL
|
|
408
357
|
#
|
409
358
|
class SRS < XML
|
410
359
|
SERVER_URI = BASE_URI + "SRS.wsdl"
|
411
|
-
|
412
|
-
# returns a Bio::DDBJ::XML::SRS object.
|
413
|
-
def initialize(wsdl = nil)
|
414
|
-
super(wsdl || SERVER_URI)
|
415
|
-
end
|
416
360
|
end
|
417
361
|
|
418
362
|
|
@@ -436,11 +380,11 @@ class XML < Bio::SOAPWSDL
|
|
436
380
|
#
|
437
381
|
# === WSDL Methdos
|
438
382
|
#
|
439
|
-
#
|
440
|
-
#
|
441
|
-
#
|
442
|
-
#
|
443
|
-
#
|
383
|
+
# * searchSimple(tx_Name)
|
384
|
+
# * searchParam(tx_Name, tx_Clas, tx_Rank, tx_Rmax, tx_Dcls)
|
385
|
+
# * getTxId(tx_Name)
|
386
|
+
# * getTxName(tx_Id)
|
387
|
+
# * searchLineage(query, ranks, superkingdom)
|
444
388
|
#
|
445
389
|
# === References
|
446
390
|
#
|
@@ -448,11 +392,6 @@ class XML < Bio::SOAPWSDL
|
|
448
392
|
#
|
449
393
|
class TxSearch < XML
|
450
394
|
SERVER_URI = BASE_URI + "TxSearch.wsdl"
|
451
|
-
|
452
|
-
# returns a Bio::DDBJ::XML::TxSearch object.
|
453
|
-
def initialize(wsdl = nil)
|
454
|
-
super(wsdl || SERVER_URI)
|
455
|
-
end
|
456
395
|
end
|
457
396
|
|
458
397
|
end # XML
|
@@ -0,0 +1,158 @@
|
|
1
|
+
#
|
2
|
+
# = bio/io/emblsoap.rb - EBI SOAP server access class
|
3
|
+
#
|
4
|
+
# Copyright:: Copyright (C) 2006
|
5
|
+
# Toshiaki Katayama <k@bioruby.org>
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: ebisoap.rb,v 1.3 2007/04/05 23:35:41 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'bio/io/soapwsdl'
|
12
|
+
|
13
|
+
module Bio
|
14
|
+
class EBI
|
15
|
+
|
16
|
+
class SOAP < Bio::SOAPWSDL
|
17
|
+
|
18
|
+
BASE_URI = "http://www.ebi.ac.uk/Tools/webservices/wsdl/"
|
19
|
+
|
20
|
+
# set default to Dbfetch
|
21
|
+
SERVER_URI = BASE_URI + "WSDbfetch.wsdl"
|
22
|
+
|
23
|
+
def initialize(wsdl = nil)
|
24
|
+
super(wsdl || self.class::SERVER_URI)
|
25
|
+
end
|
26
|
+
|
27
|
+
# * fetchData
|
28
|
+
# * getSupportedDBs
|
29
|
+
# * getSupportedFormats
|
30
|
+
# * getSupportedStyles
|
31
|
+
class Dbfetch < Bio::EBI::SOAP
|
32
|
+
SERVER_URI = BASE_URI + "WSDbfetch.wsdl"
|
33
|
+
end
|
34
|
+
|
35
|
+
# * checkStatus
|
36
|
+
# * doIprscan
|
37
|
+
# * getResults
|
38
|
+
# * poll
|
39
|
+
# * polljob
|
40
|
+
# * runInterProScan
|
41
|
+
# * test
|
42
|
+
class InterProScan < Bio::EBI::SOAP
|
43
|
+
SERVER_URI = BASE_URI + "WSInterProScan.wsdl"
|
44
|
+
end
|
45
|
+
|
46
|
+
# * checkStatus
|
47
|
+
# * getInfo
|
48
|
+
# * getResults
|
49
|
+
# * getTools
|
50
|
+
# * poll
|
51
|
+
# * run
|
52
|
+
# * test
|
53
|
+
class Emboss < Bio::EBI::SOAP
|
54
|
+
SERVER_URI = BASE_URI + "WSEmboss.wsdl"
|
55
|
+
end
|
56
|
+
|
57
|
+
# * checkStatus
|
58
|
+
# * getResults
|
59
|
+
# * poll
|
60
|
+
# * runClustalW
|
61
|
+
# * test
|
62
|
+
class ClustalW < Bio::EBI::SOAP
|
63
|
+
SERVER_URI = BASE_URI + "WSClustalW.wsdl"
|
64
|
+
end
|
65
|
+
|
66
|
+
# * checkStatus
|
67
|
+
# * getResults
|
68
|
+
# * poll
|
69
|
+
# * runTCoffee
|
70
|
+
class TCoffee < Bio::EBI::SOAP
|
71
|
+
SERVER_URI = BASE_URI + "WSTCoffee.wsdl"
|
72
|
+
end
|
73
|
+
|
74
|
+
# * checkStatus
|
75
|
+
# * getResults
|
76
|
+
# * poll
|
77
|
+
# * runMuscle
|
78
|
+
# * test
|
79
|
+
class Muscle < Bio::EBI::SOAP
|
80
|
+
SERVER_URI = BASE_URI + "WSMuscle.wsdl"
|
81
|
+
end
|
82
|
+
|
83
|
+
# * checkStatus
|
84
|
+
# * doFasta
|
85
|
+
# * getResults
|
86
|
+
# * poll
|
87
|
+
# * polljob
|
88
|
+
# * runFasta
|
89
|
+
class Fasta < Bio::EBI::SOAP
|
90
|
+
SERVER_URI = BASE_URI + "WSFasta.wsdl"
|
91
|
+
end
|
92
|
+
|
93
|
+
# * checkStatus
|
94
|
+
# * doWUBlast
|
95
|
+
# * getIds
|
96
|
+
# * getResults
|
97
|
+
# * poll
|
98
|
+
# * polljob
|
99
|
+
# * runWUBlast
|
100
|
+
# * test
|
101
|
+
class WUBlast < Bio::EBI::SOAP
|
102
|
+
SERVER_URI = BASE_URI + "WSWUBlast.wsdl"
|
103
|
+
end
|
104
|
+
|
105
|
+
# * checkStatus
|
106
|
+
# * getResults
|
107
|
+
# * poll
|
108
|
+
# * runMPsrch
|
109
|
+
# * test
|
110
|
+
class MPsrch < Bio::EBI::SOAP
|
111
|
+
SERVER_URI = BASE_URI + "WSMPsrch.wsdl"
|
112
|
+
end
|
113
|
+
|
114
|
+
# * checkStatus
|
115
|
+
# * getResults
|
116
|
+
# * poll
|
117
|
+
# * runScanPS
|
118
|
+
# * test
|
119
|
+
class ScanPS < Bio::EBI::SOAP
|
120
|
+
SERVER_URI = BASE_URI + "WSScanPS.wsdl"
|
121
|
+
end
|
122
|
+
|
123
|
+
class MSD < Bio::EBI::SOAP
|
124
|
+
SERVER_URI = "http://www.ebi.ac.uk/msd-srv/docs/api/msd_soap_service.wsdl"
|
125
|
+
end
|
126
|
+
|
127
|
+
class Ontology < Bio::EBI::SOAP
|
128
|
+
SERVER_URI = "http://www.ebi.ac.uk/ontology-lookup/OntologyQuery.wsdl"
|
129
|
+
end
|
130
|
+
|
131
|
+
class Citation < Bio::EBI::SOAP
|
132
|
+
SERVER_URI = "http://www.ebi.ac.uk/citations/webservices/wsdl"
|
133
|
+
end
|
134
|
+
|
135
|
+
end # SOAP
|
136
|
+
|
137
|
+
end # EBI
|
138
|
+
end # Bio
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
if __FILE__ == $0
|
143
|
+
serv = Bio::EBI::SOAP::Dbfetch.new
|
144
|
+
p serv.getSupportedDBs
|
145
|
+
|
146
|
+
require 'base64'
|
147
|
+
|
148
|
+
serv = Bio::EBI::SOAP::Emboss.new
|
149
|
+
hash = {"tool" => "water",
|
150
|
+
"asequence" => "uniprot:alk1_human",
|
151
|
+
"bsequence" => "uniprot:alk1_mouse",
|
152
|
+
"email" => "ebisoap@example.org"}
|
153
|
+
poll = serv.run(hash, [])
|
154
|
+
puts poll
|
155
|
+
base = serv.poll(poll, "tooloutput")
|
156
|
+
puts Base64.decode64(base)
|
157
|
+
end
|
158
|
+
|