bio 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (340) hide show
  1. data/bin/bioruby +14 -122
  2. data/bin/br_biofetch.rb +2 -2
  3. data/bin/br_bioflat.rb +2 -2
  4. data/bin/br_biogetseq.rb +2 -2
  5. data/bin/br_pmfetch.rb +3 -3
  6. data/doc/Changes-0.7.rd +77 -0
  7. data/doc/KEGG_API.rd +523 -232
  8. data/doc/KEGG_API.rd.ja +529 -207
  9. data/doc/Tutorial.rd +48 -11
  10. data/lib/bio.rb +59 -6
  11. data/lib/bio/alignment.rb +713 -103
  12. data/lib/bio/appl/bl2seq/report.rb +2 -18
  13. data/lib/bio/appl/blast.rb +108 -91
  14. data/lib/bio/appl/blast/format0.rb +33 -18
  15. data/lib/bio/appl/blast/format8.rb +6 -20
  16. data/lib/bio/appl/blast/report.rb +293 -429
  17. data/lib/bio/appl/blast/rexml.rb +8 -22
  18. data/lib/bio/appl/blast/wublast.rb +21 -12
  19. data/lib/bio/appl/blast/xmlparser.rb +180 -183
  20. data/lib/bio/appl/blat/report.rb +127 -30
  21. data/lib/bio/appl/clustalw.rb +87 -59
  22. data/lib/bio/appl/clustalw/report.rb +20 -22
  23. data/lib/bio/appl/emboss.rb +113 -20
  24. data/lib/bio/appl/fasta.rb +173 -198
  25. data/lib/bio/appl/fasta/format10.rb +244 -347
  26. data/lib/bio/appl/gcg/msf.rb +212 -0
  27. data/lib/bio/appl/gcg/seq.rb +195 -0
  28. data/lib/bio/appl/genscan/report.rb +5 -23
  29. data/lib/bio/appl/hmmer.rb +8 -45
  30. data/lib/bio/appl/hmmer/report.rb +2 -20
  31. data/lib/bio/appl/iprscan/report.rb +374 -0
  32. data/lib/bio/appl/mafft.rb +87 -50
  33. data/lib/bio/appl/mafft/report.rb +151 -44
  34. data/lib/bio/appl/muscle.rb +52 -0
  35. data/lib/bio/appl/phylip/alignment.rb +129 -0
  36. data/lib/bio/appl/phylip/distance_matrix.rb +96 -0
  37. data/lib/bio/appl/probcons.rb +41 -0
  38. data/lib/bio/appl/psort.rb +89 -96
  39. data/lib/bio/appl/psort/report.rb +6 -22
  40. data/lib/bio/appl/pts1.rb +263 -0
  41. data/lib/bio/appl/sim4.rb +26 -36
  42. data/lib/bio/appl/sim4/report.rb +2 -18
  43. data/lib/bio/appl/sosui/report.rb +5 -20
  44. data/lib/bio/appl/spidey/report.rb +2 -2
  45. data/lib/bio/appl/targetp/report.rb +4 -20
  46. data/lib/bio/appl/tcoffee.rb +55 -0
  47. data/lib/bio/appl/tmhmm/report.rb +4 -20
  48. data/lib/bio/command.rb +235 -64
  49. data/lib/bio/data/aa.rb +21 -26
  50. data/lib/bio/data/codontable.rb +2 -20
  51. data/lib/bio/data/na.rb +19 -4
  52. data/lib/bio/db.rb +27 -12
  53. data/lib/bio/db/aaindex.rb +2 -20
  54. data/lib/bio/db/embl/common.rb +4 -21
  55. data/lib/bio/db/embl/embl.rb +33 -85
  56. data/lib/bio/db/embl/sptr.rb +612 -302
  57. data/lib/bio/db/embl/swissprot.rb +10 -29
  58. data/lib/bio/db/embl/trembl.rb +10 -29
  59. data/lib/bio/db/embl/uniprot.rb +10 -29
  60. data/lib/bio/db/fantom.rb +15 -20
  61. data/lib/bio/db/fasta.rb +3 -3
  62. data/lib/bio/db/genbank/common.rb +37 -46
  63. data/lib/bio/db/genbank/ddbj.rb +6 -18
  64. data/lib/bio/db/genbank/genbank.rb +47 -186
  65. data/lib/bio/db/genbank/genpept.rb +4 -17
  66. data/lib/bio/db/genbank/refseq.rb +4 -17
  67. data/lib/bio/db/gff.rb +103 -35
  68. data/lib/bio/db/go.rb +4 -20
  69. data/lib/bio/db/kegg/brite.rb +26 -36
  70. data/lib/bio/db/kegg/compound.rb +81 -85
  71. data/lib/bio/db/kegg/drug.rb +98 -0
  72. data/lib/bio/db/kegg/enzyme.rb +133 -110
  73. data/lib/bio/db/kegg/expression.rb +2 -20
  74. data/lib/bio/db/kegg/genes.rb +208 -238
  75. data/lib/bio/db/kegg/genome.rb +164 -285
  76. data/lib/bio/db/kegg/glycan.rb +114 -157
  77. data/lib/bio/db/kegg/keggtab.rb +242 -303
  78. data/lib/bio/db/kegg/kgml.rb +117 -160
  79. data/lib/bio/db/kegg/orthology.rb +112 -0
  80. data/lib/bio/db/kegg/reaction.rb +54 -69
  81. data/lib/bio/db/kegg/taxonomy.rb +331 -0
  82. data/lib/bio/db/lasergene.rb +209 -0
  83. data/lib/bio/db/litdb.rb +3 -27
  84. data/lib/bio/db/medline.rb +228 -249
  85. data/lib/bio/db/nbrf.rb +3 -3
  86. data/lib/bio/db/newick.rb +510 -0
  87. data/lib/bio/db/nexus.rb +1854 -0
  88. data/lib/bio/db/pdb.rb +5 -17
  89. data/lib/bio/db/pdb/atom.rb +2 -18
  90. data/lib/bio/db/pdb/chain.rb +2 -18
  91. data/lib/bio/db/pdb/chemicalcomponent.rb +2 -18
  92. data/lib/bio/db/pdb/model.rb +2 -18
  93. data/lib/bio/db/pdb/pdb.rb +73 -34
  94. data/lib/bio/db/pdb/residue.rb +4 -20
  95. data/lib/bio/db/pdb/utils.rb +2 -18
  96. data/lib/bio/db/prosite.rb +403 -422
  97. data/lib/bio/db/rebase.rb +84 -40
  98. data/lib/bio/db/soft.rb +404 -0
  99. data/lib/bio/db/transfac.rb +5 -17
  100. data/lib/bio/feature.rb +106 -52
  101. data/lib/bio/io/das.rb +32 -42
  102. data/lib/bio/io/dbget.rb +2 -20
  103. data/lib/bio/io/ddbjxml.rb +77 -138
  104. data/lib/bio/io/ebisoap.rb +158 -0
  105. data/lib/bio/io/ensembl.rb +229 -0
  106. data/lib/bio/io/fastacmd.rb +89 -82
  107. data/lib/bio/io/fetch.rb +163 -96
  108. data/lib/bio/io/flatfile.rb +170 -73
  109. data/lib/bio/io/flatfile/bdb.rb +3 -16
  110. data/lib/bio/io/flatfile/index.rb +2 -2
  111. data/lib/bio/io/flatfile/indexer.rb +3 -2
  112. data/lib/bio/io/higet.rb +12 -31
  113. data/lib/bio/io/keggapi.rb +210 -269
  114. data/lib/bio/io/ncbisoap.rb +155 -0
  115. data/lib/bio/io/pubmed.rb +169 -147
  116. data/lib/bio/io/registry.rb +4 -20
  117. data/lib/bio/io/soapwsdl.rb +43 -38
  118. data/lib/bio/io/sql.rb +242 -305
  119. data/lib/bio/location.rb +407 -285
  120. data/lib/bio/map.rb +410 -0
  121. data/lib/bio/pathway.rb +558 -695
  122. data/lib/bio/reference.rb +272 -75
  123. data/lib/bio/sequence.rb +255 -13
  124. data/lib/bio/sequence/aa.rb +71 -10
  125. data/lib/bio/sequence/common.rb +187 -33
  126. data/lib/bio/sequence/compat.rb +59 -4
  127. data/lib/bio/sequence/format.rb +54 -7
  128. data/lib/bio/sequence/generic.rb +3 -3
  129. data/lib/bio/sequence/na.rb +328 -26
  130. data/lib/bio/shell.rb +11 -4
  131. data/lib/bio/shell/core.rb +221 -160
  132. data/lib/bio/shell/demo.rb +18 -15
  133. data/lib/bio/shell/interface.rb +14 -12
  134. data/lib/bio/shell/irb.rb +95 -0
  135. data/lib/bio/shell/object.rb +45 -26
  136. data/lib/bio/shell/plugin/blast.rb +42 -0
  137. data/lib/bio/shell/plugin/codon.rb +22 -14
  138. data/lib/bio/shell/plugin/das.rb +58 -0
  139. data/lib/bio/shell/plugin/emboss.rb +2 -2
  140. data/lib/bio/shell/plugin/entry.rb +22 -11
  141. data/lib/bio/shell/plugin/flatfile.rb +2 -2
  142. data/lib/bio/shell/plugin/keggapi.rb +13 -6
  143. data/lib/bio/shell/plugin/midi.rb +4 -4
  144. data/lib/bio/shell/plugin/obda.rb +2 -2
  145. data/lib/bio/shell/plugin/psort.rb +56 -0
  146. data/lib/bio/shell/plugin/seq.rb +35 -8
  147. data/lib/bio/shell/plugin/soap.rb +87 -0
  148. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb +29 -0
  149. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_classes.rhtml +4 -0
  150. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_log.rhtml +27 -0
  151. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_methods.rhtml +11 -0
  152. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_modules.rhtml +4 -0
  153. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_variables.rhtml +7 -0
  154. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-bg.gif +0 -0
  155. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-console.png +0 -0
  156. data/lib/bio/shell/rails/{public/images/icon.png → vendor/plugins/generators/bioruby/templates/bioruby-gem.png} +0 -0
  157. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-link.gif +0 -0
  158. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.css +369 -0
  159. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.rhtml +47 -0
  160. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_controller.rb +144 -0
  161. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_helper.rb +47 -0
  162. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/commands.rhtml +8 -0
  163. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/history.rhtml +10 -0
  164. data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/index.rhtml +22 -0
  165. data/lib/bio/shell/script.rb +25 -0
  166. data/lib/bio/shell/setup.rb +109 -0
  167. data/lib/bio/shell/web.rb +70 -58
  168. data/lib/bio/tree.rb +850 -0
  169. data/lib/bio/util/color_scheme.rb +84 -107
  170. data/lib/bio/util/color_scheme/buried.rb +5 -24
  171. data/lib/bio/util/color_scheme/helix.rb +5 -24
  172. data/lib/bio/util/color_scheme/hydropathy.rb +5 -24
  173. data/lib/bio/util/color_scheme/nucleotide.rb +5 -24
  174. data/lib/bio/util/color_scheme/strand.rb +5 -24
  175. data/lib/bio/util/color_scheme/taylor.rb +5 -24
  176. data/lib/bio/util/color_scheme/turn.rb +5 -24
  177. data/lib/bio/util/color_scheme/zappo.rb +5 -24
  178. data/lib/bio/util/contingency_table.rb +70 -43
  179. data/lib/bio/util/restriction_enzyme.rb +228 -0
  180. data/lib/bio/util/restriction_enzyme/analysis.rb +249 -0
  181. data/lib/bio/util/restriction_enzyme/analysis_basic.rb +217 -0
  182. data/lib/bio/util/restriction_enzyme/cut_symbol.rb +107 -0
  183. data/lib/bio/util/restriction_enzyme/double_stranded.rb +321 -0
  184. data/lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb +130 -0
  185. data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb +103 -0
  186. data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb +38 -0
  187. data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb +76 -0
  188. data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb +107 -0
  189. data/lib/bio/util/restriction_enzyme/enzymes.yaml +7061 -0
  190. data/lib/bio/util/restriction_enzyme/range/cut_range.rb +24 -0
  191. data/lib/bio/util/restriction_enzyme/range/cut_ranges.rb +47 -0
  192. data/lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb +67 -0
  193. data/lib/bio/util/restriction_enzyme/range/sequence_range.rb +257 -0
  194. data/lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb +242 -0
  195. data/lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb +51 -0
  196. data/lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb +41 -0
  197. data/lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb +77 -0
  198. data/lib/bio/util/restriction_enzyme/single_strand.rb +199 -0
  199. data/lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb +135 -0
  200. data/lib/bio/util/restriction_enzyme/single_strand_complement.rb +23 -0
  201. data/lib/bio/util/restriction_enzyme/string_formatting.rb +111 -0
  202. data/lib/bio/util/sirna.rb +4 -22
  203. data/sample/color_scheme_na.rb +4 -12
  204. data/sample/enzymes.rb +78 -0
  205. data/sample/goslim.rb +5 -13
  206. data/sample/psortplot_html.rb +4 -12
  207. data/test/data/blast/2.2.15.blastp.m7 +876 -0
  208. data/test/data/embl/AB090716.embl.rel89 +63 -0
  209. data/test/data/fasta/example1.txt +75 -0
  210. data/test/data/fasta/example2.txt +21 -0
  211. data/test/data/iprscan/merged.raw +32 -0
  212. data/test/data/iprscan/merged.txt +74 -0
  213. data/test/data/soft/GDS100_partial.soft +92 -0
  214. data/test/data/soft/GSE3457_family_partial.soft +874 -0
  215. data/test/functional/bio/io/test_ensembl.rb +103 -0
  216. data/test/functional/bio/io/test_soapwsdl.rb +5 -17
  217. data/test/unit/bio/appl/bl2seq/test_report.rb +2 -2
  218. data/test/unit/bio/appl/blast/test_report.rb +3 -16
  219. data/test/unit/bio/appl/blast/test_xmlparser.rb +4 -16
  220. data/test/unit/bio/appl/genscan/test_report.rb +3 -16
  221. data/test/unit/bio/appl/hmmer/test_report.rb +3 -16
  222. data/test/unit/bio/appl/iprscan/test_report.rb +338 -0
  223. data/test/unit/bio/appl/mafft/test_report.rb +63 -0
  224. data/test/unit/bio/appl/sosui/test_report.rb +3 -16
  225. data/test/unit/bio/appl/targetp/test_report.rb +3 -16
  226. data/test/unit/bio/appl/test_blast.rb +3 -16
  227. data/test/unit/bio/appl/test_fasta.rb +4 -16
  228. data/test/unit/bio/appl/test_pts1.rb +140 -0
  229. data/test/unit/bio/appl/tmhmm/test_report.rb +3 -16
  230. data/test/unit/bio/data/test_aa.rb +4 -17
  231. data/test/unit/bio/data/test_codontable.rb +3 -16
  232. data/test/unit/bio/data/test_na.rb +3 -3
  233. data/test/unit/bio/db/embl/test_common.rb +3 -16
  234. data/test/unit/bio/db/embl/test_embl.rb +3 -16
  235. data/test/unit/bio/db/embl/test_embl_rel89.rb +219 -0
  236. data/test/unit/bio/db/embl/test_sptr.rb +1548 -41
  237. data/test/unit/bio/db/embl/test_uniprot.rb +3 -16
  238. data/test/unit/bio/db/kegg/test_genes.rb +3 -16
  239. data/test/unit/bio/db/pdb/test_pdb.rb +7 -24
  240. data/test/unit/bio/db/test_aaindex.rb +2 -2
  241. data/test/unit/bio/db/test_fasta.rb +3 -16
  242. data/test/unit/bio/db/test_gff.rb +3 -16
  243. data/test/unit/bio/db/test_lasergene.rb +95 -0
  244. data/test/unit/bio/db/test_newick.rb +56 -0
  245. data/test/unit/bio/db/test_nexus.rb +360 -0
  246. data/test/unit/bio/db/test_prosite.rb +5 -18
  247. data/test/unit/bio/db/test_rebase.rb +11 -25
  248. data/test/unit/bio/db/test_soft.rb +138 -0
  249. data/test/unit/bio/io/test_ddbjxml.rb +5 -17
  250. data/test/unit/bio/io/test_ensembl.rb +109 -0
  251. data/test/unit/bio/io/test_fastacmd.rb +3 -16
  252. data/test/unit/bio/io/test_flatfile.rb +237 -0
  253. data/test/unit/bio/io/test_soapwsdl.rb +4 -17
  254. data/test/unit/bio/sequence/test_aa.rb +3 -3
  255. data/test/unit/bio/sequence/test_common.rb +3 -16
  256. data/test/unit/bio/sequence/test_compat.rb +3 -16
  257. data/test/unit/bio/sequence/test_na.rb +29 -3
  258. data/test/unit/bio/shell/plugin/test_seq.rb +8 -8
  259. data/test/unit/bio/test_alignment.rb +16 -27
  260. data/test/unit/bio/test_command.rb +242 -25
  261. data/test/unit/bio/test_db.rb +3 -16
  262. data/test/unit/bio/test_feature.rb +4 -16
  263. data/test/unit/bio/test_location.rb +4 -16
  264. data/test/unit/bio/test_map.rb +230 -0
  265. data/test/unit/bio/test_pathway.rb +4 -16
  266. data/test/unit/bio/test_reference.rb +2 -2
  267. data/test/unit/bio/test_sequence.rb +7 -19
  268. data/test/unit/bio/test_shell.rb +3 -16
  269. data/test/unit/bio/test_tree.rb +593 -0
  270. data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +299 -0
  271. data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +103 -0
  272. data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +240 -0
  273. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +100 -0
  274. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +75 -0
  275. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +73 -0
  276. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +53 -0
  277. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +104 -0
  278. data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +83 -0
  279. data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +246 -0
  280. data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +44 -0
  281. data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +115 -0
  282. data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +147 -0
  283. data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +147 -0
  284. data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +60 -0
  285. data/test/unit/bio/util/test_color_scheme.rb +6 -18
  286. data/test/unit/bio/util/test_contingency_table.rb +6 -18
  287. data/test/unit/bio/util/test_restriction_enzyme.rb +42 -0
  288. data/test/unit/bio/util/test_sirna.rb +3 -16
  289. metadata +228 -169
  290. data/doc/BioRuby.rd.ja +0 -225
  291. data/doc/Design.rd.ja +0 -341
  292. data/doc/TODO.rd.ja +0 -138
  293. data/lib/bio/appl/fasta/format6.rb +0 -37
  294. data/lib/bio/db/kegg/cell.rb +0 -88
  295. data/lib/bio/db/kegg/ko.rb +0 -178
  296. data/lib/bio/shell/rails/Rakefile +0 -10
  297. data/lib/bio/shell/rails/app/controllers/application.rb +0 -4
  298. data/lib/bio/shell/rails/app/controllers/shell_controller.rb +0 -94
  299. data/lib/bio/shell/rails/app/helpers/application_helper.rb +0 -3
  300. data/lib/bio/shell/rails/app/models/shell_connection.rb +0 -30
  301. data/lib/bio/shell/rails/app/views/layouts/shell.rhtml +0 -37
  302. data/lib/bio/shell/rails/app/views/shell/history.rhtml +0 -5
  303. data/lib/bio/shell/rails/app/views/shell/index.rhtml +0 -2
  304. data/lib/bio/shell/rails/app/views/shell/show.rhtml +0 -13
  305. data/lib/bio/shell/rails/config/boot.rb +0 -19
  306. data/lib/bio/shell/rails/config/database.yml +0 -85
  307. data/lib/bio/shell/rails/config/environment.rb +0 -53
  308. data/lib/bio/shell/rails/config/environments/development.rb +0 -19
  309. data/lib/bio/shell/rails/config/environments/production.rb +0 -19
  310. data/lib/bio/shell/rails/config/environments/test.rb +0 -19
  311. data/lib/bio/shell/rails/config/routes.rb +0 -19
  312. data/lib/bio/shell/rails/doc/README_FOR_APP +0 -2
  313. data/lib/bio/shell/rails/public/404.html +0 -8
  314. data/lib/bio/shell/rails/public/500.html +0 -8
  315. data/lib/bio/shell/rails/public/dispatch.cgi +0 -10
  316. data/lib/bio/shell/rails/public/dispatch.fcgi +0 -24
  317. data/lib/bio/shell/rails/public/dispatch.rb +0 -10
  318. data/lib/bio/shell/rails/public/favicon.ico +0 -0
  319. data/lib/bio/shell/rails/public/images/rails.png +0 -0
  320. data/lib/bio/shell/rails/public/index.html +0 -277
  321. data/lib/bio/shell/rails/public/javascripts/controls.js +0 -750
  322. data/lib/bio/shell/rails/public/javascripts/dragdrop.js +0 -584
  323. data/lib/bio/shell/rails/public/javascripts/effects.js +0 -854
  324. data/lib/bio/shell/rails/public/javascripts/prototype.js +0 -1785
  325. data/lib/bio/shell/rails/public/robots.txt +0 -1
  326. data/lib/bio/shell/rails/public/stylesheets/main.css +0 -187
  327. data/lib/bio/shell/rails/script/about +0 -3
  328. data/lib/bio/shell/rails/script/breakpointer +0 -3
  329. data/lib/bio/shell/rails/script/console +0 -3
  330. data/lib/bio/shell/rails/script/destroy +0 -3
  331. data/lib/bio/shell/rails/script/generate +0 -3
  332. data/lib/bio/shell/rails/script/performance/benchmarker +0 -3
  333. data/lib/bio/shell/rails/script/performance/profiler +0 -3
  334. data/lib/bio/shell/rails/script/plugin +0 -3
  335. data/lib/bio/shell/rails/script/process/reaper +0 -3
  336. data/lib/bio/shell/rails/script/process/spawner +0 -3
  337. data/lib/bio/shell/rails/script/process/spinner +0 -3
  338. data/lib/bio/shell/rails/script/runner +0 -3
  339. data/lib/bio/shell/rails/script/server +0 -42
  340. data/lib/bio/shell/rails/test/test_helper.rb +0 -28
