bio 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
#
|
|
2
2
|
# test/unit/bio/io/test_soapwsdl.rb - Unit test for SOAP/WSDL
|
|
3
3
|
#
|
|
4
|
-
# Copyright (C) 2005 Mitsuteru Nakao <n@bioruby.org>
|
|
4
|
+
# Copytight:: Copyright (C) 2005 Mitsuteru Nakao <n@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
8
|
-
# License as published by the Free Software Foundation; either
|
|
9
|
-
# version 2 of the License, or (at your option) any later version.
|
|
10
|
-
#
|
|
11
|
-
# This library is distributed in the hope that it will be useful,
|
|
12
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14
|
-
# Lesser General Public License for more details.
|
|
15
|
-
#
|
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
17
|
-
# License along with this library; if not, write to the Free Software
|
|
18
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19
|
-
#
|
|
20
|
-
# $Id: test_soapwsdl.rb,v 1.1 2005/12/18 17:09:53 nakao Exp $
|
|
7
|
+
# $Id: test_soapwsdl.rb,v 1.3 2007/04/05 23:35:43 trevor Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'pathname'
|
|
@@ -37,7 +24,7 @@ class TestSOAPWSDL < Test::Unit::TestCase
|
|
|
37
24
|
end
|
|
38
25
|
|
|
39
26
|
def test_methods
|
|
40
|
-
methods = ['wsdl', 'wsdl=', 'log', 'log=']
|
|
27
|
+
methods = ['list_methods','wsdl', 'wsdl=', 'log', 'log=']
|
|
41
28
|
assert_equal(methods.sort, (@obj.instance_methods - Object.methods).sort)
|
|
42
29
|
end
|
|
43
30
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
#
|
|
4
4
|
# Copyright:: Copyright (C) 2006
|
|
5
5
|
# Mitsuteru C. Nakao <n@bioruby.org>
|
|
6
|
-
#
|
|
6
|
+
# License:: The Ruby License
|
|
7
7
|
#
|
|
8
|
-
# $Id: test_aa.rb,v 1.
|
|
8
|
+
# $Id: test_aa.rb,v 1.4 2007/04/14 05:09:23 k Exp $
|
|
9
9
|
#
|
|
10
10
|
|
|
11
11
|
require 'pathname'
|
|
@@ -67,7 +67,7 @@ module Bio
|
|
|
67
67
|
re = /RRLEHTFVFLRNFSLMLLRY/
|
|
68
68
|
assert_equal(re, @obj.to_re)
|
|
69
69
|
@obj[1, 1] = 'B'
|
|
70
|
-
re = /R[
|
|
70
|
+
re = /R[DNB]LEHTFVFLRNFSLMLLRY/
|
|
71
71
|
assert_equal(re, @obj.to_re)
|
|
72
72
|
end
|
|
73
73
|
|
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
#
|
|
2
2
|
# test/unit/bio/sequence/test_common.rb - Unit test for Bio::Sequencce::Common
|
|
3
3
|
#
|
|
4
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2006 Mitsuteru C. Nakao <n@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
8
|
-
# License as published by the Free Software Foundation; either
|
|
9
|
-
# version 2 of the License, or (at your option) any later version.
|
|
10
|
-
#
|
|
11
|
-
# This library is distributed in the hope that it will be useful,
|
|
12
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14
|
-
# Lesser General Public License for more details.
|
|
15
|
-
#
|
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
17
|
-
# License along with this library; if not, write to the Free Software
|
|
18
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19
|
-
#
|
|
20
|
-
# $Id: test_common.rb,v 1.2 2006/02/07 16:53:08 nakao Exp $
|
|
7
|
+
# $Id: test_common.rb,v 1.4 2007/04/05 23:35:44 trevor Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'pathname'
|
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
#
|
|
2
2
|
# test/unit/bio/sequence/test_compat.rb - Unit test for Bio::Sequencce::Compat
|
|
3
3
|
#
|
|
4
|
-
# Copyright (C) 2006 Mitsuteru C. Nakao <n@bioruby.org>
|
|
4
|
+
# Copyright:: Copyright (C) 2006 Mitsuteru C. Nakao <n@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
8
|
-
# License as published by the Free Software Foundation; either
|
|
9
|
-
# version 2 of the License, or (at your option) any later version.
|
|
10
|
-
#
|
|
11
|
-
# This library is distributed in the hope that it will be useful,
|
|
12
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14
|
-
# Lesser General Public License for more details.
|
|
15
|
-
#
|
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
17
|
-
# License along with this library; if not, write to the Free Software
|
|
18
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19
|
-
#
|
|
20
|
-
# $Id: test_compat.rb,v 1.1 2006/02/05 17:39:27 nakao Exp $
|
|
7
|
+
# $Id: test_compat.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'pathname'
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
#
|
|
4
4
|
# Copyright:: Copyright (C) 2006
|
|
5
5
|
# Mitsuteru C. Nakao <n@bioruby.org>
|
|
6
|
-
#
|
|
6
|
+
# License:: The Ruby License
|
|
7
7
|
#
|
|
8
|
-
# $Id: test_na.rb,v 1.
|
|
8
|
+
# $Id: test_na.rb,v 1.5 2007/04/05 23:35:44 trevor Exp $
|
|
9
9
|
#
|
|
10
10
|
|
|
11
11
|
require 'pathname'
|
|
@@ -98,6 +98,32 @@ module Bio
|
|
|
98
98
|
assert_equal(45, @obj.gc_percent)
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
+
def test_gc_content
|
|
102
|
+
assert_in_delta(0.4, @obj.gc_content, Float::EPSILON)
|
|
103
|
+
@obj[0, 1] = 'g'
|
|
104
|
+
assert_in_delta(0.45, @obj.gc_content, Float::EPSILON)
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def test_at_content
|
|
108
|
+
assert_in_delta(0.6, @obj.at_content, Float::EPSILON)
|
|
109
|
+
@obj[0, 1] = 'g'
|
|
110
|
+
assert_in_delta(0.55, @obj.at_content, Float::EPSILON)
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def test_gc_skew
|
|
114
|
+
assert_in_delta(0.0, @obj.gc_skew, Float::EPSILON)
|
|
115
|
+
@obj[0, 1] = 'g'
|
|
116
|
+
assert_in_delta(1.0/9.0, @obj.gc_skew, Float::EPSILON)
|
|
117
|
+
@obj.gsub!(/a/, 'c')
|
|
118
|
+
assert_in_delta(-3.0/8.0, @obj.gc_skew, Float::EPSILON)
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
def test_at_skew
|
|
122
|
+
assert_in_delta(1.0/3.0, @obj.at_skew, Float::EPSILON)
|
|
123
|
+
@obj[0, 1] = 'g'
|
|
124
|
+
assert_in_delta(3.0/11.0, @obj.at_skew, Float::EPSILON)
|
|
125
|
+
end
|
|
126
|
+
|
|
101
127
|
def test_iliegal_bases
|
|
102
128
|
@obj[0, 1] = 'n'
|
|
103
129
|
@obj[1, 1] = 'y'
|
|
@@ -115,7 +141,7 @@ module Bio
|
|
|
115
141
|
@obj[3,1] = 's'
|
|
116
142
|
@obj[4,1] = 'y'
|
|
117
143
|
@obj[5,1] = 'w'
|
|
118
|
-
assert_equal(/a[
|
|
144
|
+
assert_equal(/a[atgcyrwskmbdhvn][agr][gcw][tcy][atw]gcatgcatgcaaaa/, @obj.to_re)
|
|
119
145
|
end
|
|
120
146
|
|
|
121
147
|
def test_names
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
#
|
|
4
4
|
# Copyright:: Copyright (C) 2005
|
|
5
5
|
# Mitsuteru Nakao <n@bioruby.org>
|
|
6
|
-
# License:: Ruby
|
|
6
|
+
# License:: The Ruby License
|
|
7
7
|
#
|
|
8
|
-
# $Id: test_seq.rb,v 1.
|
|
8
|
+
# $Id: test_seq.rb,v 1.9 2007/04/05 23:35:44 trevor Exp $
|
|
9
9
|
#
|
|
10
10
|
|
|
11
11
|
require 'pathname'
|
|
@@ -40,17 +40,17 @@ END
|
|
|
40
40
|
|
|
41
41
|
def test_naseq
|
|
42
42
|
str = 'ACGT'
|
|
43
|
-
assert_equal(Bio::Sequence
|
|
44
|
-
assert_equal(Bio::Sequence::NA
|
|
45
|
-
assert_equal('acgt',
|
|
43
|
+
assert_equal(Bio::Sequence, getseq(str).class)
|
|
44
|
+
assert_equal(Bio::Sequence::NA, getseq(str).moltype)
|
|
45
|
+
assert_equal('acgt', getseq(str).seq)
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
def test_aaseq
|
|
50
50
|
str = 'WD'
|
|
51
|
-
assert_equal(Bio::Sequence
|
|
52
|
-
assert_equal(Bio::Sequence::AA
|
|
53
|
-
assert_equal('WD',
|
|
51
|
+
assert_equal(Bio::Sequence, getseq(str).class)
|
|
52
|
+
assert_equal(Bio::Sequence::AA, getseq(str).moltype)
|
|
53
|
+
assert_equal('WD', getseq(str).seq)
|
|
54
54
|
end
|
|
55
55
|
|
|
56
56
|
|
|
@@ -1,24 +1,12 @@
|
|
|
1
1
|
#
|
|
2
2
|
# test/unit/bio/test_alignment.rb - Unit test for Bio::Alignment
|
|
3
3
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2004
|
|
5
|
+
# Moses Hohman <mmhohman@northwestern.edu>
|
|
6
|
+
# 2005 Naohisa Goto <ng@bioruby.org>
|
|
7
|
+
# License:: The Ruby License
|
|
6
8
|
#
|
|
7
|
-
#
|
|
8
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
9
|
-
# License as published by the Free Software Foundation; either
|
|
10
|
-
# version 2 of the License, or (at your option) any later version.
|
|
11
|
-
#
|
|
12
|
-
# This library is distributed in the hope that it will be useful,
|
|
13
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
15
|
-
# Lesser General Public License for more details.
|
|
16
|
-
#
|
|
17
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
18
|
-
# License along with this library; if not, write to the Free Software
|
|
19
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
20
|
-
#
|
|
21
|
-
# $Id: test_alignment.rb,v 1.7 2006/01/24 14:11:34 ngoto Exp $
|
|
9
|
+
# $Id: test_alignment.rb,v 1.11 2007/04/05 23:35:42 trevor Exp $
|
|
22
10
|
#
|
|
23
11
|
|
|
24
12
|
require 'pathname'
|
|
@@ -544,34 +532,35 @@ module Bio
|
|
|
544
532
|
end
|
|
545
533
|
end #class TestAlignmentEnumerableExtension
|
|
546
534
|
|
|
547
|
-
class
|
|
535
|
+
class TestAlignmentOutput < Test::Unit::TestCase
|
|
548
536
|
def setup
|
|
549
537
|
@obj = Object.new
|
|
550
|
-
@obj.extend(Alignment::
|
|
538
|
+
@obj.extend(Alignment::Output)
|
|
551
539
|
end
|
|
552
540
|
|
|
553
|
-
def
|
|
541
|
+
def test_clustal_have_same_name_true
|
|
554
542
|
assert_equal([ 0, 1 ], @obj.instance_eval {
|
|
555
|
-
|
|
543
|
+
__clustal_have_same_name?([ 'ATP ATG', 'ATP ATA', 'BBB' ]) })
|
|
556
544
|
end
|
|
557
545
|
|
|
558
546
|
def test_have_same_name_false
|
|
559
547
|
assert_equal(false, @obj.instance_eval {
|
|
560
|
-
|
|
548
|
+
__clustal_have_same_name?([ 'GTP ATG', 'ATP ATA', 'BBB' ]) })
|
|
561
549
|
end
|
|
562
550
|
|
|
563
551
|
def test_avoid_same_name
|
|
564
552
|
assert_equal([ 'ATP_ATG', 'ATP_ATA', 'BBB' ],
|
|
565
|
-
|
|
566
|
-
|
|
553
|
+
@obj.instance_eval {
|
|
554
|
+
__clustal_avoid_same_name([ 'ATP ATG', 'ATP ATA', 'BBB' ]) })
|
|
567
555
|
end
|
|
556
|
+
|
|
568
557
|
def test_avoid_same_name_numbering
|
|
569
558
|
assert_equal([ '0_ATP', '1_ATP', '2_BBB' ],
|
|
570
|
-
|
|
571
|
-
|
|
559
|
+
@obj.instance_eval {
|
|
560
|
+
__clustal_avoid_same_name([ 'ATP', 'ATP', 'BBB' ]) })
|
|
572
561
|
end
|
|
573
562
|
|
|
574
|
-
end #class
|
|
563
|
+
end #class TestAlignmentOutput
|
|
575
564
|
|
|
576
565
|
|
|
577
566
|
class TestAlignment < Test::Unit::TestCase
|
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
#
|
|
2
2
|
# test/unit/bio/test_command.rb - Unit test for external command execution methods
|
|
3
3
|
#
|
|
4
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2005-2006
|
|
5
|
+
# Mitsuteru Nakao <n@bioruby.org>,
|
|
6
|
+
# Naohisa Goto <ng@bioruby.org>
|
|
7
|
+
# License:: The Ruby License
|
|
5
8
|
#
|
|
6
|
-
#
|
|
7
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
8
|
-
# License as published by the Free Software Foundation; either
|
|
9
|
-
# version 2 of the License, or (at your option) any later version.
|
|
10
|
-
#
|
|
11
|
-
# This library is distributed in the hope that it will be useful,
|
|
12
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14
|
-
# Lesser General Public License for more details.
|
|
15
|
-
#
|
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
17
|
-
# License along with this library; if not, write to the Free Software
|
|
18
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19
|
-
#
|
|
20
|
-
# $Id: test_command.rb,v 1.1 2005/10/27 15:11:51 nakao Exp $
|
|
9
|
+
# $Id: test_command.rb,v 1.5 2007/04/05 23:35:42 trevor Exp $
|
|
21
10
|
#
|
|
22
11
|
|
|
23
12
|
require 'pathname'
|
|
@@ -29,42 +18,270 @@ require 'test/unit'
|
|
|
29
18
|
require 'bio/command'
|
|
30
19
|
|
|
31
20
|
module Bio
|
|
32
|
-
class
|
|
21
|
+
class TestCommand < Test::Unit::TestCase
|
|
33
22
|
|
|
34
|
-
def
|
|
35
|
-
Bio::Command::
|
|
36
|
-
Bio::Command::
|
|
37
|
-
Bio::Command::
|
|
23
|
+
def test_command_constants
|
|
24
|
+
Bio::Command::UNSAFE_CHARS_UNIX
|
|
25
|
+
Bio::Command::QUOTE_CHARS_WINDOWS
|
|
26
|
+
Bio::Command::UNESCAPABLE_CHARS
|
|
38
27
|
end
|
|
39
28
|
|
|
40
29
|
def test_escape_shell_windows
|
|
30
|
+
str = "bio_ruby.123@456:789"
|
|
31
|
+
assert_equal("bio_ruby.123@456:789",
|
|
32
|
+
Bio::Command.escape_shell_windows(str))
|
|
33
|
+
str = "bio\'\"r u\"b\\y123@456:789"
|
|
34
|
+
assert_equal("\"bio'\"\"r u\"\"b\\y123@456:789\"",
|
|
35
|
+
Bio::Command.escape_shell_windows(str))
|
|
41
36
|
end
|
|
42
37
|
|
|
43
38
|
def test_escape_shell_unix
|
|
39
|
+
str = "bio_ruby.123@456:789"
|
|
40
|
+
assert_equal("bio_ruby.123@456:789",
|
|
41
|
+
Bio::Command.escape_shell_unix(str))
|
|
42
|
+
str = "bio\'\"r u\"b\\y123@456:789"
|
|
43
|
+
assert_equal("bio\\'\\\"r\\ u\\\"b\\\\y123@456:789",
|
|
44
|
+
Bio::Command.escape_shell_unix(str))
|
|
44
45
|
end
|
|
45
46
|
|
|
46
47
|
def test_escape_shell
|
|
48
|
+
str = "bio_ruby.123@456:789"
|
|
49
|
+
assert_equal("bio_ruby.123@456:789",
|
|
50
|
+
Bio::Command.escape_shell(str))
|
|
51
|
+
str = "bio\'\"r u\"b\\y123@456:789"
|
|
52
|
+
case RUBY_PLATFORM
|
|
53
|
+
when /mswin32|bccwin32/
|
|
54
|
+
assert_equal("\"bio'\"\"r u\"\"b\\y123@456:789\"",
|
|
55
|
+
Bio::Command.escape_shell(str))
|
|
56
|
+
else
|
|
57
|
+
assert_equal("bio\\'\\\"r\\ u\\\"b\\\\y123@456:789",
|
|
58
|
+
Bio::Command.escape_shell(str))
|
|
59
|
+
end
|
|
47
60
|
end
|
|
48
61
|
|
|
49
62
|
def test_make_command_line
|
|
63
|
+
ary = [ "ruby",
|
|
64
|
+
"test.rb", "atgcatgc", "bio\'\"r u\"b\\y123@456:789" ]
|
|
65
|
+
case RUBY_PLATFORM
|
|
66
|
+
when /mswin32|bccwin32/
|
|
67
|
+
assert_equal("ruby" +
|
|
68
|
+
" test.rb atgcatgc" +
|
|
69
|
+
" \"bio'\"\"r u\"\"b\\y123@456:789\"",
|
|
70
|
+
Bio::Command.make_command_line(ary))
|
|
71
|
+
else
|
|
72
|
+
assert_equal("ruby" +
|
|
73
|
+
" test.rb atgcatgc" +
|
|
74
|
+
" bio\\'\\\"r\\ u\\\"b\\\\y123@456:789",
|
|
75
|
+
Bio::Command.make_command_line(ary))
|
|
76
|
+
end
|
|
50
77
|
end
|
|
51
78
|
|
|
52
79
|
def test_make_command_line_windows
|
|
80
|
+
ary = [ "C:\\Program Files\\Ruby\\bin\\ruby.exe",
|
|
81
|
+
"test.rb", "atgcatgc", "bio\'\"r u\"b\\y123@456:789" ]
|
|
82
|
+
assert_equal("\"C:\\Program Files\\Ruby\\bin\\ruby.exe\"" +
|
|
83
|
+
" test.rb atgcatgc" +
|
|
84
|
+
" \"bio'\"\"r u\"\"b\\y123@456:789\"",
|
|
85
|
+
Bio::Command.make_command_line_windows(ary))
|
|
53
86
|
end
|
|
54
87
|
|
|
55
88
|
def test_make_command_line_unix
|
|
89
|
+
ary = [ "/usr/local/bin/ruby",
|
|
90
|
+
"test.rb", "atgcatgc", "bio\'\"r u\"b\\y123@456:789" ]
|
|
91
|
+
assert_equal("/usr/local/bin/ruby" +
|
|
92
|
+
" test.rb atgcatgc" +
|
|
93
|
+
" bio\\'\\\"r\\ u\\\"b\\\\y123@456:789",
|
|
94
|
+
Bio::Command.make_command_line_unix(ary))
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def test_call_command
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def test_call_command_popen
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def test_call_command_fork
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def test_call_command_open3
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def test_query_command
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def test_query_command_popen
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
def test_query_command_fork
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def test_query_command_open3
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
def test_read_uri
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
def test_start_http
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
def test_new_http
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
def test_post_form
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def test_make_cgi_params_by_hash_in_symbol
|
|
134
|
+
ary = [
|
|
135
|
+
"type1=bp",
|
|
136
|
+
"type2=bp",
|
|
137
|
+
"downstream=",
|
|
138
|
+
"upstream=",
|
|
139
|
+
"format=fasta",
|
|
140
|
+
"options=similarity",
|
|
141
|
+
"options=gene",
|
|
142
|
+
"action=export",
|
|
143
|
+
"_format=Text",
|
|
144
|
+
"output=txt",
|
|
145
|
+
"submit=Continue%20%3E%3E",
|
|
146
|
+
]
|
|
147
|
+
hash = {
|
|
148
|
+
:type1 => 'bp',
|
|
149
|
+
:type2 => 'bp',
|
|
150
|
+
:downstream => '',
|
|
151
|
+
:upstream => '',
|
|
152
|
+
:format => 'fasta',
|
|
153
|
+
:options => ['similarity', 'gene'],
|
|
154
|
+
:action => 'export',
|
|
155
|
+
:_format => 'Text',
|
|
156
|
+
:output => 'txt',
|
|
157
|
+
:submit => 'Continue >>',
|
|
158
|
+
}
|
|
159
|
+
result = Bio::Command.make_cgi_params(hash)
|
|
160
|
+
ary.each do |str|
|
|
161
|
+
assert_match(str, result)
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
def test_make_cgi_params_by_hash_in_string
|
|
166
|
+
ary = [
|
|
167
|
+
"type1=bp",
|
|
168
|
+
"type2=bp",
|
|
169
|
+
"downstream=",
|
|
170
|
+
"upstream=",
|
|
171
|
+
"format=fasta",
|
|
172
|
+
"options=similarity",
|
|
173
|
+
"options=gene",
|
|
174
|
+
"action=export",
|
|
175
|
+
"_format=Text",
|
|
176
|
+
"output=txt",
|
|
177
|
+
"submit=Continue%20%3E%3E",
|
|
178
|
+
]
|
|
179
|
+
hash = {
|
|
180
|
+
"type1" => 'bp',
|
|
181
|
+
"type2" => 'bp',
|
|
182
|
+
"downstream" => '',
|
|
183
|
+
"upstream" => '',
|
|
184
|
+
"format" => 'fasta',
|
|
185
|
+
"options" => ['similarity', 'gene'],
|
|
186
|
+
"action" => 'export',
|
|
187
|
+
"_format" => 'Text',
|
|
188
|
+
"output" => 'txt',
|
|
189
|
+
"submit" => 'Continue >>',
|
|
190
|
+
}
|
|
191
|
+
result = Bio::Command.make_cgi_params(hash)
|
|
192
|
+
ary.each do |str|
|
|
193
|
+
assert_match(str, result)
|
|
194
|
+
end
|
|
56
195
|
end
|
|
57
196
|
|
|
58
|
-
def
|
|
197
|
+
def test_make_cgi_params_by_array_of_array
|
|
198
|
+
ary = [
|
|
199
|
+
"type1=bp",
|
|
200
|
+
"type2=bp",
|
|
201
|
+
"downstream=",
|
|
202
|
+
"upstream=",
|
|
203
|
+
"format=fasta",
|
|
204
|
+
"options=similarity",
|
|
205
|
+
"options=gene",
|
|
206
|
+
"action=export",
|
|
207
|
+
"_format=Text",
|
|
208
|
+
"output=txt",
|
|
209
|
+
"submit=Continue%20%3E%3E",
|
|
210
|
+
]
|
|
211
|
+
array_of_array = [
|
|
212
|
+
["type1", 'bp'],
|
|
213
|
+
["type2", 'bp'],
|
|
214
|
+
["downstream", ''],
|
|
215
|
+
["upstream", ''],
|
|
216
|
+
["format", 'fasta'],
|
|
217
|
+
["options", ['similarity', 'gene']],
|
|
218
|
+
["action", 'export'],
|
|
219
|
+
["_format", 'Text'],
|
|
220
|
+
["output", 'txt'],
|
|
221
|
+
["submit", 'Continue >>'],
|
|
222
|
+
]
|
|
223
|
+
result = Bio::Command.make_cgi_params(array_of_array)
|
|
224
|
+
ary.each do |str|
|
|
225
|
+
assert_match(str, result)
|
|
226
|
+
end
|
|
59
227
|
end
|
|
60
228
|
|
|
61
|
-
def
|
|
229
|
+
def test_make_cgi_params_by_array_of_hash
|
|
230
|
+
ary = [
|
|
231
|
+
"type1=bp",
|
|
232
|
+
"type2=bp",
|
|
233
|
+
"downstream=",
|
|
234
|
+
"upstream=",
|
|
235
|
+
"format=fasta",
|
|
236
|
+
"options=similarity",
|
|
237
|
+
"options=gene",
|
|
238
|
+
"action=export",
|
|
239
|
+
"_format=Text",
|
|
240
|
+
"output=txt",
|
|
241
|
+
"submit=Continue%20%3E%3E",
|
|
242
|
+
]
|
|
243
|
+
array_of_hash = [
|
|
244
|
+
{"type1" => 'bp'},
|
|
245
|
+
{"type2" => 'bp'},
|
|
246
|
+
{"downstream" => ''},
|
|
247
|
+
{"upstream" => ''},
|
|
248
|
+
{"format" => 'fasta'},
|
|
249
|
+
{"options" => ['similarity', 'gene']},
|
|
250
|
+
{"action" => 'export'},
|
|
251
|
+
{"_format" => 'Text'},
|
|
252
|
+
{"output" => 'txt'},
|
|
253
|
+
{"submit" => 'Continue >>'},
|
|
254
|
+
]
|
|
255
|
+
result = Bio::Command.make_cgi_params(array_of_hash)
|
|
256
|
+
ary.each do |str|
|
|
257
|
+
assert_match(str, result)
|
|
258
|
+
end
|
|
62
259
|
end
|
|
63
260
|
|
|
64
|
-
def
|
|
261
|
+
def test_make_cgi_params_by_array_of_string
|
|
262
|
+
str = "type1=bp&type2=bp&downstream=&upstream=&format=fasta&options=similarity&options=gene&action=export&_format=Text&output=txt&submit=Continue%20%3E%3E"
|
|
263
|
+
array_of_string = [
|
|
264
|
+
"type1=bp",
|
|
265
|
+
"type2=bp",
|
|
266
|
+
"downstream=",
|
|
267
|
+
"upstream=",
|
|
268
|
+
"format=fasta",
|
|
269
|
+
"options=similarity",
|
|
270
|
+
"options=gene",
|
|
271
|
+
"action=export",
|
|
272
|
+
"_format=Text",
|
|
273
|
+
"output=txt",
|
|
274
|
+
"submit=Continue >>",
|
|
275
|
+
]
|
|
276
|
+
result = Bio::Command.make_cgi_params(array_of_string)
|
|
277
|
+
assert_equal(str, result)
|
|
65
278
|
end
|
|
66
279
|
|
|
67
|
-
def
|
|
280
|
+
def test_make_cgi_params_by_string
|
|
281
|
+
string = "type1=bp&type2=bp&downstream=&upstream=&format=fasta&options=similarity&options=gene&action=export&_format=Text&output=txt&submit=Continue%20%3E%3E"
|
|
282
|
+
query = " type1=bp&type2=bp&downstream=&upstream=&format=fasta&options=similarity&options=gene&action=export&_format=Text&output=txt&submit=Continue >> "
|
|
283
|
+
result = Bio::Command.make_cgi_params(query)
|
|
284
|
+
assert_equal(string, result)
|
|
68
285
|
end
|
|
69
286
|
|
|
70
287
|
end
|