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
@@ -1,138 +0,0 @@
1
- =begin
2
-
3
- $Id: TODO.rd.ja,v 1.16 2004/08/24 00:18:03 k Exp $
4
-
5
- Copyright (C) 2001, 2002 KATAYAMA Toshiaki <k@bioruby.org>
6
-
7
- = TODO
8
-
9
- * �����꡼��
10
-
11
- * �ɥ�����ȹ���
12
- * ���塼�ȥꥢ���ɵ�
13
- * �Ѹ첽
14
- * RDoc
15
-
16
- * ����ץ����� (*2tab �Ȥ�)
17
- * sample/README.rd[.ja]
18
-
19
- * cvs.open-bio.org �Υɥ�����ȹ���
20
-
21
- * Bio::SQL update, name space
22
-
23
- * Bio::Fetch
24
- * E-Utils
25
- * http://www.ncbi.nlm.nih.gov/entrez/query/static/eutils_help.html
26
-
27
-
28
- * Bio::Location location coordinate system (style)
29
-
30
- * GenBank, EMBL, SPTR, BioSQL �����硢�ե����ޥå�����Ѵ�
31
- * genbank/ @moltype
32
- * bio/db/seqentry.rb �� bio/seqentry.rb ������˥���ƥ� SeqEntry ����
33
- * InternalSeq �Ȥ��Ǥ⡩
34
- * lib/bio/db/genbank/, embl/ ��ե��������
35
- * Bio::SQL::Sequence ��ޤ᤿������¤
36
- * genpept, refseq(NP_)
37
- * Bio::Reference ���饹 �� EMBL �ˤ�?
38
- * test GenBank >350k
39
-
40
- * Blast, Fasta, Hmmer
41
- * blast, hmmer �Υ�ݡ��� -> Bio::FlatFile ����⥢������
42
- * bio/appl/fasta/report.rb, bio/appl/hmmer/report.rb ����ƥʳ��Ф�
43
- * lib/bio/appl/blast/xmlparser.rb " problem
44
- * lib/bio/appl/megablast.rb �ɲá�
45
- * Blast HSP tiling [bioperl-l 2002 8/13,4,5 ?]
46
- * Bio::Blast::Report::Hit#total_alignment_length
47
- * Bio::Blast::Report::Hit#total_identical_residues
48
- * Bio::Blast::Report::Hit#total_convserved_residues
49
-
50
- * MAFFT, T-Coffee, CLUSTALW �� ���饤�����
51
- * ���饤���ȥ��֥�������
52
- * class Bio::Alignment ?
53
- * class Bio::Alignment::Pairwise or class Bio::PairwiseAlignment ?
54
- * class Bio::Alignment::Multiple or class Bio::MultipleAlignment ?
55
- * ���饤���ȥӥ塼����ۤ���
56
- * Blast refactering
57
- * AlignFactory -> SearchIO��
58
- * Bio::Align �� Bio::Blast::Report �ʤɤΥ��饤���Ȥ�
59
- �ݻ�����ΤˤĤ���
60
- * ���饤����ȥ��饹�� CIGAR �ե����ޥå�
61
-
62
- * KGML�ѡ���
63
- * Pathway���饹��dijkstra -> Graph
64
- * Tree���饹
65
-
66
- * lib/bio/db/kegg/keggtab.rb �� lib/bio/data/keggorg.rb �����硩
67
-
68
- * Bio::LSID [bioperl-l 2002 7/15 seq namespace method]
69
-
70
- * �����ǥ��󥰥�������
71
- * camelCase �ػ�
72
- * = �κ����϶�����
73
- * tab �ʤ� 2 ���ڡ�������ǥ��
74
- * �ǽ�Ū�ˤ� RDoc �ղá� (Rimport ��Ȥ��Τ���������)
75
- * ���饹̾���⥸�塼��̾�� camelCase���������ʸ���� _ �Ƕ��ڤ�
76
- * Array, Hash�ʾ�˥ͥ��Ȥ����饯�饹��������
77
-
78
- === DB
79
-
80
- * ����ȥ����� (GO etc.) ������
81
-
82
- * ������շ� InterPro (incl. Pfam etc.) ������
83
-
84
- * SSDB
85
-
86
- * COG
87
-
88
- * PDB or PDBj �ѡ���
89
- * challange CASP? :)
90
-
91
- === ����
92
-
93
- * Ruby 1.8
94
- * stringIO
95
- * autoload
96
- * Array.new(num) { Hoge.new }
97
-
98
- * ext/
99
- * �������٤��᥽�å� C �� ?
100
-
101
- * ����֤�ѥ��벽���뤿��Υ��饹
102
-
103
- * �ƥ��ȴĶ�������
104
- * Test::Unit �Ȥ���
105
- * �����ե����롢�ͥåȥ����������ɤ����뤫
106
- * ���󥹥ȡ������ make check �ߤ����ʤ��Ȥ򤹤뤫
107
-
108
- * ����å�
109
- * ���ΤȤ������ޤ�Ȥ����̤Ϥʤ������Τ�ʤ����ɡ� GUI �Ȥ��ǡ�
110
-
111
- * �ɥ����������
112
- * Thai
113
- * Korea
114
- * Russia
115
- * French
116
-
117
- == OTHERS
118
-
119
- * midi
120
-
121
- * q--p
122
- * RSS
123
- * tDiary
124
-
125
- * gb.bioruby.org �� GFF, DAS �б�
126
- * �ݥ������������ץ�ʥ��ޥ�ɥ饤��/CGI��
127
- * Ming��
128
-
129
- * R, SVM/RVM, ����� ��
130
-
131
- * Ruby/Cocoa, Ruby/Gtk �ˤ�� GUI �ʥե����ȥ꡼
132
- * gsequence
133
- * biograph
134
- * GO �� xml �� GtkTree �� ����­��̡�
135
-
136
- * ��
137
-
138
- =end
@@ -1,37 +0,0 @@
1
- #
2
- # bio/appl/fasta/format6.rb - FASTA output (-m 6) parser
3
- #
4
- # Copyright (C) 2002 KATAYAMA Toshiaki <k@bioruby.org>
5
- #
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: format6.rb,v 1.2 2005/09/08 01:22:09 k Exp $
21
- #
22
-
23
- module Bio
24
- class Fasta
25
-
26
- class Report
27
-
28
- # will be ported from sample/{fasta2tab,ssearch2tab,tfastx2tab}.rb
29
-
30
- def initialize
31
- raise NotImplementedError
32
- end
33
- end
34
-
35
- end
36
- end
37
-
@@ -1,88 +0,0 @@
1
- #
2
- # bio/db/kegg/cell.rb - KEGG/CELL database class
3
- #
4
- # Copyright (C) 2001 KAWASHIMA Shuichi <s@bioruby.org>
5
- #
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: cell.rb,v 1.7 2005/09/08 01:22:11 k Exp $
21
- #
22
-
23
- require "bio/db"
24
-
25
- module Bio
26
-
27
- class KEGG
28
-
29
- class CELL < KEGGDB
30
-
31
- DELIMITER = RS = "\n///\n"
32
- TAGSIZE = 12
33
-
34
- def initialize(entry)
35
- super(entry, TAGSIZE)
36
- end
37
-
38
- def entry_id
39
- field_fetch('ENTRY')
40
- end
41
-
42
- def definition
43
- field_fetch('DEFINITION')
44
- end
45
-
46
- def org
47
- field_fetch('ORGANISM')
48
- end
49
- alias organism org
50
-
51
- def mother
52
- field_fetch('MOTHER')
53
- end
54
-
55
- def daughter
56
- field_fetch('DAUGHTER').gsub(/ /, '').split(/,/)
57
- end
58
-
59
- def sister
60
- field_fetch('SISTER')
61
- end
62
-
63
- def fate
64
- field_fetch('CELL_FATE').gsub(/ /, '').split(/,/)
65
- end
66
-
67
- def contact
68
- field_fetch('CONTACT').gsub(/ /, '').split(/,/)
69
- end
70
-
71
- def expression
72
- field_fetch('EXPRESSION')
73
- end
74
-
75
- def fig
76
- field_fetch('FIGURE')
77
- end
78
-
79
- def ref
80
- field_fetch('REFERENCE')
81
- end
82
-
83
- end
84
-
85
- end
86
-
87
- end
88
-
@@ -1,178 +0,0 @@
1
- #
2
- # bio/db/kegg/ko.rb - KO (KEGG Orthology) database class
3
- #
4
- # Copyright (C) 2003 KATAYAMA Toshiaki <k@bioruby.org>
5
- # Copyright (C) 2003 Masumi Itoh <m@bioruby.org>
6
- #
7
- # This library is free software; you can redistribute it and/or
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: ko.rb,v 1.5 2005/09/08 01:22:11 k Exp $
22
- #
23
-
24
- require 'bio/db'
25
-
26
- module Bio
27
-
28
- class KEGG
29
-
30
- class KO < KEGGDB
31
-
32
- DELIMITER = RS = "\n///\n"
33
- TAGSIZE = 12
34
-
35
- def initialize(entry)
36
- super(entry, TAGSIZE)
37
- end
38
-
39
-
40
- def entry_id
41
- field_fetch('ENTRY')[/\S+/]
42
- end
43
-
44
- def name
45
- field_fetch('NAME')
46
- end
47
-
48
- def names
49
- name.split(', ')
50
- end
51
-
52
- def definition
53
- field_fetch('DEFINITION')
54
- end
55
-
56
- def keggclass
57
- field_fetch('CLASS')
58
- end
59
-
60
- def keggclasses
61
- keggclass.gsub(/ \[[^\]]+/, '').split(/\] ?/)
62
- end
63
-
64
- def pathways
65
- keggclass.scan(/\[PATH:(.*?)\]/).flatten
66
- end
67
-
68
- def dblinks
69
- unless @data['DBLINKS']
70
- hash = {}
71
- get('DBLINKS').scan(/(\S+):\s*(.*)\n/).each do |k, v|
72
- hash[k] = v.split(/\s+/)
73
- end
74
- @data['DBLINKS'] = hash
75
- end
76
- @data['DBLINKS'] # Hash of DB:ID in DBLINKS
77
- end
78
-
79
- def genes
80
- unless @data['GENES']
81
- hash = {}
82
- k = ''
83
- get('GENES').each_line do |line|
84
- line.chomp!
85
- line[0, @tagsize] = ''
86
- if line =~ /(\S+):/
87
- k = $1
88
- hash[k] = []
89
- end
90
- line[0, 5] = ''
91
- line.gsub(/\(\S+/, '').each(' ') do |u|
92
- hash[k] << u.strip
93
- end
94
- end
95
- @data['GENES'] = hash
96
- end
97
- @data['GENES'] # Hash of DB:ID in DBLINKS
98
- end
99
-
100
- end
101
-
102
- end
103
-
104
- end
105
-
106
-
107
-
108
- if __FILE__ == $0
109
-
110
- require 'bio/io/fetch'
111
-
112
- flat = Bio::Fetch.query('ko', 'K00001')
113
- entry = Bio::KEGG::KO.new(flat)
114
-
115
- p entry.entry_id
116
- p entry.name
117
- p entry.names
118
- p entry.definition
119
- p entry.keggclass
120
- p entry.keggclasses
121
- p entry.pathways
122
- p entry.dblinks
123
- p entry.genes
124
-
125
- end
126
-
127
-
128
- =begin
129
-
130
- = Bio::KEGG::KO
131
-
132
- KO (KEGG Orthology) entry parser.
133
-
134
- * ((<URL:http://www.genome.jp/dbget-bin/get_htext?KO>))
135
- * ((<URL:ftp://ftp.genome.jp/pub/kegg/tarfiles/ko>))
136
-
137
- --- Bio::KEGG::KO.new(entry)
138
-
139
- Reads a flat file format entry of the KO database.
140
-
141
- --- Bio::KEGG::KO#entry_id -> String
142
-
143
- Returns ID of the entry.
144
-
145
- --- Bio::KEGG::KO#name -> String
146
-
147
- Returns NAME field of the entry.
148
-
149
- --- Bio::KEGG::KO#names -> Array
150
-
151
- Returns an Array of names in NAME field.
152
-
153
- --- Bio::KEGG::KO#definition -> String
154
-
155
- Returns DEFINITION field of the entry.
156
-
157
- --- Bio::KEGG::KO#keggclass
158
-
159
- Returns CLASS field of the entry.
160
-
161
- --- Bio::KEGG::KO#keggclasses
162
-
163
- Returns an Array of biological classes in CLASS field.
164
-
165
- --- Bio::KEGG::KO#pathways
166
-
167
- Returns an Array of KEGG/PATHWAY ID in CLASS field.
168
-
169
- --- Bio::KEGG::KO#dblinks
170
-
171
- Returns a Hash of Array of the database name and entry IDs in DBLINKS field.
172
-
173
- --- Bio::KEGG::KO#genes
174
-
175
- Returns a Hash of Array of the organism ID and entry IDs in GENES field.
176
-
177
- =end
178
-
@@ -1,10 +0,0 @@
1
- # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/switchtower.rake, and they will automatically be available to Rake.
3
-
4
- require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
-
6
- require 'rake'
7
- require 'rake/testtask'
8
- require 'rake/rdoctask'
9
-
10
- require 'tasks/rails'