@@ -0,0 +1,147 @@
1
+ #
2
+ # test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb - Unit test for Bio::RestrictionEnzyme::SingleStrandComplement
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_single_strand_complement.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__), ['..'] * 5, 'lib')).cleanpath.to_s
13
+ $:.unshift(libpath) unless $:.include?(libpath)
14
+
15
+ require 'test/unit'
16
+ require 'bio/util/restriction_enzyme/single_strand_complement'
17
+
18
+ module Bio #:nodoc:
19
+
20
+ class TestSingleStrandComplement < Test::Unit::TestCase #:nodoc:
21
+
22
+ def setup
23
+ @t = Bio::RestrictionEnzyme::SingleStrandComplement
24
+ @cl = Bio::RestrictionEnzyme::SingleStrand::CutLocationsInEnzymeNotation
25
+ @s = Bio::Sequence::NA
26
+
27
+ @obj_1 = @t.new(@s.new('gata'), @cl.new(-2,1,3))
28
+ @obj_2 = @t.new('gata', -2, 1, 3)
29
+ @obj_3 = @t.new('garraxt', [-2, 1, 7])
30
+ @obj_4 = @t.new('nnnnnnngarraxtnn', [-2, 1, 7])
31
+
32
+ @obj_5 = @t.new('ga^rr^axt')
33
+ @obj_6 = @t.new('^ga^rr^axt')
34
+ @obj_7 = @t.new('n^ngar^raxtnn^n')
35
+ end
36
+
37
+ def test_pattern_palindromic?
38
+ assert_equal(true, @t.new('atgcat', 1).palindromic?)
39
+ assert_equal(false, @t.new('atgcgta', 1).palindromic?)
40
+
41
+ assert_equal(false, @obj_1.palindromic?)
42
+ assert_equal(false, @obj_2.palindromic?)
43
+ assert_equal(false, @obj_3.palindromic?)
44
+ assert_equal(false, @obj_4.palindromic?)
45
+ end
46
+
47
+ def test_stripped
48
+ assert_equal('gata', @obj_1.stripped)
49
+ assert_equal('gata', @obj_2.stripped)
50
+ assert_equal('garraxt', @obj_3.stripped)
51
+ assert_equal('garraxt', @obj_4.stripped)
52
+ end
53
+
54
+ def test_pattern
55
+ assert_equal('nngata', @obj_1.pattern)
56
+ assert_equal('nngata', @obj_2.pattern)
57
+ assert_equal('nngarraxtn', @obj_3.pattern)
58
+ assert_equal('nngarraxtn', @obj_4.pattern)
59
+
60
+ assert_equal('nngata', @obj_1)
61
+ assert_equal('nngata', @obj_2)
62
+ assert_equal('nngarraxtn', @obj_3)
63
+ assert_equal('nngarraxtn', @obj_4)
64
+ end
65
+
66
+ def test_with_cut_symbols
67
+ assert_equal('n^ng^at^a', @obj_1.with_cut_symbols)
68
+ assert_equal('n^ng^at^a', @obj_2.with_cut_symbols)
69
+ assert_equal('n^ng^arraxt^n', @obj_3.with_cut_symbols)
70
+ assert_equal('n^ng^arraxt^n', @obj_4.with_cut_symbols)
71
+ end
72
+
73
+ def test_with_spaces
74
+ assert_equal('n^n g^a t^a', @obj_1.with_spaces)
75
+ assert_equal('n^n g^a t^a', @obj_2.with_spaces)
76
+ assert_equal('n^n g^a r r a x t^n', @obj_3.with_spaces)
77
+ assert_equal('n^n g^a r r a x t^n', @obj_4.with_spaces)
78
+ end
79
+
80
+ def test_cut_locations_in_enzyme_notation
81
+ assert_equal([-2,1,3], @obj_1.cut_locations_in_enzyme_notation)
82
+ assert_equal([-2,1,3], @obj_2.cut_locations_in_enzyme_notation)
83
+ assert_equal([-2,1,7], @obj_3.cut_locations_in_enzyme_notation)
84
+ assert_equal([-2,1,7], @obj_4.cut_locations_in_enzyme_notation)
85
+
86
+ assert_equal([2,4], @obj_5.cut_locations_in_enzyme_notation)
87
+ assert_equal([-1,2,4], @obj_6.cut_locations_in_enzyme_notation)
88
+ assert_equal([-2,3,9], @obj_7.cut_locations_in_enzyme_notation)
89
+ end
90
+
91
+ def test_cut_locations
92
+ assert_equal([0,2,4], @obj_1.cut_locations)
93
+ assert_equal([0,2,4], @obj_2.cut_locations)
94
+ assert_equal([0,2,8], @obj_3.cut_locations)
95
+ assert_equal([0,2,8], @obj_4.cut_locations)
96
+
97
+ assert_equal([1,3], @obj_5.cut_locations)
98
+ assert_equal([0,2,4], @obj_6.cut_locations)
99
+ assert_equal([0,4,10], @obj_7.cut_locations)
100
+ end
101
+
102
+ def test_orientation
103
+ assert_equal([3,5], @obj_1.orientation)
104
+ assert_equal([3,5], @obj_2.orientation)
105
+ assert_equal([3,5], @obj_3.orientation)
106
+ assert_equal([3,5], @obj_4.orientation)
107
+ end
108
+
109
+ def test_creation_with_no_cuts
110
+ @obj_8 = @t.new('garraxt')
111
+ assert_equal([3,5], @obj_8.orientation)
112
+ assert_equal([], @obj_8.cut_locations)
113
+ assert_equal([], @obj_8.cut_locations_in_enzyme_notation)
114
+ assert_equal('garraxt', @obj_8.pattern)
115
+ end
116
+
117
+ # NOTE
118
+ def test_to_re
119
+ end
120
+
121
+ def test_argument_error
122
+ assert_raise(ArgumentError) { @t.new('a', [0,1,2]) }
123
+ assert_raise(ArgumentError) { @t.new('a', 0,1,2,0) }
124
+
125
+ assert_raise(ArgumentError) { @t.new('a', [nil,1,2]) }
126
+ assert_raise(ArgumentError) { @t.new('a', nil,1,2,nil) }
127
+
128
+ assert_raise(ArgumentError) { @t.new('a', [1,1,2]) }
129
+ assert_raise(ArgumentError) { @t.new('a', 1,1,2,2) }
130
+
131
+ assert_raise(ArgumentError) { @t.new(1, [1,2,3]) }
132
+ assert_raise(ArgumentError) { @t.new('gaat^aca', [1,2,3]) }
133
+ assert_raise(ArgumentError) { @t.new('gaat^^aca') }
134
+ assert_raise(ArgumentError) { @t.new('z', [1,2,3]) }
135
+
136
+ assert_raise(ArgumentError) { @t.new('g', [0,1,2]) }
137
+ assert_raise(ArgumentError) { @t.new('g', 0,1,2,0) }
138
+ assert_raise(ArgumentError) { @t.new('g', [0,1,1,2]) }
139
+ assert_raise(ArgumentError) { @t.new('g', 0,1,1,2,2) }
140
+ assert_raise(ArgumentError) { @t.new(1,2,3) }
141
+ assert_raise(ArgumentError) { @t.new(1,2,'g') }
142
+ end
143
+
144
+
145
+ end
146
+
147
+ end
@@ -0,0 +1,60 @@
1
+ #
2
+ # test/unit/bio/util/restriction_enzyme/test_string_formatting.rb - Unit test for Bio::RestrictionEnzyme::StringFormatting
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_string_formatting.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__), ['..'] * 5, 'lib')).cleanpath.to_s
13
+ $:.unshift(libpath) unless $:.include?(libpath)
14
+
15
+ require 'test/unit'
16
+ require 'bio/util/restriction_enzyme/string_formatting'
17
+
18
+ module Bio #:nodoc:
19
+
20
+ class TestStringFormatting < Test::Unit::TestCase #:nodoc:
21
+
22
+ include Bio::RestrictionEnzyme::StringFormatting
23
+
24
+ def setup
25
+ @t = String
26
+ @obj_1 = @t.new('gata')
27
+ @obj_2 = @t.new('garraxt')
28
+ @obj_3 = @t.new('gArraXT')
29
+ @obj_4 = @t.new('nnnnnnngarraxtnn')
30
+ end
31
+
32
+ def test_strip_padding
33
+ assert_equal('gata', strip_padding(@obj_1))
34
+ assert_equal('garraxt', strip_padding(@obj_2))
35
+ assert_equal('gArraXT', strip_padding(@obj_3))
36
+ assert_equal('garraxt', strip_padding(@obj_4))
37
+ end
38
+
39
+ def test_left_padding
40
+ assert_equal('', left_padding(@obj_1))
41
+ assert_equal('', left_padding(@obj_2))
42
+ assert_equal('', left_padding(@obj_3))
43
+ assert_equal('nnnnnnn', left_padding(@obj_4))
44
+ end
45
+
46
+ def test_right_padding
47
+ assert_equal('', right_padding(@obj_1))
48
+ assert_equal('', right_padding(@obj_2))
49
+ assert_equal('', right_padding(@obj_3))
50
+ assert_equal('nn', right_padding(@obj_4))
51
+ end
52
+
53
+ def test_add_spacing
54
+ assert_equal('n^n g^a t^a', add_spacing('n^ng^at^a') )
55
+ assert_equal('n^n g^a r r a x t^n', add_spacing('n^ng^arraxt^n') )
56
+ end
57
+
58
+ end
59
+
60
+ end
@@ -1,23 +1,11 @@
1
1
  #
