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
@@ -0,0 +1,100 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::AlignedStrands
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_aligned_strands.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/double_stranded/aligned_strands'
|
17
|
+
require 'bio/util/restriction_enzyme/double_stranded'
|
18
|
+
|
19
|
+
module Bio #:nodoc:
|
20
|
+
|
21
|
+
class TestDoubleStrandedAlignedStrands < Test::Unit::TestCase #:nodoc:
|
22
|
+
|
23
|
+
def setup
|
24
|
+
@t = Bio::RestrictionEnzyme::DoubleStranded::AlignedStrands
|
25
|
+
@s = Bio::Sequence::NA
|
26
|
+
|
27
|
+
@ds = Bio::RestrictionEnzyme::DoubleStranded
|
28
|
+
|
29
|
+
@s_1 = @s.new('gattaca')
|
30
|
+
@s_2 = @s_1.forward_complement
|
31
|
+
|
32
|
+
@s_3 = @s.new('tttttttnnn')
|
33
|
+
@s_4 = @s.new('nnnaaaaaaa')
|
34
|
+
|
35
|
+
@ds_1 = @ds.new('nnnn^ngattacann^nn^n')
|
36
|
+
|
37
|
+
@obj_1 = @t.align(@s_1, @s_2)
|
38
|
+
@obj_2 = @t.align(@s_1, @s_3)
|
39
|
+
@obj_3 = @t.align(@s_1, @s_4)
|
40
|
+
@obj_4 = @t.align(@s_3, @s_4)
|
41
|
+
|
42
|
+
@obj_5 = @t.align(@ds_1.primary, @ds_1.complement)
|
43
|
+
|
44
|
+
@obj_8 = @t.align_with_cuts(@ds_1.primary, @ds_1.complement, @ds_1.primary.cut_locations, @ds_1.complement.cut_locations)
|
45
|
+
|
46
|
+
@obj_6 = @t.align_with_cuts(@s_1, @s_2, [1,2], [3,4])
|
47
|
+
@obj_7 = @t.align_with_cuts(@s_3, @s_4, [1,2], [3,4])
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_ds
|
52
|
+
assert_equal('nngattacannnnn', @ds_1.primary)
|
53
|
+
assert_equal('nnnnnctaatgtnn', @ds_1.complement)
|
54
|
+
assert_equal( 'n^ngattacann^nn^n', @ds_1.primary.with_cut_symbols)
|
55
|
+
assert_equal('n^nn^nnctaatgtn^n' , @ds_1.complement.with_cut_symbols)
|
56
|
+
|
57
|
+
assert_equal([0, 10, 12], @ds_1.primary.cut_locations)
|
58
|
+
assert_equal([0, 2, 12], @ds_1.complement.cut_locations)
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_align
|
62
|
+
assert_equal('gattaca', @obj_1.primary)
|
63
|
+
assert_equal('ctaatgt', @obj_1.complement)
|
64
|
+
|
65
|
+
assert_equal('gattacannn', @obj_2.primary)
|
66
|
+
assert_equal('tttttttnnn', @obj_2.complement)
|
67
|
+
|
68
|
+
assert_equal('nnngattaca', @obj_3.primary)
|
69
|
+
assert_equal('nnnaaaaaaa', @obj_3.complement)
|
70
|
+
|
71
|
+
assert_equal('nnntttttttnnn', @obj_4.primary)
|
72
|
+
assert_equal('nnnaaaaaaannn', @obj_4.complement)
|
73
|
+
|
74
|
+
assert_equal('nnnnngattacannnnn', @obj_5.primary)
|
75
|
+
assert_equal('nnnnnctaatgtnnnnn', @obj_5.complement)
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_align_with_cuts
|
79
|
+
assert_equal('g a^t^t a c a', @obj_6.primary)
|
80
|
+
assert_equal('c t a a^t^g t', @obj_6.complement)
|
81
|
+
|
82
|
+
# Looks incorrect at first, but this is deliberate.
|
83
|
+
# The correct cuts need to be supplied by the user.
|
84
|
+
assert_equal('n n n t t^t^t t t t n n n', @obj_7.primary)
|
85
|
+
assert_equal('n n n a^a^a a a a a n n n', @obj_7.complement)
|
86
|
+
|
87
|
+
assert_equal('n n n n^n g a t t a c a n n^n n^n', @obj_8.primary)
|
88
|
+
assert_equal('n^n n^n n c t a a t g t n^n n n n', @obj_8.complement)
|
89
|
+
end
|
90
|
+
|
91
|
+
def test_argument_error
|
92
|
+
assert_raise(ArgumentError) { @t.new('arg', 'agg') }
|
93
|
+
assert_raise(ArgumentError) { @t.new(@s.new('arg'), 'agg') }
|
94
|
+
assert_raise(ArgumentError) { @t.new('arg', @s.new('agg')) }
|
95
|
+
assert_raise(ArgumentError) { @t.new(@s.new('argg'), @s.new('agg')) }
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationPair
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_cut_location_pair.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair'
|
17
|
+
|
18
|
+
module Bio #:nodoc:
|
19
|
+
|
20
|
+
class TestDoubleStrandedCutLocationPair < Test::Unit::TestCase #:nodoc:
|
21
|
+
|
22
|
+
def setup
|
23
|
+
@t = Bio::RestrictionEnzyme::DoubleStranded::CutLocationPair
|
24
|
+
|
25
|
+
@obj_1 = @t.new([3,5])
|
26
|
+
@obj_2 = @t.new(3, 5)
|
27
|
+
@obj_3 = @t.new((3..5))
|
28
|
+
@obj_4 = @t.new(0..5)
|
29
|
+
@obj_5 = @t.new(3)
|
30
|
+
@obj_6 = @t.new(nil,3)
|
31
|
+
@obj_7 = @t.new(3,nil)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_contents
|
35
|
+
assert_equal([3,5], @obj_1)
|
36
|
+
assert_equal([3,5], @obj_2)
|
37
|
+
assert_equal([3,5], @obj_3)
|
38
|
+
assert_equal([0,5], @obj_4)
|
39
|
+
assert_equal([3,nil], @obj_5)
|
40
|
+
assert_equal([nil,3], @obj_6)
|
41
|
+
assert_equal([3,nil], @obj_7)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_primary
|
45
|
+
assert_equal(3, @obj_1.primary)
|
46
|
+
assert_equal(3, @obj_2.primary)
|
47
|
+
assert_equal(3, @obj_3.primary)
|
48
|
+
assert_equal(0, @obj_4.primary)
|
49
|
+
assert_equal(3, @obj_5.primary)
|
50
|
+
assert_equal(nil, @obj_6.primary)
|
51
|
+
assert_equal(3, @obj_7.primary)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_complement
|
55
|
+
assert_equal(5, @obj_1.complement)
|
56
|
+
assert_equal(5, @obj_2.complement)
|
57
|
+
assert_equal(5, @obj_3.complement)
|
58
|
+
assert_equal(5, @obj_4.complement)
|
59
|
+
assert_equal(nil, @obj_5.complement)
|
60
|
+
assert_equal(3, @obj_6.complement)
|
61
|
+
assert_equal(nil, @obj_7.complement)
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
def test_argument_error
|
66
|
+
assert_raise(ArgumentError) { @t.new([3,5,6]) }
|
67
|
+
assert_raise(ArgumentError) { @t.new(3,-1) }
|
68
|
+
assert_raise(ArgumentError) { @t.new(-3,1) }
|
69
|
+
assert_raise(ArgumentError) { @t.new(nil,nil) }
|
70
|
+
assert_raise(ArgumentError) { @t.new('3',5) }
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationPairInEnzymeNotation
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_cut_location_pair_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation'
|
17
|
+
|
18
|
+
module Bio #:nodoc:
|
19
|
+
|
20
|
+
class TestDoubleStrandedCutLocationPairInEnzymeNotation < Test::Unit::TestCase #:nodoc:
|
21
|
+
|
22
|
+
def setup
|
23
|
+
@t = Bio::RestrictionEnzyme::DoubleStranded::CutLocationPairInEnzymeNotation
|
24
|
+
|
25
|
+
@obj_1 = @t.new([3,5])
|
26
|
+
@obj_2 = @t.new(3, 5)
|
27
|
+
@obj_3 = @t.new((3..5))
|
28
|
+
@obj_4 = @t.new(-3..5)
|
29
|
+
@obj_5 = @t.new(3)
|
30
|
+
@obj_6 = @t.new(nil,3)
|
31
|
+
@obj_7 = @t.new(3,nil)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_contents
|
35
|
+
assert_equal([3,5], @obj_1)
|
36
|
+
assert_equal([3,5], @obj_2)
|
37
|
+
assert_equal([3,5], @obj_3)
|
38
|
+
assert_equal([-3,5], @obj_4)
|
39
|
+
assert_equal([3,nil], @obj_5)
|
40
|
+
assert_equal([nil,3], @obj_6)
|
41
|
+
assert_equal([3,nil], @obj_7)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_primary
|
45
|
+
assert_equal(3, @obj_1.primary)
|
46
|
+
assert_equal(3, @obj_2.primary)
|
47
|
+
assert_equal(3, @obj_3.primary)
|
48
|
+
assert_equal(-3, @obj_4.primary)
|
49
|
+
assert_equal(3, @obj_5.primary)
|
50
|
+
assert_equal(nil, @obj_6.primary)
|
51
|
+
assert_equal(3, @obj_7.primary)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_complement
|
55
|
+
assert_equal(5, @obj_1.complement)
|
56
|
+
assert_equal(5, @obj_2.complement)
|
57
|
+
assert_equal(5, @obj_3.complement)
|
58
|
+
assert_equal(5, @obj_4.complement)
|
59
|
+
assert_equal(nil, @obj_5.complement)
|
60
|
+
assert_equal(3, @obj_6.complement)
|
61
|
+
assert_equal(nil, @obj_7.complement)
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_argument_error
|
65
|
+
assert_raise(ArgumentError) { @t.new([3,5,6]) }
|
66
|
+
assert_raise(ArgumentError) { @t.new(0,1) }
|
67
|
+
assert_raise(ArgumentError) { @t.new(0,0) }
|
68
|
+
assert_raise(ArgumentError) { @t.new('3',5) }
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocations
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_cut_locations.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/double_stranded/cut_locations'
|
17
|
+
|
18
|
+
module Bio #:nodoc:
|
19
|
+
|
20
|
+
class TestDoubleStrandedCutLocations < Test::Unit::TestCase #:nodoc:
|
21
|
+
|
22
|
+
def setup
|
23
|
+
@t = Bio::RestrictionEnzyme::DoubleStranded::CutLocationPair
|
24
|
+
@tt = Bio::RestrictionEnzyme::DoubleStranded::CutLocations
|
25
|
+
|
26
|
+
|
27
|
+
@obj_1 = @t.new([3,5])
|
28
|
+
@obj_2 = @t.new(3, 5)
|
29
|
+
@obj_3 = @t.new((3..5))
|
30
|
+
@obj_4 = @t.new(3..5)
|
31
|
+
@obj_5 = @t.new(3)
|
32
|
+
@obj_6 = @t.new(nil,3)
|
33
|
+
@obj_7 = @t.new(3,nil)
|
34
|
+
|
35
|
+
@locations = @tt.new(@obj_1, @obj_2, @obj_3, @obj_4, @obj_5, @obj_6, @obj_7)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_contents
|
39
|
+
assert_equal([3,5], @locations[0])
|
40
|
+
assert_equal([3,nil], @locations[-1])
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_primary
|
44
|
+
assert_equal([3, 3, 3, 3, 3, nil, 3], @locations.primary)
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_complement
|
48
|
+
assert_equal([5, 5, 5, 5, nil, 3, nil], @locations.complement)
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationsInEnzymeNotation
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_cut_locations_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation'
|
17
|
+
|
18
|
+
module Bio #:nodoc:
|
19
|
+
|
20
|
+
class TestDoubleStrandedCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodoc:
|
21
|
+
|
22
|
+
def setup
|
23
|
+
@t = Bio::RestrictionEnzyme::DoubleStranded::CutLocationPairInEnzymeNotation
|
24
|
+
@tt = Bio::RestrictionEnzyme::DoubleStranded::CutLocationsInEnzymeNotation
|
25
|
+
|
26
|
+
@obj_1 = @t.new([3,5])
|
27
|
+
@obj_2 = @t.new(3, 5)
|
28
|
+
@obj_3 = @t.new((3..5))
|
29
|
+
@obj_4 = @t.new(-3..5)
|
30
|
+
@obj_5 = @t.new(3)
|
31
|
+
@obj_6 = @t.new(nil,3)
|
32
|
+
@obj_7 = @t.new(3,nil)
|
33
|
+
@obj_8 = @t.new(-8, -7)
|
34
|
+
|
35
|
+
@locations = @tt.new(@obj_1, @obj_2, @obj_3, @obj_4, @obj_5, @obj_6, @obj_7, @obj_8)
|
36
|
+
@loc_2 = @tt.new(@t.new(-2,-2), @t.new(1,1))
|
37
|
+
@loc_3 = @tt.new(@t.new(1,2))
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_contents
|
41
|
+
assert_equal([3,5], @locations[0])
|
42
|
+
assert_equal([3,nil], @locations[-2])
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_primary
|
46
|
+
assert_equal([3, 3, 3, -3, 3, nil, 3, -8], @locations.primary)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_complement
|
50
|
+
assert_equal([5, 5, 5, 5, nil, 3, nil, -7], @locations.complement)
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_primary_to_array_index
|
54
|
+
assert_equal([10, 10, 10, 5, 10, nil, 10, 0], @locations.primary_to_array_index)
|
55
|
+
assert_equal([0,2], @loc_2.primary_to_array_index)
|
56
|
+
assert_equal([0], @loc_3.primary_to_array_index)
|
57
|
+
end
|
58
|
+
|
59
|
+
def test_primary_to_array_index_class
|
60
|
+
assert_equal(Array, @locations.primary_to_array_index.class)
|
61
|
+
assert_equal(Array, @loc_2.primary_to_array_index.class)
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_complement_to_array_index
|
65
|
+
assert_equal([12, 12, 12, 12, nil, 10, nil, 1], @locations.complement_to_array_index)
|
66
|
+
assert_equal([0,2], @loc_2.complement_to_array_index)
|
67
|
+
assert_equal([1], @loc_3.complement_to_array_index)
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_complement_to_array_index_class
|
71
|
+
assert_equal(Array, @locations.complement_to_array_index.class)
|
72
|
+
assert_equal(Array, @loc_2.complement_to_array_index.class)
|
73
|
+
end
|
74
|
+
|
75
|
+
def test_to_array_index
|
76
|
+
assert_equal(
|
77
|
+
[
|
78
|
+
[10, 12],
|
79
|
+
[10, 12],
|
80
|
+
[10, 12],
|
81
|
+
[5, 12],
|
82
|
+
[10, nil],
|
83
|
+
[nil, 10],
|
84
|
+
[10, nil],
|
85
|
+
[0, 1]
|
86
|
+
], @locations.to_array_index)
|
87
|
+
|
88
|
+
assert_equal(
|
89
|
+
[
|
90
|
+
[0, 0],
|
91
|
+
[2, 2],
|
92
|
+
], @loc_2.to_array_index)
|
93
|
+
|
94
|
+
assert_equal([[0,1]], @loc_3.to_array_index)
|
95
|
+
end
|
96
|
+
|
97
|
+
def test_to_array_index_class
|
98
|
+
assert_equal(Bio::RestrictionEnzyme::DoubleStranded::CutLocations, @locations.to_array_index.class)
|
99
|
+
assert_equal(Bio::RestrictionEnzyme::DoubleStranded::CutLocations, @loc_2.to_array_index.class)
|
100
|
+
end
|
101
|
+
|
102
|
+
end
|
103
|
+
|
104
|
+
end
|
data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb - Unit test for Bio::RestrictionEnzyme::SingleStrand::CutLocationsInEnzymeNotation
|
3
|
+
#
|
4
|
+
# Author:: Trevor Wennblom <mailto:trevor@corevx.com>
|
5
|
+
# Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
|
6
|
+
# License:: The Ruby License
|
7
|
+
#
|
8
|
+
# $Id: test_cut_locations_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
|
13
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
14
|
+
|
15
|
+
require 'test/unit'
|
16
|
+
require 'bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation'
|
17
|
+
|
18
|
+
module Bio #:nodoc:
|
19
|
+
|
20
|
+
class TestSingleStrandCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodoc:
|
21
|
+
|
22
|
+
def setup
|
23
|
+
@t = Bio::RestrictionEnzyme::SingleStrand::CutLocationsInEnzymeNotation
|
24
|
+
@obj_1 = @t.new([-2,1,3])
|
25
|
+
@obj_2 = @t.new(-2,1,3)
|
26
|
+
@obj_3 = @t.new(7,1,3)
|
27
|
+
|
28
|
+
@obj_4 = @t.new(-7,-8,-2,1,3)
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_max
|
32
|
+
assert_equal(3, @obj_1.max)
|
33
|
+
assert_equal(3, @obj_2.max)
|
34
|
+
assert_equal(7, @obj_3.max)
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_min
|
38
|
+
assert_equal(-2, @obj_1.min)
|
39
|
+
assert_equal(-2, @obj_2.min)
|
40
|
+
assert_equal(1, @obj_3.min)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_to_array_index
|
44
|
+
assert_equal([0,2,4], @obj_1.to_array_index)
|
45
|
+
assert_equal([0,2,4], @obj_2.to_array_index)
|
46
|
+
assert_equal([0,2,6], @obj_3.to_array_index)
|
47
|
+
|
48
|
+
assert_equal([0, 1, 6, 8, 10], @obj_4.to_array_index)
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_initialize_with_pattern
|
52
|
+
@obj_5 = @t.new('n^ng^arraxt^n')
|
53
|
+
@obj_6 = @t.new('g^arraxt^n')
|
54
|
+
@obj_7 = @t.new('nnn^nn^nga^rraxt^nn')
|
55
|
+
@obj_8 = @t.new('^g^arraxt^n')
|
56
|
+
|
57
|
+
assert_equal([-2,1,7], @obj_5)
|
58
|
+
assert_equal([0,2,8], @obj_5.to_array_index)
|
59
|
+
|
60
|
+
assert_equal([1,7], @obj_6)
|
61
|
+
assert_equal([0,6], @obj_6.to_array_index)
|
62
|
+
|
63
|
+
assert_equal([-4, -2, 2, 7], @obj_7)
|
64
|
+
assert_equal([0, 2, 5, 10], @obj_7.to_array_index)
|
65
|
+
|
66
|
+
assert_equal([-1,1,7], @obj_8)
|
67
|
+
assert_equal([0,1,7], @obj_8.to_array_index)
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_argument_error
|
71
|
+
assert_raise(ArgumentError) { @t.new([0,1,2]) }
|
72
|
+
assert_raise(ArgumentError) { @t.new(0,1,2,0) }
|
73
|
+
|
74
|
+
assert_raise(ArgumentError) { @t.new([nil,1,2]) }
|
75
|
+
assert_raise(ArgumentError) { @t.new(nil,1,2,nil) }
|
76
|
+
|
77
|
+
assert_raise(ArgumentError) { @t.new([1,1,2]) }
|
78
|
+
assert_raise(ArgumentError) { @t.new(1,1,2,2) }
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|