jandot-bio 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (335) hide show
  1. data/bin/bioruby +44 -0
  2. data/bin/br_biofetch.rb +47 -0
  3. data/bin/br_bioflat.rb +282 -0
  4. data/bin/br_biogetseq.rb +45 -0
  5. data/bin/br_pmfetch.rb +421 -0
  6. data/doc/Changes-0.7.rd +369 -0
  7. data/doc/KEGG_API.rd +1843 -0
  8. data/doc/KEGG_API.rd.ja +1834 -0
  9. data/doc/Tutorial.rd +1296 -0
  10. data/doc/Tutorial.rd.ja +2640 -0
  11. data/etc/bioinformatics/seqdatabase.ini +210 -0
  12. data/lib/bio.rb +279 -0
  13. data/lib/bio/alignment.rb +2518 -0
  14. data/lib/bio/appl/bl2seq/report.rb +334 -0
  15. data/lib/bio/appl/blast.rb +351 -0
  16. data/lib/bio/appl/blast/format0.rb +1438 -0
  17. data/lib/bio/appl/blast/format8.rb +83 -0
  18. data/lib/bio/appl/blast/report.rb +516 -0
  19. data/lib/bio/appl/blast/rexml.rb +135 -0
  20. data/lib/bio/appl/blast/rpsblast.rb +176 -0
  21. data/lib/bio/appl/blast/wublast.rb +550 -0
  22. data/lib/bio/appl/blast/xmlparser.rb +228 -0
  23. data/lib/bio/appl/blat/report.rb +489 -0
  24. data/lib/bio/appl/clustalw.rb +219 -0
  25. data/lib/bio/appl/clustalw/report.rb +152 -0
  26. data/lib/bio/appl/emboss.rb +203 -0
  27. data/lib/bio/appl/fasta.rb +237 -0
  28. data/lib/bio/appl/fasta/format10.rb +325 -0
  29. data/lib/bio/appl/gcg/msf.rb +212 -0
  30. data/lib/bio/appl/gcg/seq.rb +195 -0
  31. data/lib/bio/appl/genscan/report.rb +552 -0
  32. data/lib/bio/appl/hmmer.rb +126 -0
  33. data/lib/bio/appl/hmmer/report.rb +683 -0
  34. data/lib/bio/appl/iprscan/report.rb +374 -0
  35. data/lib/bio/appl/mafft.rb +259 -0
  36. data/lib/bio/appl/mafft/report.rb +226 -0
  37. data/lib/bio/appl/muscle.rb +52 -0
  38. data/lib/bio/appl/phylip/alignment.rb +129 -0
  39. data/lib/bio/appl/phylip/distance_matrix.rb +96 -0
  40. data/lib/bio/appl/probcons.rb +41 -0
  41. data/lib/bio/appl/psort.rb +548 -0
  42. data/lib/bio/appl/psort/report.rb +457 -0
  43. data/lib/bio/appl/pts1.rb +263 -0
  44. data/lib/bio/appl/sim4.rb +124 -0
  45. data/lib/bio/appl/sim4/report.rb +485 -0
  46. data/lib/bio/appl/sosui/report.rb +151 -0
  47. data/lib/bio/appl/spidey/report.rb +593 -0
  48. data/lib/bio/appl/targetp/report.rb +267 -0
  49. data/lib/bio/appl/tcoffee.rb +55 -0
  50. data/lib/bio/appl/tmhmm/report.rb +222 -0
  51. data/lib/bio/command.rb +337 -0
  52. data/lib/bio/data/aa.rb +349 -0
  53. data/lib/bio/data/codontable.rb +722 -0
  54. data/lib/bio/data/na.rb +223 -0
  55. data/lib/bio/db.rb +329 -0
  56. data/lib/bio/db/aaindex.rb +357 -0
  57. data/lib/bio/db/embl/common.rb +336 -0
  58. data/lib/bio/db/embl/embl.rb +402 -0
  59. data/lib/bio/db/embl/sptr.rb +1283 -0
  60. data/lib/bio/db/embl/swissprot.rb +42 -0
  61. data/lib/bio/db/embl/trembl.rb +41 -0
  62. data/lib/bio/db/embl/uniprot.rb +42 -0
  63. data/lib/bio/db/fantom.rb +599 -0
  64. data/lib/bio/db/fasta.rb +907 -0
  65. data/lib/bio/db/genbank/common.rb +290 -0
  66. data/lib/bio/db/genbank/ddbj.rb +22 -0
  67. data/lib/bio/db/genbank/genbank.rb +215 -0
  68. data/lib/bio/db/genbank/genpept.rb +60 -0
  69. data/lib/bio/db/genbank/refseq.rb +18 -0
  70. data/lib/bio/db/gff.rb +174 -0
  71. data/lib/bio/db/go.rb +481 -0
  72. data/lib/bio/db/kegg/brite.rb +41 -0
  73. data/lib/bio/db/kegg/compound.rb +131 -0
  74. data/lib/bio/db/kegg/drug.rb +98 -0
  75. data/lib/bio/db/kegg/enzyme.rb +148 -0
  76. data/lib/bio/db/kegg/expression.rb +155 -0
  77. data/lib/bio/db/kegg/genes.rb +263 -0
  78. data/lib/bio/db/kegg/genome.rb +241 -0
  79. data/lib/bio/db/kegg/glycan.rb +170 -0
  80. data/lib/bio/db/kegg/keggtab.rb +357 -0
  81. data/lib/bio/db/kegg/kgml.rb +256 -0
  82. data/lib/bio/db/kegg/orthology.rb +136 -0
  83. data/lib/bio/db/kegg/reaction.rb +82 -0
  84. data/lib/bio/db/kegg/taxonomy.rb +331 -0
  85. data/lib/bio/db/lasergene.rb +209 -0
  86. data/lib/bio/db/litdb.rb +107 -0
  87. data/lib/bio/db/medline.rb +323 -0
  88. data/lib/bio/db/nbrf.rb +191 -0
  89. data/lib/bio/db/newick.rb +658 -0
  90. data/lib/bio/db/nexus.rb +1854 -0
  91. data/lib/bio/db/pdb.rb +29 -0
  92. data/lib/bio/db/pdb/atom.rb +77 -0
  93. data/lib/bio/db/pdb/chain.rb +210 -0
  94. data/lib/bio/db/pdb/chemicalcomponent.rb +224 -0
  95. data/lib/bio/db/pdb/model.rb +148 -0
  96. data/lib/bio/db/pdb/pdb.rb +1911 -0
  97. data/lib/bio/db/pdb/residue.rb +176 -0
  98. data/lib/bio/db/pdb/utils.rb +399 -0
  99. data/lib/bio/db/prosite.rb +597 -0
  100. data/lib/bio/db/rebase.rb +457 -0
  101. data/lib/bio/db/soft.rb +404 -0
  102. data/lib/bio/db/transfac.rb +375 -0
  103. data/lib/bio/feature.rb +226 -0
  104. data/lib/bio/io/das.rb +461 -0
  105. data/lib/bio/io/dbget.rb +194 -0
  106. data/lib/bio/io/ddbjxml.rb +581 -0
  107. data/lib/bio/io/ebisoap.rb +158 -0
  108. data/lib/bio/io/ensembl.rb +229 -0
  109. data/lib/bio/io/fastacmd.rb +163 -0
  110. data/lib/bio/io/fetch.rb +181 -0
  111. data/lib/bio/io/flatfile.rb +1309 -0
  112. data/lib/bio/io/flatfile/bdb.rb +253 -0
  113. data/lib/bio/io/flatfile/index.rb +1371 -0
  114. data/lib/bio/io/flatfile/indexer.rb +787 -0
  115. data/lib/bio/io/higet.rb +73 -0
  116. data/lib/bio/io/hinv.rb +442 -0
  117. data/lib/bio/io/keggapi.rb +805 -0
  118. data/lib/bio/io/ncbirest.rb +256 -0
  119. data/lib/bio/io/ncbisoap.rb +155 -0
  120. data/lib/bio/io/pubmed.rb +307 -0
  121. data/lib/bio/io/registry.rb +292 -0
  122. data/lib/bio/io/soapwsdl.rb +119 -0
  123. data/lib/bio/io/sql.rb +365 -0
  124. data/lib/bio/location.rb +772 -0
  125. data/lib/bio/map.rb +410 -0
  126. data/lib/bio/pathway.rb +854 -0
  127. data/lib/bio/reference.rb +623 -0
  128. data/lib/bio/sequence.rb +475 -0
  129. data/lib/bio/sequence/aa.rb +125 -0
  130. data/lib/bio/sequence/common.rb +333 -0
  131. data/lib/bio/sequence/compat.rb +123 -0
  132. data/lib/bio/sequence/format.rb +181 -0
  133. data/lib/bio/sequence/generic.rb +24 -0
  134. data/lib/bio/sequence/na.rb +491 -0
  135. data/lib/bio/shell.rb +44 -0
  136. data/lib/bio/shell/core.rb +578 -0
  137. data/lib/bio/shell/demo.rb +146 -0
  138. data/lib/bio/shell/interface.rb +218 -0
  139. data/lib/bio/shell/irb.rb +95 -0
  140. data/lib/bio/shell/object.rb +71 -0
  141. data/lib/bio/shell/plugin/blast.rb +42 -0
  142. data/lib/bio/shell/plugin/codon.rb +218 -0
  143. data/lib/bio/shell/plugin/das.rb +58 -0
  144. data/lib/bio/shell/plugin/emboss.rb +23 -0
  145. data/lib/bio/shell/plugin/entry.rb +105 -0
  146. data/lib/bio/shell/plugin/flatfile.rb +101 -0
  147. data/lib/bio/shell/plugin/keggapi.rb +181 -0
  148. data/lib/bio/shell/plugin/midi.rb +430 -0
  149. data/lib/bio/shell/plugin/obda.rb +45 -0
  150. data/lib/bio/shell/plugin/psort.rb +56 -0
  151. data/lib/bio/shell/plugin/seq.rb +247 -0
  152. data/lib/bio/shell/plugin/soap.rb +87 -0
  153. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/bioruby_generator.rb +29 -0
  154. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_classes.rhtml +4 -0
  155. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_log.rhtml +27 -0
  156. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_methods.rhtml +11 -0
  157. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_modules.rhtml +4 -0
  158. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_variables.rhtml +7 -0
  159. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-bg.gif +0 -0
  160. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-gem.png +0 -0
  161. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-link.gif +0 -0
  162. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.css +368 -0
  163. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.rhtml +47 -0
  164. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_controller.rb +144 -0
  165. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_helper.rb +47 -0
  166. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/commands.rhtml +8 -0
  167. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/history.rhtml +10 -0
  168. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/index.rhtml +26 -0
  169. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/spinner.gif +0 -0
  170. data/lib/bio/shell/script.rb +25 -0
  171. data/lib/bio/shell/setup.rb +109 -0
  172. data/lib/bio/shell/web.rb +102 -0
  173. data/lib/bio/tree.rb +850 -0
  174. data/lib/bio/util/color_scheme.rb +191 -0
  175. data/lib/bio/util/color_scheme/buried.rb +59 -0
  176. data/lib/bio/util/color_scheme/helix.rb +59 -0
  177. data/lib/bio/util/color_scheme/hydropathy.rb +64 -0
  178. data/lib/bio/util/color_scheme/nucleotide.rb +31 -0
  179. data/lib/bio/util/color_scheme/strand.rb +59 -0
  180. data/lib/bio/util/color_scheme/taylor.rb +50 -0
  181. data/lib/bio/util/color_scheme/turn.rb +59 -0
  182. data/lib/bio/util/color_scheme/zappo.rb +50 -0
  183. data/lib/bio/util/contingency_table.rb +370 -0
  184. data/lib/bio/util/restriction_enzyme.rb +228 -0
  185. data/lib/bio/util/restriction_enzyme/analysis.rb +249 -0
  186. data/lib/bio/util/restriction_enzyme/analysis_basic.rb +217 -0
  187. data/lib/bio/util/restriction_enzyme/cut_symbol.rb +107 -0
  188. data/lib/bio/util/restriction_enzyme/double_stranded.rb +321 -0
  189. data/lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb +130 -0
  190. data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb +103 -0
  191. data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb +38 -0
  192. data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb +76 -0
  193. data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb +107 -0
  194. data/lib/bio/util/restriction_enzyme/enzymes.yaml +7061 -0
  195. data/lib/bio/util/restriction_enzyme/range/cut_range.rb +24 -0
  196. data/lib/bio/util/restriction_enzyme/range/cut_ranges.rb +47 -0
  197. data/lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb +67 -0
  198. data/lib/bio/util/restriction_enzyme/range/sequence_range.rb +257 -0
  199. data/lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb +242 -0
  200. data/lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb +51 -0
  201. data/lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb +41 -0
  202. data/lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb +77 -0
  203. data/lib/bio/util/restriction_enzyme/single_strand.rb +199 -0
  204. data/lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb +135 -0
  205. data/lib/bio/util/restriction_enzyme/single_strand_complement.rb +23 -0
  206. data/lib/bio/util/restriction_enzyme/string_formatting.rb +111 -0
  207. data/lib/bio/util/sirna.rb +288 -0
  208. data/sample/any2fasta.rb +59 -0
  209. data/sample/biofetch.rb +475 -0
  210. data/sample/color_scheme_na.rb +91 -0
  211. data/sample/dbget +37 -0
  212. data/sample/enzymes.rb +78 -0
  213. data/sample/fasta2tab.rb +99 -0
  214. data/sample/fastagrep.rb +72 -0
  215. data/sample/fastasort.rb +54 -0
  216. data/sample/fsplit.rb +51 -0
  217. data/sample/gb2fasta.rb +30 -0
  218. data/sample/gb2tab.rb +325 -0
  219. data/sample/gbtab2mysql.rb +161 -0
  220. data/sample/genes2nuc.rb +33 -0
  221. data/sample/genes2pep.rb +33 -0
  222. data/sample/genes2tab.rb +81 -0
  223. data/sample/genome2rb.rb +29 -0
  224. data/sample/genome2tab.rb +76 -0
  225. data/sample/goslim.rb +303 -0
  226. data/sample/gt2fasta.rb +47 -0
  227. data/sample/na2aa.rb +34 -0
  228. data/sample/pmfetch.rb +42 -0
  229. data/sample/pmsearch.rb +42 -0
  230. data/sample/psortplot_html.rb +214 -0
  231. data/sample/ssearch2tab.rb +96 -0
  232. data/sample/tdiary.rb +158 -0
  233. data/sample/tfastx2tab.rb +100 -0
  234. data/sample/vs-genes.rb +212 -0
  235. data/test/data/HMMER/hmmpfam.out +64 -0
  236. data/test/data/HMMER/hmmsearch.out +88 -0
  237. data/test/data/SOSUI/sample.report +11 -0
  238. data/test/data/TMHMM/sample.report +21 -0
  239. data/test/data/aaindex/DAYM780301 +30 -0
  240. data/test/data/aaindex/PRAM900102 +20 -0
  241. data/test/data/bl2seq/cd8a_cd8b_blastp.bl2seq +53 -0
  242. data/test/data/bl2seq/cd8a_p53_e-5blastp.bl2seq +37 -0
  243. data/test/data/blast/2.2.15.blastp.m7 +876 -0
  244. data/test/data/blast/b0002.faa +15 -0
  245. data/test/data/blast/b0002.faa.m0 +128 -0
  246. data/test/data/blast/b0002.faa.m7 +65 -0
  247. data/test/data/blast/b0002.faa.m8 +1 -0
  248. data/test/data/embl/AB090716.embl +65 -0
  249. data/test/data/embl/AB090716.embl.rel89 +63 -0
  250. data/test/data/fasta/example1.txt +75 -0
  251. data/test/data/fasta/example2.txt +21 -0
  252. data/test/data/genscan/sample.report +63 -0
  253. data/test/data/iprscan/merged.raw +32 -0
  254. data/test/data/iprscan/merged.txt +74 -0
  255. data/test/data/prosite/prosite.dat +2233 -0
  256. data/test/data/refseq/nm_126355.entret +64 -0
  257. data/test/data/soft/GDS100_partial.soft +92 -0
  258. data/test/data/soft/GSE3457_family_partial.soft +874 -0
  259. data/test/data/uniprot/p53_human.uniprot +1456 -0
  260. data/test/functional/bio/io/test_ensembl.rb +186 -0
  261. data/test/functional/bio/io/test_soapwsdl.rb +52 -0
  262. data/test/runner.rb +14 -0
  263. data/test/unit/bio/appl/bl2seq/test_report.rb +134 -0
  264. data/test/unit/bio/appl/blast/test_report.rb +417 -0
  265. data/test/unit/bio/appl/blast/test_xmlparser.rb +388 -0
  266. data/test/unit/bio/appl/genscan/test_report.rb +182 -0
  267. data/test/unit/bio/appl/hmmer/test_report.rb +342 -0
  268. data/test/unit/bio/appl/iprscan/test_report.rb +338 -0
  269. data/test/unit/bio/appl/mafft/test_report.rb +63 -0
  270. data/test/unit/bio/appl/sosui/test_report.rb +81 -0
  271. data/test/unit/bio/appl/targetp/test_report.rb +146 -0
  272. data/test/unit/bio/appl/test_blast.rb +163 -0
  273. data/test/unit/bio/appl/test_fasta.rb +130 -0
  274. data/test/unit/bio/appl/test_pts1.rb +140 -0
  275. data/test/unit/bio/appl/tmhmm/test_report.rb +126 -0
  276. data/test/unit/bio/data/test_aa.rb +90 -0
  277. data/test/unit/bio/data/test_codontable.rb +107 -0
  278. data/test/unit/bio/data/test_na.rb +80 -0
  279. data/test/unit/bio/db/embl/test_common.rb +117 -0
  280. data/test/unit/bio/db/embl/test_embl.rb +214 -0
  281. data/test/unit/bio/db/embl/test_embl_rel89.rb +219 -0
  282. data/test/unit/bio/db/embl/test_sptr.rb +1775 -0
  283. data/test/unit/bio/db/embl/test_uniprot.rb +31 -0
  284. data/test/unit/bio/db/kegg/test_genes.rb +45 -0
  285. data/test/unit/bio/db/pdb/test_pdb.rb +152 -0
  286. data/test/unit/bio/db/test_aaindex.rb +197 -0
  287. data/test/unit/bio/db/test_fasta.rb +250 -0
  288. data/test/unit/bio/db/test_gff.rb +127 -0
  289. data/test/unit/bio/db/test_lasergene.rb +95 -0
  290. data/test/unit/bio/db/test_newick.rb +293 -0
  291. data/test/unit/bio/db/test_nexus.rb +360 -0
  292. data/test/unit/bio/db/test_prosite.rb +1437 -0
  293. data/test/unit/bio/db/test_rebase.rb +101 -0
  294. data/test/unit/bio/db/test_soft.rb +138 -0
  295. data/test/unit/bio/io/test_ddbjxml.rb +75 -0
  296. data/test/unit/bio/io/test_ensembl.rb +109 -0
  297. data/test/unit/bio/io/test_fastacmd.rb +42 -0
  298. data/test/unit/bio/io/test_flatfile.rb +237 -0
  299. data/test/unit/bio/io/test_soapwsdl.rb +32 -0
  300. data/test/unit/bio/sequence/test_aa.rb +103 -0
  301. data/test/unit/bio/sequence/test_common.rb +174 -0
  302. data/test/unit/bio/sequence/test_compat.rb +69 -0
  303. data/test/unit/bio/sequence/test_na.rb +330 -0
  304. data/test/unit/bio/shell/plugin/test_seq.rb +185 -0
  305. data/test/unit/bio/test_alignment.rb +1025 -0
  306. data/test/unit/bio/test_command.rb +288 -0
  307. data/test/unit/bio/test_db.rb +96 -0
  308. data/test/unit/bio/test_feature.rb +116 -0
  309. data/test/unit/bio/test_location.rb +39 -0
  310. data/test/unit/bio/test_map.rb +230 -0
  311. data/test/unit/bio/test_pathway.rb +473 -0
  312. data/test/unit/bio/test_reference.rb +224 -0
  313. data/test/unit/bio/test_sequence.rb +329 -0
  314. data/test/unit/bio/test_shell.rb +18 -0
  315. data/test/unit/bio/test_tree.rb +593 -0
  316. data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +299 -0
  317. data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +103 -0
  318. data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +240 -0
  319. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +101 -0
  320. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +75 -0
  321. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +73 -0
  322. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +53 -0
  323. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +104 -0
  324. data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +83 -0
  325. data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +246 -0
  326. data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +44 -0
  327. data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +115 -0
  328. data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +147 -0
  329. data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +147 -0
  330. data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +60 -0
  331. data/test/unit/bio/util/test_color_scheme.rb +33 -0
  332. data/test/unit/bio/util/test_contingency_table.rb +94 -0
  333. data/test/unit/bio/util/test_restriction_enzyme.rb +42 -0
  334. data/test/unit/bio/util/test_sirna.rb +245 -0
  335. metadata +479 -0