2
2
  # test/unit/bio/util/test_color_scheme.rb - Unit test for Bio::ColorScheme
3
3
  #
4
- # Copyright (C) 2005 Trevor Wennblom <trevor@corevx.com>
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
5
7
  #
6
- # This library is free software; you can redistribute it and/or
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_color_scheme.rb,v 1.1 2005/10/23 08:40:41 k Exp $
8
+ # $Id: test_color_scheme.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
21
9
  #
22
10
 
23
11
  require 'pathname'
@@ -27,8 +15,8 @@ $:.unshift(libpath) unless $:.include?(libpath)
27
15
  require 'test/unit'
28
16
  require 'bio/util/color_scheme'
29
17
 
30
- module Bio
31
- class TestColorScheme < Test::Unit::TestCase
18
+ module Bio #:nodoc:
19
+ class TestColorScheme < Test::Unit::TestCase #:nodoc:
32
20
 
33
21
  def test_buried
34
22
  s = Bio::ColorScheme::Buried
@@ -1,23 +1,11 @@
1
1
  #
2
2
  # test/unit/bio/util/test_contingency_table.rb - Unit test for Bio::ContingencyTable
3
3
  #
4
- # Copyright (C) 2005 Trevor Wennblom <trevor@corevx.com>
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
5
7
  #
