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,457 @@
1
+ #
2
+ # bio/db/rebase.rb - Interface for EMBOSS formatted REBASE files
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: rebase.rb,v 1.8 2007/04/05 23:35:40 trevor Exp $
9
+ #
10
+
11
+ autoload :YAML, 'yaml'
12
+
13
+ module Bio #:nodoc:
14
+
15
+ autoload :Reference, 'bio/reference'
16
+
17
+ #
18
+ # bio/db/rebase.rb - Interface for EMBOSS formatted REBASE files
19
+ #
20
+ # Author:: Trevor Wennblom <mailto:trevor@corevx.com>
21
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
22
+ # License:: The Ruby License
23
+ #
24
+ #
25
+ # = Description
26
+ #
27
+ # Bio::REBASE provides utilties for interacting with REBASE data in EMBOSS
28
+ # format. REBASE is the Restriction Enzyme Database, more information
29
+ # can be found here:
30
+ #
31
+ # * http://rebase.neb.com
32
+ #
33
+ # EMBOSS formatted files located at:
34
+ #
35
+ # * http://rebase.neb.com/rebase/rebase.f37.html
36
+ #
37
+ # These files are the same as the "emboss_?.???" files located at:
38
+ #
39
+ # * ftp://ftp.neb.com/pub/rebase/
40
+ #
41
+ # To easily get started with the data you can simply type this command
42
+ # at your shell prompt:
43
+ #
44
+ # % wget ftp://ftp.neb.com/pub/rebase/emboss*
45
+ #
46
+ #
47
+ # = Usage
48
+ #
49
+ # require 'bio'
50
+ # require 'pp'
51
+ #
52
+ # enz = File.read('emboss_e')
53
+ # ref = File.read('emboss_r')
54
+ # sup = File.read('emboss_s')
55
+ #
56
+ # # When creating a new instance of Bio::REBASE
57
+ # # the contents of the enzyme file must be passed.
58
+ # # The references and suppiers file contents
59
+ # # may also be passed.
60
+ # rebase = Bio::REBASE.new( enz )
61
+ # rebase = Bio::REBASE.new( enz, ref )
62
+ # rebase = Bio::REBASE.new( enz, ref, sup )
63
+ #
64
+ # # The 'read' class method allows you to read in files
65
+ # # that are REBASE EMBOSS formatted
66
+ # rebase = Bio::REBASE.read( 'emboss_e' )
67
+ # rebase = Bio::REBASE.read( 'emboss_e', 'emboss_r' )
68
+ # rebase = Bio::REBASE.read( 'emboss_e', 'emboss_r', 'emboss_s' )
69
+ #
70
+ # # The data loaded may be saved in YAML format
71
+ # rebase.save_yaml( 'enz.yaml' )
72
+ # rebase.save_yaml( 'enz.yaml', 'ref.yaml' )
73
+ # rebase.save_yaml( 'enz.yaml', 'ref.yaml', 'sup.yaml' )
74
+ #
75
+ # # YAML formatted files can also be read with the
76
+ # # class method 'load_yaml'
77
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml' )
78
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml', 'ref.yaml' )
79
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml', 'ref.yaml', 'sup.yaml' )
80
+ #
81
+ # pp rebase.enzymes[0..4] # ["AarI", "AasI", "AatI", "AatII", "Acc16I"]
82
+ # pp rebase.enzyme_name?('aasi') # true
83
+ # pp rebase['AarI'].pattern # "CACCTGC"
84
+ # pp rebase['AarI'].blunt? # false
85
+ # pp rebase['AarI'].organism # "Arthrobacter aurescens SS2-322"
86
+ # pp rebase['AarI'].source # "A. Janulaitis"
87
+ # pp rebase['AarI'].primary_strand_cut1 # 11
88
+ # pp rebase['AarI'].primary_strand_cut2 # 0
89
+ # pp rebase['AarI'].complementary_strand_cut1 # 15
90
+ # pp rebase['AarI'].complementary_strand_cut2 # 0
91
+ # pp rebase['AarI'].suppliers # ["F"]
92
+ # pp rebase['AarI'].supplier_names # ["Fermentas International Inc."]
93
+ #
94
+ # pp rebase['AarI'].isoschizomers # Currently none stored in the references file
95
+ # pp rebase['AarI'].methylation # ""
96
+ #
97
+ # pp rebase['EcoRII'].methylation # "2(5)"
98
+ # pp rebase['EcoRII'].suppliers # ["F", "J", "M", "O", "S"]
99
+ # pp rebase['EcoRII'].supplier_names # ["Fermentas International Inc.", "Nippon Gene Co., Ltd.",
100
+ # # "Roche Applied Science", "Toyobo Biochemicals",
101
+ # # "Sigma Chemical Corporation"]
102
+ #
103
+ # # Number of enzymes in the database
104
+ # pp rebase.size # 673
105
+ # pp rebase.enzymes.size # 673
106
+ #
107
+ # rebase.each do |name, info|
108
+ # pp "#{name}: #{info.methylation}" unless info.methylation.empty?
109
+ # end
110
+ #
111
+
112
+ class REBASE
113
+
114
+ class DynamicMethod_Hash < Hash #:nodoc:
115
+ # Define a writer or reader
116
+ # * Allows hash[:kay]= to be accessed like hash.key=
117
+ # * Allows hash[:key] to be accessed like hash.key
118
+ def method_missing(method_id, *args)
119
+ k = self.class
120
+ if method_id.to_s[-1].chr == '='
121
+ k.class_eval do
122
+ define_method(method_id) { |s| self[ method_id.to_s[0..-2].to_sym ] = s }
123
+ end
124
+ k.instance_method(method_id).bind(self).call(args[0])
125
+ else
126
+ k.class_eval do
127
+ define_method(method_id) { self[method_id] }
128
+ end
129
+ k.instance_method(method_id).bind(self).call
130
+ end
131
+ end
132
+ end
133
+
134
+ class EnzymeEntry < DynamicMethod_Hash #:nodoc:
135
+ @@supplier_data = {}
136
+ def self.supplier_data=(d); @@supplier_data = d; end
137
+
138
+ def supplier_names
139
+ ret = []
140
+ self.suppliers.each { |s| ret << @@supplier_data[s] }
141
+ ret
142
+ end
143
+ end
144
+
145
+ # Calls _block_ once for each element in <tt>@data</tt> hash, passing that element as a parameter.
146
+ #
147
+ # ---
148
+ # *Arguments*
149
+ # * Accepts a block
150
+ # *Returns*:: results of _block_ operations
151
+ def each
152
+ @data.each { |item| yield item }
153
+ end
154
+
155
+ # Make the instantiated class act like a Hash on @data
156
+ # Does the equivalent and more of this:
157
+ # def []( key ); @data[ key ]; end
158
+ # def size; @data.size; end
159
+ def method_missing(method_id, *args) #:nodoc:
160
+ self.class.class_eval do
161
+ define_method(method_id) { |a| Hash.instance_method(method_id).bind(@data).call(a) }
162
+ end
163
+ Hash.instance_method(method_id).bind(@data).call(*args)
164
+ end
165
+
166
+ # Constructor
167
+ #
168
+ # ---
169
+ # *Arguments*
170
+ # * +enzyme_lines+: (_required_) contents of EMBOSS formatted enzymes file
171
+ # * +reference_lines+: (_optional_) contents of EMBOSS formatted references file
172
+ # * +supplier_lines+: (_optional_) contents of EMBOSS formatted suppliers files
173
+ # * +yaml+: (_optional_, _default_ +false+) enzyme_lines, reference_lines, and supplier_lines are read as YAML if set to true
174
+ # *Returns*:: Bio::REBASE
175
+ def initialize( enzyme_lines, reference_lines = nil, supplier_lines = nil, yaml = false )
176
+ # All your REBASE are belong to us.
177
+
178
+ if yaml
179
+ @enzyme_data = enzyme_lines
180
+ @reference_data = reference_lines
181
+ @supplier_data = supplier_lines
182
+ else
183
+ @enzyme_data = parse_enzymes(enzyme_lines)
184
+ @reference_data = parse_references(reference_lines)
185
+ @supplier_data = parse_suppliers(supplier_lines)
186
+ end
187
+
188
+ EnzymeEntry.supplier_data = @supplier_data
189
+ setup_enzyme_data
190
+ end
191
+
192
+ # List the enzymes available
193
+ #
194
+ # ---
195
+ # *Arguments*
196
+ # * _none_
197
+ # *Returns*:: +Array+ sorted enzyme names
198
+ def enzymes
199
+ @data.keys.sort
200
+ end
201
+
202
+ # Check if supplied name is the name of an available enzyme
203
+ #
204
+ # ---
205
+ # *Arguments*
206
+ # * +name+: Enzyme name
207
+ # *Returns*:: +true/false+
208
+ def enzyme_name?(name)
209
+ enzymes.each do |e|
210
+ return true if e.downcase == name.downcase
211
+ end
212
+ return false
213
+ end
214
+
215
+ # Save the current data
216
+ # rebase.save_yaml( 'enz.yaml' )
217
+ # rebase.save_yaml( 'enz.yaml', 'ref.yaml' )
218
+ # rebase.save_yaml( 'enz.yaml', 'ref.yaml', 'sup.yaml' )
219
+ #
220
+ # ---
221
+ # *Arguments*
222
+ # * +f_enzyme+: (_required_) Filename to save YAML formatted output of enzyme data
223
+ # * +f_reference+: (_optional_) Filename to save YAML formatted output of reference data
224
+ # * +f_supplier+: (_optional_) Filename to save YAML formatted output of supplier data
225
+ # *Returns*:: nothing
226
+ def save_yaml( f_enzyme, f_reference=nil, f_supplier=nil )
227
+ File.open(f_enzyme, 'w') { |f| f.puts YAML.dump(@enzyme_data) }
228
+ File.open(f_reference, 'w') { |f| f.puts YAML.dump(@reference_data) } if f_reference
229
+ File.open(f_supplier, 'w') { |f| f.puts YAML.dump(@supplier_data) } if f_supplier
230
+ return
231
+ end
232
+
233
+ # Read REBASE EMBOSS-formatted files
234
+ # rebase = Bio::REBASE.read( 'emboss_e' )
235
+ # rebase = Bio::REBASE.read( 'emboss_e', 'emboss_r' )
236
+ # rebase = Bio::REBASE.read( 'emboss_e', 'emboss_r', 'emboss_s' )
237
+ #
238
+ # ---
239
+ # *Arguments*
240
+ # * +f_enzyme+: (_required_) Filename to read enzyme data
241
+ # * +f_reference+: (_optional_) Filename to read reference data
242
+ # * +f_supplier+: (_optional_) Filename to read supplier data
243
+ # *Returns*:: Bio::REBASE object
244
+ def self.read( f_enzyme, f_reference=nil, f_supplier=nil )
245
+ e = IO.readlines(f_enzyme)
246
+ r = f_reference ? IO.readlines(f_reference) : nil
247
+ s = f_supplier ? IO.readlines(f_supplier) : nil
248
+ self.new(e,r,s)
249
+ end
250
+
251
+ # Read YAML formatted files
252
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml' )
253
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml', 'ref.yaml' )
254
+ # rebase = Bio::REBASE.load_yaml( 'enz.yaml', 'ref.yaml', 'sup.yaml' )
255
+ #
256
+ # ---
257
+ # *Arguments*
258
+ # * +f_enzyme+: (_required_) Filename to read YAML-formatted enzyme data
259
+ # * +f_reference+: (_optional_) Filename to read YAML-formatted reference data
260
+ # * +f_supplier+: (_optional_) Filename to read YAML-formatted supplier data
261
+ # *Returns*:: Bio::REBASE object
262
+ def self.load_yaml( f_enzyme, f_reference=nil, f_supplier=nil )
263
+ e = YAML.load_file(f_enzyme)
264
+ r = f_reference ? YAML.load_file(f_reference) : nil
265
+ s = f_supplier ? YAML.load_file(f_supplier) : nil
266
+ self.new(e,r,s,true)
267
+ end
268
+
269
+ #########
270
+ protected
271
+ #########
272
+
273
+ def setup_enzyme_data
274
+ @data = {}
275
+
276
+ @enzyme_data.each do |name, hash|
277
+ @data[name] = EnzymeEntry.new
278
+ d = @data[name]
279
+ d.pattern = hash[:pattern]
280
+ # d.blunt?= is a syntax error
281
+ d[:blunt?] = (hash[:blunt].to_i == 1 ? true : false)
282
+ d.primary_strand_cut1 = hash[:c1].to_i
283
+ d.complementary_strand_cut1 = hash[:c2].to_i
284
+ d.primary_strand_cut2 = hash[:c3].to_i
285
+ d.complementary_strand_cut2 = hash[:c4].to_i
286
+
287
+ # Set up keys just in case there's no reference data supplied
288
+ [:organism, :isoschizomers,
289
+ :methylation, :source].each { |k| d[k] = '' }
290
+ d.suppliers = []
291
+ d.references = []
292
+ end
293
+
294
+ setup_enzyme_and_reference_association
295
+ end
296
+
297
+ def setup_enzyme_and_reference_association
298
+ return unless @reference_data
299
+ @reference_data.each do |name, hash|
300
+ d = @data[name]
301
+ [:organism, :isoschizomers,
302
+ :methylation, :source].each { |k| d[k] = hash[k] }
303
+ d.suppliers = hash[:suppliers].split('')
304
+ d.references = []
305
+ hash[:references].each { |k| d.references << raw_to_reference(k) }
306
+ end
307
+ end
308
+
309
+ # data is a hash indexed by the :name of each entry which is also a hash
310
+ # * data[enzyme_name] has the following keys:
311
+ # :name, :pattern, :len, :ncuts, :blunt, :c1, :c2, :c3, :c4
312
+ # :c1 => First 5' cut
313
+ # :c2 => First 3' cut
314
+ # :c3 => Second 5' cut
315
+ # :c4 => Seocnd 3' cut
316
+ def parse_enzymes( lines )
317
+ data = {}
318
+ return data if lines == nil
319
+ lines.each do |line|
320
+ next if line[0].chr == '#'
321
+ line.chomp!
322
+
323
+ a = line.split("\s")
324
+
325
+ data[ a[0] ] = {
326
+ :name => a[0],
327
+ :pattern => a[1],
328
+ :len => a[2],
329
+ :ncuts => a[3],
330
+ :blunt => a[4],
331
+ :c1 => a[5],
332
+ :c2 => a[6],
333
+ :c3 => a[7],
334
+ :c4 => a[8]
335
+ }
336
+ end # lines.each
337
+ data
338
+ end
339
+
340
+ # data is a hash indexed by the :name of each entry which is also a hash
341
+ # * data[enzyme_name] has the following keys:
342
+ # :organism, :isoschizomers, :references, :source, :methylation, :suppliers, :name, :number_of_references
343
+ def parse_references( lines )
344
+ data = {}
345
+ return data if lines == nil
346
+ index = 1
347
+ h = {}
348
+ references_left = 0
349
+
350
+ lines.each do |line|
351
+ next if line[0].chr == '#' # Comment
352
+ next if line[0..1] == '//' # End of entry marker
353
+ line.chomp!
354
+
355
+ if (1..7).include?( index )
356
+ h[index] = line
357
+ references_left = h[index].to_i if index == 7
358
+ index += 1
359
+ next
360
+ end
361
+
362
+ if index == 8
363
+ h[index] ||= []
364
+ h[index] << line
365
+ references_left -= 1
366
+ end
367
+
368
+ if references_left == 0
369
+ data[ h[1] ] = {
370
+ :name => h[1],
371
+ :organism => h[2],
372
+ :isoschizomers => h[3],
373
+ :methylation => h[4],
374
+ :source => h[5],
375
+ :suppliers => h[6],
376
+ :number_of_references => h[7],
377
+ :references => h[8]
378
+ }
379
+ index = 1
380
+ h = {}
381
+ end
382
+ end # lines.each
383
+ data
384
+ end
385
+
386
+ # data is a hash indexed by the supplier code
387
+ # data[supplier_code]
388
+ # returns the suppliers name
389
+ def parse_suppliers( lines )
390
+ data = {}
391
+ return data if lines == nil
392
+ lines.each do |line|
393
+ next if line[0].chr == '#'
394
+ data[$1] = $2 if line =~ %r{(.+?)\s(.+)}
395
+ end
396
+ data
397
+ end
398
+
399
+ # Takes a string in one of the three formats listed below and returns a
400
+ # Bio::Reference object
401
+ # * Possible input styles:
402
+ # a = 'Inagaki, K., Hikita, T., Yanagidani, S., Nomura, Y., Kishimoto, N., Tano, T., Tanaka, H., (1993) Biosci. Biotechnol. Biochem., vol. 57, pp. 1716-1721.'
403
+ # b = 'Nekrasiene, D., Lapcinskaja, S., Kiuduliene, L., Vitkute, J., Janulaitis, A., Unpublished observations.'
404
+ # c = "Grigaite, R., Maneliene, Z., Janulaitis, A., (2002) Nucleic Acids Res., vol. 30."
405
+ def raw_to_reference( line )
406
+ a = line.split(', ')
407
+
408
+ if a[-1] == 'Unpublished observations.'
409
+ title = a.pop.chop
410
+ pages = volume = year = journal = ''
411
+ else
412
+ title = ''
413
+
414
+ pages_or_volume = a.pop.chop
415
+ if pages_or_volume =~ %r{pp\.\s}
416
+ pages = pages_or_volume
417
+ pages.gsub!('pp. ', '')
418
+ volume = a.pop
419
+ else
420
+ pages = ''
421
+ volume = pages_or_volume
422
+ end
423
+
424
+ volume.gsub!('vol. ', '')
425
+
426
+ year_and_journal = a.pop
427
+ year_and_journal =~ %r{\((\d+)\)\s(.+)}
428
+ year = $1
429
+ journal = $2
430
+ end
431
+
432
+ authors = []
433
+
434
+ last_name = nil
435
+ a.each do |e|
436
+ if last_name
437
+ authors << "#{last_name}, #{e}"
438
+ last_name = nil
439
+ else
440
+ last_name = e
441
+ end
442
+ end
443
+
444
+ ref = {
445
+ 'title' => title,
446
+ 'pages' => pages,
447
+ 'volume' => volume,
448
+ 'year' => year,
449
+ 'journal' => journal,
450
+ 'authors' => authors,
451
+ }
452
+
453
+ Bio::Reference.new(ref)
454
+ end
455
+
456
+ end # REBASE
457
+ end # Bio