@@ -0,0 +1,146 @@
1
+ #
2
+ # = bio/shell/demo.rb - demo mode for the BioRuby shell
3
+ #
4
+ # Copyright:: Copyright (C) 2006
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: demo.rb,v 1.4 2007/04/05 23:35:41 trevor Exp $
9
+ #
10
+
11
+ module Bio::Shell
12
+
13
+ private
14
+
15
+ def demo(part = nil)
16
+ demo = Demo.new
17
+ if part
18
+ demo.send(part)
19
+ else
20
+ demo.all
21
+ end
22
+ end
23
+
24
+ class Demo
25
+
26
+ def initialize
27
+ @bind = Bio::Shell.cache[:binding]
28
+ end
29
+
30
+ def all
31
+ sequence &&
32
+ entry &&
33
+ shell &&
34
+ pdb &&
35
+ true
36
+ end
37
+
38
+ def tutorial
39
+ end
40
+
41
+ def aldh2
42
+ end
43
+
44
+ def mito
45
+ run(%q[entry = getent("data/kumamushi.gb")], "Load kumamushi gene from GenBank database entry ...", false) &&
46
+ run(%q[disp entry], "Check the contents ...", false) &&
47
+ run(%q[kuma = flatparse(entry)], "Parse the database entry ...", true) &&
48
+ run(%q[web], "Start BioRuby on Rails...", false) &&
49
+ run(%q[puts kuma.entry_id], "Extract entry ID ...", false) &&
50
+ run(%q[puts kuma.definition], "Extract definition ...", false) &&
51
+ run(%q[gene = kuma.seq], "Extract DNA sequence of the gene ...", true) &&
52
+ run(%q[doublehelix(gene)], "Show the sequence in ascii art ...", false) &&
53
+ run(%q[seqstat(gene)], "Statistics of the gene ...", false) &&
54
+ run(%q[config :color], "Change to color mode...", false) &&
55
+ run(%q[seqstat(gene)], "Statistics of the gene ...", false) &&
56
+ #run(%q[codontable], "Codontalble ...", false) &&
57
+ run(%q[protein = gene.translate], "Translate DNA into protein ...", true) &&
58
+ run(%q[comp = protein.composition], "Composition of the amino acids ...", false) &&
59
+ run(%q[pp comp], "Check the composition ...", false) &&
60
+ run(%q[puts protein.molecular_weight], "Molecular weight ...", false) &&
61
+ run(%q[midifile("data/kumamushi.mid", gene)], "Gene to music ...", false) &&
62
+ run(%q[`open "data/kumamushi.mid"`], "Let's listen ...", false) &&
63
+ true
64
+ end
65
+
66
+ def sequence
67
+ run(%q[dna = getseq("atgc" * 100)], "Generating DNA sequence ...", true) &&
68
+ run(%q[doublehelix dna], "Double helix representation", false) &&
69
+ run(%q[protein = dna.translate], "Translate DNA into Protein ...", true) &&
70
+ run(%q[protein.molecular_weight], "Calculating molecular weight ...", true) &&
71
+ run(%q[protein.composition], "Amino acid composition ...", true) &&
72
+ true
73
+ end
74
+
75
+ def entry
76
+ run(%q[kuma = getobj("gb:AF237819")], "Obtain an entry from GenBank database", false) &&
77
+ run(%q[kuma.definition], "Definition of the entry", true) &&
78
+ run(%q[kuma.naseq], "Sequence of the entry", true) &&
79
+ run(%q[kuma.naseq.translate], "Translate the sequence to protein", true) &&
80
+ run(%q[midifile("data/AF237819.mid", kuma.naseq)], "Generate gene music ...", false) &&
81
+ true
82
+ end
83
+
84
+ def shell
85
+ run(%q[pwd], "Show current working directory ...", false) &&
86
+ run(%q[dir], "Show directory contents ...", false) &&
87
+ run(%q[dir "shell/session"], "Show directory contents ...", false) &&
88
+ true
89
+ end
90
+
91
+ def pdb
92
+ run(%q[ent_1bl8 = getent("pdb:1bl8")], "Retrieving PDB entry 1BL8 ...", false) &&
93
+ run(%q[head ent_1bl8], "Head part of the entry ...", false) &&
94
+ run(%q[savefile("1bl8.pdb", ent_1bl8)], "Saving the original entry in file ...", false) &&
95
+ run(%q[disp "data/1bl8.pdb"], "Look through the entire entry ...", false) &&
96
+ run(%q[pdb_1bl8 = flatparse(ent_1bl8)], "Parsing the entry ...", false) &&
97
+ run(%q[pdb_1bl8.entry_id], "Showing the entry ID ...", true) &&
98
+ run(%q[pdb_1bl8.each_heterogen { |heterogen| p heterogen.resName }], "Showing each heterogen object ...", false) &&
99
+ true
100
+ end
101
+
102
+ def pdb_hetdic
103
+ # run(%q[het_dic = open("http://deposit.pdb.org/het_dictionary.txt").read],
104
+ # "Retrieving the het_dic database ...", false) &&
105
+ # run(%q[savefile("data/het_dictionary.txt", het_dic)],
106
+ # "Saving the file ... ", false) &&
107
+ run(%q[het_dic.size], "Bytes of the file ...", true) &&
108
+ run(%q[disp "data/het_dictionary.txt"], "Take a look on the contents ...", true) &&
109
+ run(%q[flatindex("het_dic", "data/het_dictionary.txt")],
110
+ "Creating index to make the seaarchable database ...", false) &&
111
+ run(%q[ethanol = flatsearch("het_dic", "EOH")], "Search an ethanol entry ...", true) &&
112
+ run(%q[osake = flatparse(ethanol)], "Parse the entry ...", true) &&
113
+ run(%q[osake.conect], "Showing connect table (conect) of the molecule ...", true) &&
114
+ true
115
+ end
116
+
117
+ private
118
+
119
+ def run(cmd, msg, echo)
120
+ comment(msg)
121
+ splash(cmd)
122
+ result = eval(cmd, @bind)
123
+ if echo
124
+ pp result
125
+ end
126
+ continue?
127
+ end
128
+
129
+ def comment(msg)
130
+ puts "### #{msg}"
131
+ end
132
+
133
+ def splash(msg)
134
+ Bio::Shell.splash_message_action("bioruby> #{msg}")
135
+ print "bioruby> #{msg}"
136
+ gets
137
+ end
138
+
139
+ def continue?
140
+ Bio::Shell.ask_yes_or_no("Continue? [y/n] ")
141
+ end
142
+
143
+ end
144
+
145
+ end
146
+
@@ -0,0 +1,218 @@
1
+ #
2
+ # = bio/shell/interface.rb - core user interface of the BioRuby shell
3
+ #
4
+ # Copyright:: Copyright (C) 2005
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: interface.rb,v 1.19 2007/11/15 07:08:49 k Exp $
9
+ #
10
+
11
+ module Bio::Shell
12
+
13
+ private
14
+
15
+ ### work space
16
+
17
+ def ls
18
+ bind = Bio::Shell.cache[:binding]
19
+ list = eval("local_variables", bind).reject { |x|
20
+ eval(x, bind).nil?
21
+ }
22
+ puts list.inspect
23
+ return list
24
+ end
25
+
26
+ def rm(name)
27
+ bind = Bio::Shell.cache[:binding]
28
+ list = eval("local_variables", bind).reject { |x|
29
+ eval(x, bind).nil?
30
+ }
31
+ begin
32
+ if list.include?(name.to_s)
33
+ eval("#{name} = nil", bind)
34
+ else
35
+ raise
36
+ end
37
+ rescue
38
+ warn "Usage: rm :var or rm 'var' (rm var is not valid)"
39
+ end
40
+ end
41
+
42
+ ### script
43
+
44
+ def script(mode = nil)
45
+ Bio::Shell.script(mode)
46
+ end
47
+
48
+ ### object
49
+
50
+ def reload_object
51
+ Bio::Shell.load_object
52
+ end
53
+
54
+ ### plugin
55
+
56
+ def reload_plugin
57
+ Bio::Shell.load_plugin
58
+ end
59
+
60
+ ### config
61
+
62
+ def config(mode = :show, *opts)
63
+ case mode
64
+ when :show, "show"
65
+ Bio::Shell.config_show
66
+ when :echo, "echo"
67
+ Bio::Shell.config_echo
68
+ when :color, "color"
69
+ Bio::Shell.config_color
70
+ when :splash, "splash"
71
+ Bio::Shell.config_splash
72
+ when :pager, "pager"
73
+ Bio::Shell.config_pager(*opts)
74
+ when :message, "message"
75
+ Bio::Shell.config_message(*opts)
76
+ else
77
+ puts "Invalid mode (#{mode}) - :show, :echo, :color, :splash, :massage"
78
+ end
79
+ end
80
+
81
+ def reload_config
82
+ Bio::Shell.load_config
83
+ end
84
+
85
+ ### pager
86
+
87
+ def pager(cmd = nil)
88
+ unless Bio::Shell.config[:pager]
89
+ cmd ||= ENV['PAGER']
90
+ end
91
+ Bio::Shell.config_pager(cmd)
92
+ puts "Pager is set to '#{cmd ? cmd : 'off'}'"
93
+ end
94
+
95
+ def disp(*objs)
96
+ # The original idea is from http://sheepman.parfait.ne.jp/20050215.html
97
+ if cmd = Bio::Shell.config[:pager]
98
+ pg = IO.popen(cmd, "w")
99
+ begin
100
+ stdout_save = STDOUT.clone
101
+ STDOUT.reopen(pg)
102
+ objs.each do |obj|
103
+ if obj.is_a?(String)
104
+ if File.exists?(obj)
105
+ system("#{cmd} #{obj}")
106
+ else
107
+ obj.display
108
+ end
109
+ else
110
+ pp obj
111
+ end
112
+ end
113
+ ensure
114
+ STDOUT.reopen(stdout_save)
115
+ stdout_save.close
116
+ pg.close
117
+ end
118
+ else
119
+ objs.each do |obj|
120
+ if obj.is_a?(String)
121
+ obj.display
122
+ else
123
+ pp obj
124
+ end
125
+ end
126
+ end
127
+ end
128
+
129
+ def head(arg, num = 10)
130
+ str = ""
131
+ if File.exists?(arg)
132
+ File.open(arg) do |file|
133
+ num.times do
134
+ if line = file.gets
135
+ str << line
136
+ end
137
+ end
138
+ end
139
+ else
140
+ arg.to_s.each_with_index do |line, i|
141
+ break if i >= num
142
+ str << line
143
+ end
144
+ end
145
+ puts str
146
+ return str
147
+ end
148
+
149
+ ### file save
150
+
151
+ def savefile(file, *objs)
152
+ datadir = Bio::Shell.data_dir
153
+ message = "Save file '#{file}' in '#{datadir}' directory? [y/n] "
154
+ if ! file[/^#{datadir}/] and Bio::Shell.ask_yes_or_no(message)
155
+ file = File.join(datadir, file)
156
+ end
157
+ if File.exists?(file)
158
+ message = "Overwrite existing '#{file}' file? [y/n] "
159
+ if ! Bio::Shell.ask_yes_or_no(message)
160
+ puts " ... save aborted."
161
+ return
162
+ end
163
+ end
164
+ begin
165
+ print "Saving file (#{file}) ... "
166
+ File.open(file, "w") do |f|
167
+ objs.each do |obj|
168
+ f.puts obj.to_s
169
+ end
170
+ end
171
+ puts "done"
172
+ rescue
173
+ warn "Error: Failed to save (#{file}) : #{$!}"
174
+ end
175
+ end
176
+
177
+ ### file system
178
+
179
+ def cd(dir = ENV['HOME'])
180
+ if dir
181
+ Dir.chdir(dir)
182
+ end
183
+ puts Dir.pwd.inspect
184
+ end
185
+
186
+ def pwd
187
+ puts Dir.pwd.inspect
188
+ end
189
+
190
+ def dir(file = nil)
191
+ if file
192
+ if File.directory?(file)
193
+ files = Dir.glob("#{file}/*")
194
+ else
195
+ files = Dir.glob(file)
196
+ end
197
+ else
198
+ files = Dir.glob("*")
199
+ end
200
+ if files
201
+ str = " UGO Date Byte File\n"
202
+ str << "------ ------------------------------ ----------- ------------\n"
203
+ files.sort.each { |f|
204
+ stat = File.lstat(f)
205
+ mode = format("%6o", stat.mode)
206
+ date = stat.mtime
207
+ byte = stat.size
208
+ name = f.inspect
209
+ str << format("%s %30s%13d %s\n", mode, date, byte, name)
210
+ }
211
+ puts str
212
+ return files.sort
213
+ end
214
+ end
215
+
216
+ end
217
+
218
+
@@ -0,0 +1,95 @@
1
+ #
2
+ # = bio/shell/irb.rb - CUI for the BioRuby shell
3
+ #
4
+ # Copyright:: Copyright (C) 2006
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: irb.rb,v 1.3 2007/04/05 23:35:41 trevor Exp $
9
+ #
10
+
11
+ module Bio::Shell
12
+
13
+ class Irb
14
+
15
+ def initialize
16
+ require 'irb'
17
+ begin
18
+ require 'irb/completion'
19
+ Bio::Shell.cache[:readline] = true
20
+ rescue LoadError
21
+ Bio::Shell.cache[:readline] = false
22
+ end
23
+ IRB.setup(nil)
24
+ setup_irb
25
+ start_irb
26
+ end
27
+
28
+ def start_irb
29
+ Bio::Shell.cache[:irb] = IRB::Irb.new
30
+
31
+ # needed for method completion
32
+ IRB.conf[:MAIN_CONTEXT] = Bio::Shell.cache[:irb].context
33
+
34
+ # store binding for evaluation
35
+ Bio::Shell.cache[:binding] = IRB.conf[:MAIN_CONTEXT].workspace.binding
36
+
37
+ # overwrite gets to store history with time stamp
38
+ io = IRB.conf[:MAIN_CONTEXT].io
39
+ io.class.class_eval do
40
+ alias_method :irb_original_gets, :gets
41
+ end
42
+
43
+ def io.gets
44
+ line = irb_original_gets
45
+ if line
46
+ Bio::Shell.store_history(line)
47
+ end
48
+ return line
49
+ end
50
+
51
+ if File.exists?("./config/boot.rb")
52
+ require "./config/boot"
53
+ require "./config/environment"
54
+ #require 'commands/console'
55
+ end
56
+ end
57
+
58
+ def setup_irb
59
+ # set application name
60
+ IRB.conf[:AP_NAME] = 'bioruby'
61
+
62
+ # change prompt for bioruby
63
+ $_ = Bio::Shell.colors
64
+ IRB.conf[:PROMPT][:BIORUBY_COLOR] = {
65
+ :PROMPT_I => "bio#{$_[:ruby]}ruby#{$_[:none]}> ",
66
+ :PROMPT_S => "bio#{$_[:ruby]}ruby#{$_[:none]}%l ",
67
+ :PROMPT_C => "bio#{$_[:ruby]}ruby#{$_[:none]}+ ",
68
+ :RETURN => " ==> %s\n"
69
+ }
70
+ IRB.conf[:PROMPT][:BIORUBY] = {
71
+ :PROMPT_I => "bioruby> ",
72
+ :PROMPT_S => "bioruby%l ",
73
+ :PROMPT_C => "bioruby+ ",
74
+ :RETURN => " ==> %s\n"
75
+ }
76
+ if Bio::Shell.config[:color]
77
+ IRB.conf[:PROMPT_MODE] = :BIORUBY_COLOR
78
+ else
79
+ IRB.conf[:PROMPT_MODE] = :BIORUBY
80
+ end
81
+
82
+ # echo mode (uncomment to off by default)
83
+ #IRB.conf[:ECHO] = Bio::Shell.config[:echo] || false
84
+
85
+ # irb/input-method.rb >= v1.5 (not in 1.8.2)
86
+ #IRB.conf[:SAVE_HISTORY] = 100000
87
+
88
+ # not nicely works
89
+ #IRB.conf[:AUTO_INDENT] = true
90
+ end
91
+
92
+ end # Irb
93
+
94
+ end
95
+