6
- # This library is free software; you can redistribute it and/or
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_contingency_table.rb,v 1.2 2005/11/23 11:55:17 nakao Exp $
8
+ # $Id: test_contingency_table.rb,v 1.4 2007/04/05 23:35:44 trevor Exp $
21
9
  #
22
10
 
23
11
  require 'pathname'
@@ -27,8 +15,8 @@ $:.unshift(libpath) unless $:.include?(libpath)
27
15
  require 'test/unit'
28
16
  require 'bio/util/contingency_table'
29
17
 
30
- module Bio
31
- class TestContingencyTable < Test::Unit::TestCase
18
+ module Bio #:nodoc:
19
+ class TestContingencyTable < Test::Unit::TestCase #:nodoc:
32
20
 
33
21
  def lite_example(sequences, max_length, characters)
34
22
 
@@ -0,0 +1,42 @@
1
+ #
2
+ # test/unit/bio/util/restriction_enzyme.rb - Unit test for Bio::RestrictionEnzyme
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_restriction_enzyme.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__), ['..'] * 4, 'lib')).cleanpath.to_s
13
+ $:.unshift(libpath) unless $:.include?(libpath)
14
+
15
+ require 'test/unit'
16
+ require 'bio/util/restriction_enzyme.rb'
17
+
18
+ module Bio #:nodoc:
19
+
20
+ class TestRestrictionEnzyme < Test::Unit::TestCase #:nodoc:
21
+
22
+ def setup
23
+ @t = Bio::RestrictionEnzyme
24
+ end
25
+
26
+ def test_rebase
27
+ assert_equal(@t.rebase.respond_to?(:enzymes), true)
28
+ assert_not_nil @t.rebase['AarI']
29
+ assert_nil @t.rebase['blah']
30
+ end
31
+
32
+ def test_enzyme_name
33
+ assert_equal(@t.enzyme_name?('AarI'), true)
34
+ assert_equal(@t.enzyme_name?('atgc'), false)
35
+ assert_equal(@t.enzyme_name?('aari'), true)
36
+ assert_equal(@t.enzyme_name?('EcoRI'), true)
37
+ assert_equal(@t.enzyme_name?('EcoooRI'), false)
38
+ end
39
+
40
+ end
41
+
42
+ end
@@ -1,23 +1,10 @@
1
1
  #
2
2
  # test/unit/bio/util/test_sirna.rb - Unit test for Bio::SiRNA.
3
3
  #
4
- # Copyright (C) 2005 Mitsuteru C. Nakap <n@bioruby.org>
4
+ # Copyright:: Copyright (C) 2005 Mitsuteru C. Nakap <n@bioruby.org>
5
+ # License:: The Ruby License
5
6
  #
6
- # This library is free software; you can redistribute it and/or
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_sirna.rb,v 1.2 2005/12/27 17:27:38 k Exp $
7
+ # $Id: test_sirna.rb,v 1.4 2007/04/05 23:35:44 trevor Exp $
21
8
  #
22
9
 
23
10
  require 'pathname'
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: bio
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2006-02-27 00:00:00 +09:00
6
+ version: 1.1.0
7
+ date: 2007-07-19 00:00:00 +09:00
8
8
  summary: Bioinformatics library
9
9
  require_paths:
10
10
  - lib
@@ -25,6 +25,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
25
25
  platform: ruby
26
26
  signing_key:
27
27
  cert_chain:
28
+ post_install_message:
28
29
  authors:
29
30
  - BioRuby project
30
31
  files:
@@ -33,109 +34,97 @@ files:
33
34
  - bin/br_bioflat.rb
34
35
  - bin/br_biogetseq.rb
35
36
  - bin/br_pmfetch.rb
36
- - doc/BioRuby.rd.ja
37
37
  - doc/Changes-0.7.rd
38
- - doc/Design.rd.ja
39
38
  - doc/KEGG_API.rd
40
39
  - doc/KEGG_API.rd.ja
41
- - doc/TODO.rd.ja
42
40
  - doc/Tutorial.rd
43
41
  - doc/Tutorial.rd.ja
44
42
  - etc/bioinformatics
45
43
  - etc/bioinformatics/seqdatabase.ini
46
44
  - lib/bio
47
- - lib/bio.rb
48
45
  - lib/bio/alignment.rb
49
46
  - lib/bio/appl
50
- - lib/bio/command.rb
51
- - lib/bio/data
52
- - lib/bio/db
53
- - lib/bio/db.rb
54
- - lib/bio/feature.rb
55
- - lib/bio/io
56
- - lib/bio/location.rb
57
- - lib/bio/pathway.rb
58
- - lib/bio/reference.rb
59
- - lib/bio/sequence
60
- - lib/bio/sequence.rb
61
- - lib/bio/shell
62
- - lib/bio/shell.rb
63
- - lib/bio/util
64
47
  - lib/bio/appl/bl2seq
48
+ - lib/bio/appl/bl2seq/report.rb
65
49
  - lib/bio/appl/blast
50
+ - lib/bio/appl/blast/format0.rb
51
+ - lib/bio/appl/blast/format8.rb
52
+ - lib/bio/appl/blast/report.rb
53
+ - lib/bio/appl/blast/rexml.rb
54
+ - lib/bio/appl/blast/wublast.rb
55
+ - lib/bio/appl/blast/xmlparser.rb
66
56
  - lib/bio/appl/blast.rb
67
57
  - lib/bio/appl/blat
58
+ - lib/bio/appl/blat/report.rb
68
59
  - lib/bio/appl/clustalw
60
+ - lib/bio/appl/clustalw/report.rb
69
61
  - lib/bio/appl/clustalw.rb
70
62
  - lib/bio/appl/emboss.rb
71
63
  - lib/bio/appl/fasta
64
+ - lib/bio/appl/fasta/format10.rb
72
65
  - lib/bio/appl/fasta.rb
66
+ - lib/bio/appl/gcg
67
+ - lib/bio/appl/gcg/msf.rb
68
+ - lib/bio/appl/gcg/seq.rb
73
69
  - lib/bio/appl/genscan
70
+ - lib/bio/appl/genscan/report.rb
74
71
  - lib/bio/appl/hmmer
72
+ - lib/bio/appl/hmmer/report.rb
75
73
  - lib/bio/appl/hmmer.rb
74
+ - lib/bio/appl/iprscan
75
+ - lib/bio/appl/iprscan/report.rb
76
76
  - lib/bio/appl/mafft
77
+ - lib/bio/appl/mafft/report.rb
77
78
  - lib/bio/appl/mafft.rb
79
+ - lib/bio/appl/muscle.rb
80
+ - lib/bio/appl/phylip
81
+ - lib/bio/appl/phylip/alignment.rb
82
+ - lib/bio/appl/phylip/distance_matrix.rb
83
+ - lib/bio/appl/probcons.rb
78
84
  - lib/bio/appl/psort
85
+ - lib/bio/appl/psort/report.rb
79
86
  - lib/bio/appl/psort.rb
87
+ - lib/bio/appl/pts1.rb
80
88
  - lib/bio/appl/sim4
89
+ - lib/bio/appl/sim4/report.rb
81
90
  - lib/bio/appl/sim4.rb
82
91
  - lib/bio/appl/sosui
83
- - lib/bio/appl/spidey
84
- - lib/bio/appl/targetp
85
- - lib/bio/appl/tmhmm
86
- - lib/bio/appl/bl2seq/report.rb
87
- - lib/bio/appl/blast/format0.rb
88
- - lib/bio/appl/blast/format8.rb
89
- - lib/bio/appl/blast/report.rb
90
- - lib/bio/appl/blast/rexml.rb
91
- - lib/bio/appl/blast/wublast.rb
92
- - lib/bio/appl/blast/xmlparser.rb
93
- - lib/bio/appl/blat/report.rb
94
- - lib/bio/appl/clustalw/report.rb
95
- - lib/bio/appl/fasta/format10.rb
96
- - lib/bio/appl/fasta/format6.rb
97
- - lib/bio/appl/genscan/report.rb
98
- - lib/bio/appl/hmmer/report.rb
99
- - lib/bio/appl/mafft/report.rb
100
- - lib/bio/appl/psort/report.rb
101
- - lib/bio/appl/sim4/report.rb
102
92
  - lib/bio/appl/sosui/report.rb
93
+ - lib/bio/appl/spidey
103
94
  - lib/bio/appl/spidey/report.rb
95
+ - lib/bio/appl/targetp
104
96
  - lib/bio/appl/targetp/report.rb
97
+ - lib/bio/appl/tcoffee.rb
98
+ - lib/bio/appl/tmhmm
105
99
  - lib/bio/appl/tmhmm/report.rb
100
+ - lib/bio/command.rb
101
+ - lib/bio/data
106
102
  - lib/bio/data/aa.rb
107
103
  - lib/bio/data/codontable.rb
108
104
  - lib/bio/data/na.rb
105
+ - lib/bio/db
109
106
  - lib/bio/db/aaindex.rb
110
107
  - lib/bio/db/embl
111
- - lib/bio/db/fantom.rb
112
- - lib/bio/db/fasta.rb
113
- - lib/bio/db/genbank
114
- - lib/bio/db/gff.rb
115
- - lib/bio/db/go.rb
116
- - lib/bio/db/kegg
117
- - lib/bio/db/litdb.rb
118
- - lib/bio/db/medline.rb
119
- - lib/bio/db/nbrf.rb
120
- - lib/bio/db/pdb
121
- - lib/bio/db/pdb.rb
122
- - lib/bio/db/prosite.rb
123
- - lib/bio/db/rebase.rb
124
- - lib/bio/db/transfac.rb
125
108
  - lib/bio/db/embl/common.rb
126
109
  - lib/bio/db/embl/embl.rb
127
110
  - lib/bio/db/embl/sptr.rb
128
111
  - lib/bio/db/embl/swissprot.rb
129
112
  - lib/bio/db/embl/trembl.rb
130
113
  - lib/bio/db/embl/uniprot.rb
114
+ - lib/bio/db/fantom.rb
115
+ - lib/bio/db/fasta.rb
116
+ - lib/bio/db/genbank
131
117
  - lib/bio/db/genbank/common.rb
132
118
  - lib/bio/db/genbank/ddbj.rb
133
119
  - lib/bio/db/genbank/genbank.rb
134
120
  - lib/bio/db/genbank/genpept.rb
135
121
  - lib/bio/db/genbank/refseq.rb
122
+ - lib/bio/db/gff.rb
123
+ - lib/bio/db/go.rb
124
+ - lib/bio/db/kegg
136
125
  - lib/bio/db/kegg/brite.rb
137
- - lib/bio/db/kegg/cell.rb
138
126
  - lib/bio/db/kegg/compound.rb
127
+ - lib/bio/db/kegg/drug.rb
139
128
  - lib/bio/db/kegg/enzyme.rb
140
129
  - lib/bio/db/kegg/expression.rb
141
130
  - lib/bio/db/kegg/genes.rb
@@ -143,8 +132,16 @@ files:
143
132
  - lib/bio/db/kegg/glycan.rb
144
133
  - lib/bio/db/kegg/keggtab.rb
145
134
  - lib/bio/db/kegg/kgml.rb
146
- - lib/bio/db/kegg/ko.rb
135
+ - lib/bio/db/kegg/orthology.rb
147
136
  - lib/bio/db/kegg/reaction.rb
137
+ - lib/bio/db/kegg/taxonomy.rb
138
+ - lib/bio/db/lasergene.rb
139
+ - lib/bio/db/litdb.rb
140
+ - lib/bio/db/medline.rb
141
+ - lib/bio/db/nbrf.rb
142
+ - lib/bio/db/newick.rb
143
+ - lib/bio/db/nexus.rb
144
+ - lib/bio/db/pdb
148
145
  - lib/bio/db/pdb/atom.rb
149
146
  - lib/bio/db/pdb/chain.rb
150
147
  - lib/bio/db/pdb/chemicalcomponent.rb
@@ -152,111 +149,94 @@ files:
152
149
  - lib/bio/db/pdb/pdb.rb
153
150
  - lib/bio/db/pdb/residue.rb
154
151
  - lib/bio/db/pdb/utils.rb
152
+ - lib/bio/db/pdb.rb
153
+ - lib/bio/db/prosite.rb
154
+ - lib/bio/db/rebase.rb
155
+ - lib/bio/db/soft.rb
156
+ - lib/bio/db/transfac.rb
157
+ - lib/bio/db.rb
158
+ - lib/bio/feature.rb
159
+ - lib/bio/io
155
160
  - lib/bio/io/das.rb
156
161
  - lib/bio/io/dbget.rb
157
162
  - lib/bio/io/ddbjxml.rb
163
+ - lib/bio/io/ebisoap.rb
164
+ - lib/bio/io/ensembl.rb
158
165
  - lib/bio/io/fastacmd.rb
159
166
  - lib/bio/io/fetch.rb
160
167
  - lib/bio/io/flatfile
168
+ - lib/bio/io/flatfile/bdb.rb
169
+ - lib/bio/io/flatfile/index.rb
170
+ - lib/bio/io/flatfile/indexer.rb
161
171
  - lib/bio/io/flatfile.rb
162
172
  - lib/bio/io/higet.rb
163
173
  - lib/bio/io/keggapi.rb
174
+ - lib/bio/io/ncbisoap.rb
164
175
  - lib/bio/io/pubmed.rb
165
176
  - lib/bio/io/registry.rb
166
177
  - lib/bio/io/soapwsdl.rb
167
178
  - lib/bio/io/sql.rb
168
- - lib/bio/io/flatfile/bdb.rb
169
- - lib/bio/io/flatfile/index.rb
170
- - lib/bio/io/flatfile/indexer.rb
179
+ - lib/bio/location.rb
180
+ - lib/bio/map.rb
181
+ - lib/bio/pathway.rb
182
+ - lib/bio/reference.rb
183
+ - lib/bio/sequence
171
184
  - lib/bio/sequence/aa.rb
172
185
  - lib/bio/sequence/common.rb
173
186
  - lib/bio/sequence/compat.rb
174
187
  - lib/bio/sequence/format.rb
175
188
  - lib/bio/sequence/generic.rb
176
189
  - lib/bio/sequence/na.rb
190
+ - lib/bio/sequence.rb
191
+ - lib/bio/shell
177
192
  - lib/bio/shell/core.rb
178
193
  - lib/bio/shell/demo.rb
179
194
  - lib/bio/shell/interface.rb
195
+ - lib/bio/shell/irb.rb
180
196
  - lib/bio/shell/object.rb
181
197
  - lib/bio/shell/plugin
182
- - lib/bio/shell/rails
183
- - lib/bio/shell/web.rb
198
+ - lib/bio/shell/plugin/blast.rb
184
199
  - lib/bio/shell/plugin/codon.rb
200
+ - lib/bio/shell/plugin/das.rb
185
201
  - lib/bio/shell/plugin/emboss.rb
186
202
  - lib/bio/shell/plugin/entry.rb
187
203
  - lib/bio/shell/plugin/flatfile.rb
188
204
  - lib/bio/shell/plugin/keggapi.rb
189
205
  - lib/bio/shell/plugin/midi.rb
190
206
  - lib/bio/shell/plugin/obda.rb
207
+ - lib/bio/shell/plugin/psort.rb
191
208
  - lib/bio/shell/plugin/seq.rb
192
- - lib/bio/shell/rails/app
193
- - lib/bio/shell/rails/config
194
- - lib/bio/shell/rails/doc
195
- - lib/bio/shell/rails/public
196
- - lib/bio/shell/rails/Rakefile
197
- - lib/bio/shell/rails/script
198
- - lib/bio/shell/rails/test
199
- - lib/bio/shell/rails/app/controllers
200
- - lib/bio/shell/rails/app/helpers
201
- - lib/bio/shell/rails/app/models
202
- - lib/bio/shell/rails/app/views
203
- - lib/bio/shell/rails/app/controllers/application.rb
204
- - lib/bio/shell/rails/app/controllers/shell_controller.rb
205
- - lib/bio/shell/rails/app/helpers/application_helper.rb
206
- - lib/bio/shell/rails/app/models/shell_connection.rb
207
- - lib/bio/shell/rails/app/views/layouts
208
- - lib/bio/shell/rails/app/views/shell
209
- - lib/bio/shell/rails/app/views/layouts/shell.rhtml
210
- - lib/bio/shell/rails/app/views/shell/history.rhtml
211
- - lib/bio/shell/rails/app/views/shell/index.rhtml
212
- - lib/bio/shell/rails/app/views/shell/show.rhtml
213
- - lib/bio/shell/rails/config/boot.rb
214
- - lib/bio/shell/rails/config/database.yml
215
- - lib/bio/shell/rails/config/environment.rb
216
- - lib/bio/shell/rails/config/environments
217
- - lib/bio/shell/rails/config/routes.rb
218
- - lib/bio/shell/rails/config/environments/development.rb
219
- - lib/bio/shell/rails/config/environments/production.rb
220
- - lib/bio/shell/rails/config/environments/test.rb
221
- - lib/bio/shell/rails/doc/README_FOR_APP
222
- - lib/bio/shell/rails/public/404.html
223
- - lib/bio/shell/rails/public/500.html
224
- - lib/bio/shell/rails/public/dispatch.cgi
225
- - lib/bio/shell/rails/public/dispatch.fcgi
226
- - lib/bio/shell/rails/public/dispatch.rb
227
- - lib/bio/shell/rails/public/favicon.ico
228
- - lib/bio/shell/rails/public/images
229
- - lib/bio/shell/rails/public/index.html
230
- - lib/bio/shell/rails/public/javascripts
231
- - lib/bio/shell/rails/public/robots.txt
232
- - lib/bio/shell/rails/public/stylesheets
233
- - lib/bio/shell/rails/public/images/icon.png
234
- - lib/bio/shell/rails/public/images/rails.png
235
- - lib/bio/shell/rails/public/javascripts/controls.js
236
- - lib/bio/shell/rails/public/javascripts/dragdrop.js
237
- - lib/bio/shell/rails/public/javascripts/effects.js
238
- - lib/bio/shell/rails/public/javascripts/prototype.js
239
- - lib/bio/shell/rails/public/stylesheets/main.css
240
- - lib/bio/shell/rails/script/about
241
- - lib/bio/shell/rails/script/breakpointer
242
- - lib/bio/shell/rails/script/console
243
- - lib/bio/shell/rails/script/destroy
244
- - lib/bio/shell/rails/script/generate
245
- - lib/bio/shell/rails/script/performance
246
- - lib/bio/shell/rails/script/plugin
247
- - lib/bio/shell/rails/script/process
248
- - lib/bio/shell/rails/script/runner
249
- - lib/bio/shell/rails/script/server
250
- - lib/bio/shell/rails/script/performance/benchmarker
251
- - lib/bio/shell/rails/script/performance/profiler
252
- - lib/bio/shell/rails/script/process/reaper
253
- - lib/bio/shell/rails/script/process/spawner
254
- - lib/bio/shell/rails/script/process/spinner
255
- - lib/bio/shell/rails/test/test_helper.rb
209
+ - lib/bio/shell/plugin/soap.rb
210
+ - lib/bio/shell/rails
211
+ - lib/bio/shell/rails/vendor
212
+ - lib/bio/shell/rails/vendor/plugins
213
+ - lib/bio/shell/rails/vendor/plugins/generators
214
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby
215
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb
216
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates
217
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_classes.rhtml
218
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_log.rhtml
219
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_methods.rhtml
220
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_modules.rhtml
221
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_variables.rhtml
222
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-bg.gif
223
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-console.png
224
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-gem.png
225
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-link.gif
226
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.css
227
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.rhtml
228
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_controller.rb
229
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_helper.rb
230
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/commands.rhtml
231
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/history.rhtml
232
+ - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/index.rhtml
233
+ - lib/bio/shell/script.rb
234
+ - lib/bio/shell/setup.rb
235
+ - lib/bio/shell/web.rb
236
+ - lib/bio/shell.rb
237
+ - lib/bio/tree.rb
238
+ - lib/bio/util
256
239
  - lib/bio/util/color_scheme
257
- - lib/bio/util/color_scheme.rb
258
- - lib/bio/util/contingency_table.rb
259
- - lib/bio/util/sirna.rb
260
240
  - lib/bio/util/color_scheme/buried.rb
261
241
  - lib/bio/util/color_scheme/helix.rb
262
242
  - lib/bio/util/color_scheme/hydropathy.rb
@@ -265,10 +245,43 @@ files:
265
245
  - lib/bio/util/color_scheme/taylor.rb
266
246
  - lib/bio/util/color_scheme/turn.rb
267
247
  - lib/bio/util/color_scheme/zappo.rb
248
+ - lib/bio/util/color_scheme.rb
249
+ - lib/bio/util/contingency_table.rb
250
+ - lib/bio/util/restriction_enzyme
251
+ - lib/bio/util/restriction_enzyme/analysis.rb
252
+ - lib/bio/util/restriction_enzyme/analysis_basic.rb
253
+ - lib/bio/util/restriction_enzyme/cut_symbol.rb
254
+ - lib/bio/util/restriction_enzyme/double_stranded
255
+ - lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb
256
+ - lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb
257
+ - lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb
258
+ - lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb
259
+ - lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb
260
+ - lib/bio/util/restriction_enzyme/double_stranded.rb
261
+ - lib/bio/util/restriction_enzyme/enzymes.yaml
262
+ - lib/bio/util/restriction_enzyme/range
263
+ - lib/bio/util/restriction_enzyme/range/cut_range.rb
264
+ - lib/bio/util/restriction_enzyme/range/cut_ranges.rb
265
+ - lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb
266
+ - lib/bio/util/restriction_enzyme/range/sequence_range
267
+ - lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb
268
+ - lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb
269
+ - lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb
270
+ - lib/bio/util/restriction_enzyme/range/sequence_range.rb
271
+ - lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb
272
+ - lib/bio/util/restriction_enzyme/single_strand
273
+ - lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb
274
+ - lib/bio/util/restriction_enzyme/single_strand.rb
275
+ - lib/bio/util/restriction_enzyme/single_strand_complement.rb
276
+ - lib/bio/util/restriction_enzyme/string_formatting.rb
277
+ - lib/bio/util/restriction_enzyme.rb
278
+ - lib/bio/util/sirna.rb
279
+ - lib/bio.rb
268
280
  - sample/any2fasta.rb
269
281
  - sample/biofetch.rb
270
282
  - sample/color_scheme_na.rb
271
283
  - sample/dbget
284
+ - sample/enzymes.rb
272
285
  - sample/fasta2tab.rb
273
286
  - sample/fsplit.rb
274
287
  - sample/gb2fasta.rb
@@ -289,102 +302,148 @@ files:
289
302
  - sample/tfastx2tab.rb
290
303
  - sample/vs-genes.rb
291
304
  - test/data
292
- - test/functional
293
- - test/runner.rb
294
- - test/unit
295
305
  - test/data/aaindex
296
- - test/data/bl2seq
297
- - test/data/blast
298
- - test/data/embl
299
- - test/data/genscan
300
- - test/data/HMMER
301
- - test/data/prosite
302
- - test/data/refseq
303
- - test/data/SOSUI
304
- - test/data/TMHMM
305
- - test/data/uniprot
306
306
  - test/data/aaindex/DAYM780301
307
307
  - test/data/aaindex/PRAM900102
308
+ - test/data/bl2seq
308
309
  - test/data/bl2seq/cd8a_cd8b_blastp.bl2seq
309
310
  - test/data/bl2seq/cd8a_p53_e-5blastp.bl2seq
311
+ - test/data/blast
312
+ - test/data/blast/2.2.15.blastp.m7
310
313
  - test/data/blast/b0002.faa
311
314
  - test/data/blast/b0002.faa.m0
312
315
  - test/data/blast/b0002.faa.m7
313
316
  - test/data/blast/b0002.faa.m8
317
+ - test/data/embl
314
318
  - test/data/embl/AB090716.embl
319
+ - test/data/embl/AB090716.embl.rel89
320
+ - test/data/fasta
321
+ - test/data/fasta/example1.txt
322
+ - test/data/fasta/example2.txt
323
+ - test/data/genscan
315
324
  - test/data/genscan/sample.report
325
+ - test/data/HMMER
316
326
  - test/data/HMMER/hmmpfam.out
317
327
  - test/data/HMMER/hmmsearch.out
328
+ - test/data/iprscan
329
+ - test/data/iprscan/merged.raw
330
+ - test/data/iprscan/merged.txt
331
+ - test/data/prosite
318
332
  - test/data/prosite/prosite.dat
333
+ - test/data/refseq
319
334
  - test/data/refseq/nm_126355.entret
335
+ - test/data/soft
336
+ - test/data/soft/GDS100_partial.soft
337
+ - test/data/soft/GSE3457_family_partial.soft
338
+ - test/data/SOSUI
320
339
  - test/data/SOSUI/sample.report
340
+ - test/data/TMHMM
321
341
  - test/data/TMHMM/sample.report
342
+ - test/data/uniprot
322
343
  - test/data/uniprot/p53_human.uniprot
344
+ - test/functional
323
345
  - test/functional/bio
324
346
  - test/functional/bio/io
347
+ - test/functional/bio/io/test_ensembl.rb
325
348
  - test/functional/bio/io/test_soapwsdl.rb
349
+ - test/runner.rb
350
+ - test/unit
326
351
  - test/unit/bio
327
352
  - test/unit/bio/appl
328
- - test/unit/bio/data
329
- - test/unit/bio/db
330
- - test/unit/bio/io
331
- - test/unit/bio/sequence
332
- - test/unit/bio/shell
333
- - test/unit/bio/test_alignment.rb
334
- - test/unit/bio/test_command.rb
335
- - test/unit/bio/test_db.rb
336
- - test/unit/bio/test_feature.rb
337
- - test/unit/bio/test_location.rb
338
- - test/unit/bio/test_pathway.rb
339
- - test/unit/bio/test_reference.rb
340
- - test/unit/bio/test_sequence.rb
341
- - test/unit/bio/test_shell.rb
342
- - test/unit/bio/util
343
353
  - test/unit/bio/appl/bl2seq
354
+ - test/unit/bio/appl/bl2seq/test_report.rb
344
355
  - test/unit/bio/appl/blast
356
+ - test/unit/bio/appl/blast/test_report.rb
357
+ - test/unit/bio/appl/blast/test_xmlparser.rb
345
358
  - test/unit/bio/appl/genscan
359
+ - test/unit/bio/appl/genscan/test_report.rb
346
360
  - test/unit/bio/appl/hmmer
361
+ - test/unit/bio/appl/hmmer/test_report.rb
362
+ - test/unit/bio/appl/iprscan
363
+ - test/unit/bio/appl/iprscan/test_report.rb
364
+ - test/unit/bio/appl/mafft
365
+ - test/unit/bio/appl/mafft/test_report.rb
347
366
  - test/unit/bio/appl/sosui
367
+ - test/unit/bio/appl/sosui/test_report.rb
348
368
  - test/unit/bio/appl/targetp
369
+ - test/unit/bio/appl/targetp/test_report.rb
349
370
  - test/unit/bio/appl/test_blast.rb
350
371
  - test/unit/bio/appl/test_fasta.rb
372
+ - test/unit/bio/appl/test_pts1.rb
351
373
  - test/unit/bio/appl/tmhmm
352
- - test/unit/bio/appl/bl2seq/test_report.rb
353
- - test/unit/bio/appl/blast/test_report.rb
354
- - test/unit/bio/appl/blast/test_xmlparser.rb
355
- - test/unit/bio/appl/genscan/test_report.rb
356
- - test/unit/bio/appl/hmmer/test_report.rb
357
- - test/unit/bio/appl/sosui/test_report.rb
358
- - test/unit/bio/appl/targetp/test_report.rb
359
374
  - test/unit/bio/appl/tmhmm/test_report.rb
375
+ - test/unit/bio/data
360
376
  - test/unit/bio/data/test_aa.rb
361
377
  - test/unit/bio/data/test_codontable.rb
362
378
  - test/unit/bio/data/test_na.rb
379
+ - test/unit/bio/db
363
380
  - test/unit/bio/db/embl
381
+ - test/unit/bio/db/embl/test_common.rb
382
+ - test/unit/bio/db/embl/test_embl.rb
383
+ - test/unit/bio/db/embl/test_embl_rel89.rb
384
+ - test/unit/bio/db/embl/test_sptr.rb
385
+ - test/unit/bio/db/embl/test_uniprot.rb
364
386
  - test/unit/bio/db/kegg
387
+ - test/unit/bio/db/kegg/test_genes.rb
365
388
  - test/unit/bio/db/pdb
389
+ - test/unit/bio/db/pdb/test_pdb.rb
366
390
  - test/unit/bio/db/test_aaindex.rb
367
391
  - test/unit/bio/db/test_fasta.rb
368
392
  - test/unit/bio/db/test_gff.rb
393
+ - test/unit/bio/db/test_lasergene.rb
394
+ - test/unit/bio/db/test_newick.rb
395
+ - test/unit/bio/db/test_nexus.rb
369
396
  - test/unit/bio/db/test_prosite.rb
370
397
  - test/unit/bio/db/test_rebase.rb
371
- - test/unit/bio/db/embl/test_common.rb
372
- - test/unit/bio/db/embl/test_embl.rb
373
- - test/unit/bio/db/embl/test_sptr.rb
374
- - test/unit/bio/db/embl/test_uniprot.rb
375
- - test/unit/bio/db/kegg/test_genes.rb
376
- - test/unit/bio/db/pdb/test_pdb.rb
398
+ - test/unit/bio/db/test_soft.rb
399
+ - test/unit/bio/io
377
400
  - test/unit/bio/io/test_ddbjxml.rb
401
+ - test/unit/bio/io/test_ensembl.rb
378
402
  - test/unit/bio/io/test_fastacmd.rb
403
+ - test/unit/bio/io/test_flatfile.rb
379
404
  - test/unit/bio/io/test_soapwsdl.rb
405
+ - test/unit/bio/sequence
380
406
  - test/unit/bio/sequence/test_aa.rb
381
407
  - test/unit/bio/sequence/test_common.rb
382
408
  - test/unit/bio/sequence/test_compat.rb
383
409
  - test/unit/bio/sequence/test_na.rb
410
+ - test/unit/bio/shell
384
411
  - test/unit/bio/shell/plugin
385
412
  - test/unit/bio/shell/plugin/test_seq.rb
413
+ - test/unit/bio/test_alignment.rb
414
+ - test/unit/bio/test_command.rb
415
+ - test/unit/bio/test_db.rb
416
+ - test/unit/bio/test_feature.rb
417
+ - test/unit/bio/test_location.rb
418
+ - test/unit/bio/test_map.rb
419
+ - test/unit/bio/test_pathway.rb
420
+ - test/unit/bio/test_reference.rb
421
+ - test/unit/bio/test_sequence.rb
422
+ - test/unit/bio/test_shell.rb
423
+ - test/unit/bio/test_tree.rb
424
+ - test/unit/bio/util
425
+ - test/unit/bio/util/restriction_enzyme
426
+ - test/unit/bio/util/restriction_enzyme/analysis
427
+ - test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb
428
+ - test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb
429
+ - test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb
430
+ - test/unit/bio/util/restriction_enzyme/double_stranded
431
+ - test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb
432
+ - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb
433
+ - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb
434
+ - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb
435
+ - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb
436
+ - test/unit/bio/util/restriction_enzyme/single_strand
437
+ - test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb
438
+ - test/unit/bio/util/restriction_enzyme/test_analysis.rb
439
+ - test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb
440
+ - test/unit/bio/util/restriction_enzyme/test_double_stranded.rb
441
+ - test/unit/bio/util/restriction_enzyme/test_single_strand.rb
442
+ - test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb
443
+ - test/unit/bio/util/restriction_enzyme/test_string_formatting.rb
386
444
  - test/unit/bio/util/test_color_scheme.rb
387
445
  - test/unit/bio/util/test_contingency_table.rb
446
+ - test/unit/bio/util/test_restriction_enzyme.rb
388
447
  - test/unit/bio/util/test_sirna.rb
389
448
  test_files: []
390
449