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,228 @@
1
+ #
2
+ # bio/util/restriction_enzyme.rb - Digests DNA based on restriction enzyme cut patterns
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: restriction_enzyme.rb,v 1.16 2007/07/16 19:28:48 k Exp $
9
+ #
10
+
11
+ module Bio #:nodoc:
12
+
13
+ autoload :REBASE, 'bio/db/rebase'
14
+
15
+ # = Description
16
+ #
17
+ # Bio::RestrictionEnzyme allows you to fragment a DNA strand using one
18
+ # or more restriction enzymes. Bio::RestrictionEnzyme is aware that
19
+ # multiple enzymes may be competing for the same recognition site and
20
+ # returns the various possible fragmentation patterns that result in
21
+ # such circumstances.
22
+ #
23
+ # When using Bio::RestrictionEnzyme you may simply use the name of common
24
+ # enzymes to cut your sequence or you may construct your own unique enzymes
25
+ # to use.
26
+ #
27
+ # Visit the documentaion for individual classes for more information.
28
+ #
29
+ # An examination of the unit tests will also reveal several interesting uses
30
+ # for the curious programmer.
31
+ #
32
+ # = Usage
33
+ #
34
+ # == Basic
35
+ #
36
+ # EcoRI cut pattern:
37
+ # G|A A T T C
38
+ # +-------+
39
+ # C T T A A|G
40
+ #
41
+ # This can also be written as:
42
+ # G^AATTC
43
+ #
44
+ # Note that to use the method +cut_with_enzyme+ from a Bio::Sequence object
45
+ # you currently must +require+ +bio/util/restriction_enzyme+ directly. If
46
+ # instead you're going to directly call Bio::RestrictionEnzyme::Analysis
47
+ # then only +bio+ needs to be +required+.
48
+ #
49
+ # require 'bio'
50
+ # require 'bio/util/restriction_enzyme'
51
+ #
52
+ # seq = Bio::Sequence::NA.new('gaattc')
53
+ # cuts = seq.cut_with_enzyme('EcoRI')
54
+ # cuts.primary # => ["aattc", "g"]
55
+ # cuts.complement # => ["cttaa", "g"]
56
+ # cuts.inspect # => "[#<struct Bio::RestrictionEnzyme::Fragment primary=\"g \", complement=\"cttaa\">, #<struct Bio::RestrictionEnzyme::Fragment primary=\"aattc\", complement=\" g\">]"
57
+ #
58
+ # seq = Bio::Sequence::NA.new('gaattc')
59
+ # cuts = seq.cut_with_enzyme('g^aattc')
60
+ # cuts.primary # => ["aattc", "g"]
61
+ # cuts.complement # => ["cttaa", "g"]
62
+ #
63
+ # seq = Bio::Sequence::NA.new('gaattc')
64
+ # cuts = seq.cut_with_enzyme('g^aattc', 'gaatt^c')
65
+ # cuts.primary # => ["aattc", "c", "g", "gaatt"]
66
+ # cuts.complement # => ["c", "cttaa", "g", "ttaag"]
67
+ #
68
+ # seq = Bio::Sequence::NA.new('gaattcgaattc')
69
+ # cuts = seq.cut_with_enzyme('EcoRI')
70
+ # cuts.primary # => ["aattc", "aattcg", "g"]
71
+ # cuts.complement # => ["cttaa", "g", "gcttaa"]
72
+ #
73
+ # seq = Bio::Sequence::NA.new('gaattcgggaattc')
74
+ # cuts = seq.cut_with_enzyme('EcoRI')
75
+ # cuts.primary # => ["aattc", "aattcggg", "g"]
76
+ # cuts.complement # => ["cttaa", "g", "gcccttaa"]
77
+ #
78
+ # cuts[0].inspect # => "#<struct Bio::RestrictionEnzyme::Fragment primary=\"g \", complement=\"cttaa\">"
79
+ #
80
+ # cuts[0].primary # => "g "
81
+ # cuts[0].complement # => "cttaa"
82
+ #
83
+ # cuts[1].primary # => "aattcggg "
84
+ # cuts[1].complement # => " gcccttaa"
85
+ #
86
+ # cuts[2].primary # => "aattc"
87
+ # cuts[2].complement # => " g"
88
+ #
89
+ # == Advanced
90
+ #
91
+ # require 'bio'
92
+ #
93
+ # enzyme_1 = Bio::RestrictionEnzyme.new('anna', [1,1], [3,3])
94
+ # enzyme_2 = Bio::RestrictionEnzyme.new('gg', [1,1])
95
+ # a = Bio::RestrictionEnzyme::Analysis.cut('agga', enzyme_1, enzyme_2)
96
+ # a.primary # => ["a", "ag", "g", "ga"]
97
+ # a.complement # => ["c", "ct", "t", "tc"]
98
+ #
99
+ # a[0].primary # => "ag"
100
+ # a[0].complement # => "tc"
101
+ #
102
+ # a[1].primary # => "ga"
103
+ # a[1].complement # => "ct"
104
+ #
105
+ # a[2].primary # => "a"
106
+ # a[2].complement # => "t"
107
+ #
108
+ # a[3].primary # => "g"
109
+ # a[3].complement # => "c"
110
+ #
111
+ # = Todo / under development
112
+ #
113
+ # * Circular DNA cutting
114
+ #
115
+
116
+ class RestrictionEnzyme
117
+
118
+ #require 'bio/util/restriction_enzyme/cut_symbol'
119
+
120
+ autoload :CutSymbol, 'bio/util/restriction_enzyme/cut_symbol'
121
+ autoload :StringFormatting, 'bio/util/restriction_enzyme/string_formatting'
122
+ autoload :SingleStrand, 'bio/util/restriction_enzyme/single_strand'
123
+ autoload :SingleStrandComplement, 'bio/util/restriction_enzyme/single_strand_complement'
124
+ autoload :DoubleStranded, 'bio/util/restriction_enzyme/double_stranded'
125
+ autoload :Analysis, 'bio/util/restriction_enzyme/analysis'
126
+ autoload :Range, 'bio/util/restriction_enzyme/range/sequence_range'
127
+
128
+ include CutSymbol
129
+ extend CutSymbol
130
+
131
+ # See Bio::RestrictionEnzyme::DoubleStranded.new for more information.
132
+ #
133
+ # ---
134
+ # *Arguments*
135
+ # * +users_enzyme_or_rebase_or_pattern+: One of three possible parameters: The name of an enzyme, a REBASE::EnzymeEntry object, or a nucleotide pattern with a cut mark.
136
+ # * +cut_locations+: The cut locations in enzyme index notation.
137
+ # *Returns*:: Bio::RestrictionEnzyme::DoubleStranded
138
+ #--
139
+ # Factory for DoubleStranded
140
+ #++
141
+ def self.new(users_enzyme_or_rebase_or_pattern, *cut_locations)
142
+ DoubleStranded.new(users_enzyme_or_rebase_or_pattern, *cut_locations)
143
+ end
144
+
145
+ # REBASE enzyme data information
146
+ #
147
+ # Returns a Bio::REBASE object loaded with all of the enzyme data on file.
148
+ #
149
+ # ---
150
+ # *Arguments*
151
+ # * _none_
152
+ # *Returns*:: Bio::REBASE
153
+ def self.rebase
154
+ enzymes_yaml_file = File.join(File.dirname(File.expand_path(__FILE__)), 'restriction_enzyme', 'enzymes.yaml')
155
+ @@rebase_enzymes ||= Bio::REBASE.load_yaml(enzymes_yaml_file)
156
+ @@rebase_enzymes
157
+ end
158
+
159
+ # Check if supplied name is the name of an available enzyme
160
+ #
161
+ # See Bio::REBASE.enzyme_name?
162
+ #
163
+ # ---
164
+ # *Arguments*
165
+ # * +name+: Enzyme name
166
+ # *Returns*:: +true+ _or_ +false+
167
+ def self.enzyme_name?( name )
168
+ self.rebase.enzyme_name?(name)
169
+ end
170
+
171
+ # See Bio::RestrictionEnzyme::Analysis.cut
172
+ def self.cut( sequence, enzymes )
173
+ Bio::RestrictionEnzyme::Analysis.cut( sequence, enzymes )
174
+ end
175
+
176
+ # A Bio::RestrictionEnzyme::Fragment is a DNA fragment composed of fused primary and
177
+ # complementary strands that would be found floating in solution after a full
178
+ # sequence is digested by one or more RestrictionEnzymes.
179
+ #
180
+ # You will notice that either the primary or complement strand will be
181
+ # padded with spaces to make them line up according to the original DNA
182
+ # configuration before they were cut.
183
+ #
184
+ # Example:
185
+ #
186
+ # Fragment 1:
187
+ # primary = "attaca"
188
+ # complement = " atga"
189
+ #
190
+ # Fragment 2:
191
+ # primary = "g "
192
+ # complement = "cta"
193
+ #
194
+ # View these with the +primary+ and +complement+ methods.
195
+ #
196
+ # Bio::RestrictionEnzyme::Fragment is a simple +Struct+ object.
197
+ #
198
+ # Note: unrelated to Bio::RestrictionEnzyme::Range::SequenceRange::Fragment
199
+ Fragment = Struct.new(:primary, :complement, :p_left, :p_right, :c_left, :c_right)
200
+
201
+ # Bio::RestrictionEnzyme::Fragments inherits from +Array+.
202
+ #
203
+ # Bio::RestrictionEnzyme::Fragments is a container for Fragment objects. It adds the
204
+ # methods +primary+ and +complement+ which returns an +Array+ of all
205
+ # respective strands from it's Fragment members in alphabetically sorted
206
+ # order. Note that it will
207
+ # not return duplicate items and does not return the spacing/padding
208
+ # that you would
209
+ # find by accessing the members directly.
210
+ #
211
+ # Example:
212
+ #
213
+ # primary = ['attaca', 'g']
214
+ # complement = ['atga', 'cta']
215
+ #
216
+ # Note: unrelated to Bio::RestrictionEnzyme::Range::SequenceRange::Fragments
217
+ class Fragments < Array
218
+ def primary; strip_and_sort(:primary); end
219
+ def complement; strip_and_sort(:complement); end
220
+
221
+ protected
222
+
223
+ def strip_and_sort( sym_strand )
224
+ self.map {|uf| uf.send( sym_strand ).tr(' ', '') }.sort
225
+ end
226
+ end
227
+ end # RestrictionEnzyme
228
+ end # Bio
@@ -0,0 +1,249 @@
1
+ #
2
+ # bio/util/restriction_enzyme/analysis.rb - Does the work of fragmenting the DNA from the enzymes
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: analysis.rb,v 1.20 2007/07/16 19:28:48 k Exp $
9
+ #
10
+
11
+ require 'bio/util/restriction_enzyme'
12
+ require 'bio/util/restriction_enzyme/analysis_basic'
13
+
14
+ module Bio
15
+ class RestrictionEnzyme
16
+
17
+ class Analysis
18
+
19
+ # See cut instance method
20
+ def self.cut( sequence, *args )
21
+ self.new.cut( sequence, *args )
22
+ end
23
+
24
+ # See main documentation for Bio::RestrictionEnzyme
25
+ #
26
+ #
27
+ # +cut+ takes into account
28
+ # permutations of cut variations based on competitiveness of enzymes for an
29
+ # enzyme cutsite or enzyme bindsite on a sequence.
30
+ #
31
+ # Example:
32
+ #
33
+ # FIXME add output
34
+ #
35
+ # Bio::RestrictionEnzyme::Analysis.cut('gaattc', 'EcoRI')
36
+ #
37
+ # _same as:_
38
+ #
39
+ # Bio::RestrictionEnzyme::Analysis.cut('gaattc', 'g^aattc')
40
+ # ---
41
+ # *Arguments*
42
+ # * +sequence+: +String+ kind of object that will be used as a nucleic acid sequence.
43
+ # * +args+: Series of enzyme names, enzymes sequences with cut marks, or RestrictionEnzyme objects.
44
+ # *Returns*:: Bio::RestrictionEnzyme::Fragments object populated with Bio::RestrictionEnzyme::Fragment objects. (Note: unrelated to Bio::RestrictionEnzyme::Range::SequenceRange::Fragments) or a +Symbol+ containing an error code
45
+ def cut( sequence, *args )
46
+ view_ranges = false
47
+
48
+ args.select { |i| i.class == Hash }.each do |hsh|
49
+ hsh.each do |key, value|
50
+ if key == :view_ranges
51
+ unless ( value.kind_of?(TrueClass) or value.kind_of?(FalseClass) )
52
+ raise ArgumentError, "view_ranges must be set to true or false, currently #{value.inspect}."
53
+ end
54
+ view_ranges = value
55
+ end
56
+ end
57
+ end
58
+
59
+ res = cut_and_return_by_permutations( sequence, *args )
60
+ return res if res.class == Symbol
61
+ # Format the fragments for the user
62
+ fragments_for_display( res, view_ranges )
63
+ end
64
+
65
+ #########
66
+ protected
67
+ #########
68
+
69
+ # See cut instance method
70
+ #
71
+ # ---
72
+ # *Arguments*
73
+ # * +sequence+: +String+ kind of object that will be used as a nucleic acid sequence.
74
+ # * +args+: Series of enzyme names, enzymes sequences with cut marks, or RestrictionEnzyme objects.
75
+ # May also supply a +Hash+ with the key ":max_permutations" to specificy how many permutations are allowed - a value of 0 indicates no permutations are allowed.
76
+ # *Returns*:: +Hash+ Keys are a permutation ID, values are SequenceRange objects that have cuts applied.
77
+ # _also_ may return the +Symbol+ ':sequence_empty', ':no_cuts_found', or ':too_many_permutations'
78
+ def cut_and_return_by_permutations( sequence, *args )
79
+ my_hash = {}
80
+ maximum_permutations = nil
81
+
82
+ hashes_in_args = args.select { |i| i.class == Hash }
83
+ args.delete_if { |i| i.class == Hash }
84
+ hashes_in_args.each do |hsh|
85
+ hsh.each do |key, value|
86
+ case key
87
+ when :max_permutations, 'max_permutations', :maximum_permutations, 'maximum_permutations'
88
+ maximum_permutations = value.to_i unless value == nil
89
+ when :view_ranges
90
+ else
91
+ raise ArgumentError, "Received key #{key.inspect} in argument - I only know the key ':max_permutations' and ':view_ranges' currently. Hash passed: #{hsh.inspect}"
92
+ end
93
+ end
94
+ end
95
+
96
+ if !sequence.kind_of?(String) or sequence.empty?
97
+ logger.warn "The supplied sequence is empty." if defined?(logger)
98
+ return :sequence_empty
99
+ end
100
+ sequence = Bio::Sequence::NA.new( sequence )
101
+
102
+ enzyme_actions, initial_cuts = create_enzyme_actions( sequence, *args )
103
+
104
+ if enzyme_actions.empty? and initial_cuts.empty?
105
+ logger.warn "This enzyme does not make any cuts on this sequence." if defined?(logger)
106
+ return :no_cuts_found
107
+ end
108
+
109
+ # * When enzyme_actions.size is equal to '1' that means there are no permutations.
110
+ # * If enzyme_actions.size is equal to '2' there is one
111
+ # permutation ("[0, 1]")
112
+ # * If enzyme_actions.size is equal to '3' there are two
113
+ # permutations ("[0, 1, 2]")
114
+ # * and so on..
115
+ if maximum_permutations and enzyme_actions.size > 1
116
+ if (enzyme_actions.size - 1) > maximum_permutations.to_i
117
+ logger.warn "More permutations than maximum, skipping. Found: #{enzyme_actions.size-1} Max: #{maximum_permutations.to_i}" if defined?(logger)
118
+ return :too_many_permutations
119
+ end
120
+ end
121
+
122
+ if enzyme_actions.size > 1
123
+ permutations = permute(enzyme_actions.size)
124
+
125
+ permutations.each do |permutation|
126
+ previous_cut_ranges = []
127
+ # Primary and complement strands are both measured from '0' to 'sequence.size-1' here
128
+ sequence_range = Bio::RestrictionEnzyme::Range::SequenceRange.new( 0, 0, sequence.size-1, sequence.size-1 )
129
+
130
+ # Add the cuts to the sequence_range from each enzyme_action contained
131
+ # in initial_cuts. These are the cuts that have no competition so are
132
+ # not subject to permutations.
133
+ initial_cuts.each do |enzyme_action|
134
+ enzyme_action.cut_ranges.each do |cut_range|
135
+ sequence_range.add_cut_range(cut_range)
136
+ end
137
+ end
138
+
139
+ permutation.each do |id|
140
+ enzyme_action = enzyme_actions[id]
141
+
142
+ # conflict is false if the current enzyme action may cut in it's range.
143
+ # conflict is true if it cannot due to a previous enzyme action making
144
+ # a cut where this enzyme action needs a whole recognition site.
145
+ conflict = false
146
+
147
+ # If current size of enzyme_action overlaps with previous cut_range, don't cut
148
+ # note that the enzyme action may fall in the middle of a previous enzyme action
149
+ # so all cut locations must be checked that would fall underneath.
150
+ previous_cut_ranges.each do |cut_range|
151
+ next unless cut_range.class == Bio::RestrictionEnzyme::Range::VerticalCutRange # we aren't concerned with horizontal cuts
152
+ previous_cut_left = cut_range.range.first
153
+ previous_cut_right = cut_range.range.last
154
+
155
+ # Keep in mind:
156
+ # * The cut location is to the immediate right of the base located at the index.
157
+ # ex: at^gc -- the cut location is at index 1
158
+ # * The enzyme action location is located at the base of the index.
159
+ # ex: atgc -- 0 => 'a', 1 => 't', 2 => 'g', 3 => 'c'
160
+ # method create_enzyme_actions has similar commentary if interested
161
+ if (enzyme_action.right <= previous_cut_left) or
162
+ (enzyme_action.left > previous_cut_right) or
163
+ (enzyme_action.left > previous_cut_left and enzyme_action.right <= previous_cut_right) # in between cuts
164
+ # no conflict
165
+ else
166
+ conflict = true
167
+ end
168
+ end
169
+
170
+ next if conflict == true
171
+ enzyme_action.cut_ranges.each { |cut_range| sequence_range.add_cut_range(cut_range) }
172
+ previous_cut_ranges += enzyme_action.cut_ranges
173
+ end # permutation.each
174
+
175
+ # Fill in the source sequence for sequence_range so it knows what bases
176
+ # to use
177
+ sequence_range.fragments.primary = sequence
178
+ sequence_range.fragments.complement = sequence.forward_complement
179
+ my_hash[permutation] = sequence_range
180
+ end # permutations.each
181
+
182
+ else # if enzyme_actions.size == 1
183
+ # no permutations, just do it
184
+ sequence_range = Bio::RestrictionEnzyme::Range::SequenceRange.new( 0, 0, sequence.size-1, sequence.size-1 )
185
+ initial_cuts.each { |enzyme_action| enzyme_action.cut_ranges.each { |cut_range| sequence_range.add_cut_range(cut_range) } }
186
+ sequence_range.fragments.primary = sequence
187
+ sequence_range.fragments.complement = sequence.forward_complement
188
+ my_hash[0] = sequence_range
189
+ end
190
+
191
+ my_hash
192
+ end
193
+
194
+
195
+ # Returns permutation orders for a given number of elements.
196
+ #
197
+ # Examples:
198
+ # permute(0) # => [[0]]
199
+ # permute(1) # => [[0]]
200
+ # permute(2) # => [[1, 0], [0, 1]]
201
+ # permute(3) # => [[2, 1, 0], [2, 0, 1], [1, 2, 0], [0, 2, 1], [1, 0, 2], [0, 1, 2]]
202
+ # permute(4) # => [[3, 2, 1, 0],
203
+ # [3, 2, 0, 1],
204
+ # [3, 1, 2, 0],
205
+ # [3, 0, 2, 1],
206
+ # [3, 1, 0, 2],
207
+ # [3, 0, 1, 2],
208
+ # [2, 3, 1, 0],
209
+ # [2, 3, 0, 1],
210
+ # [1, 3, 2, 0],
211
+ # [0, 3, 2, 1],
212
+ # [1, 3, 0, 2],
213
+ # [0, 3, 1, 2],
214
+ # [2, 1, 3, 0],
215
+ # [2, 0, 3, 1],
216
+ # [1, 2, 3, 0],
217
+ # [0, 2, 3, 1],
218
+ # [1, 0, 3, 2],
219
+ # [0, 1, 3, 2],
220
+ # [2, 1, 0, 3],
221
+ # [2, 0, 1, 3],
222
+ # [1, 2, 0, 3],
223
+ # [0, 2, 1, 3],
224
+ # [1, 0, 2, 3],
225
+ # [0, 1, 2, 3]]
226
+ #
227
+ # ---
228
+ # *Arguments*
229
+ # * +count+: +Number+ of different elements to be permuted
230
+ # * +permutations+: ignore - for the recursive algorithm
231
+ # *Returns*:: +Array+ of +Array+ objects with different possible permutation orders. See examples.
232
+ def permute(count, permutations = [[0]])
233
+ return permutations if count <= 1
234
+ new_arrays = []
235
+ new_array = []
236
+
237
+ (permutations[0].size + 1).times do |n|
238
+ new_array.clear
239
+ permutations.each { |a| new_array << a.dup }
240
+ new_array.each { |e| e.insert(n, permutations[0].size) }
241
+ new_arrays += new_array
242
+ end
243
+
244
+ permute(count-1, new_arrays)
245
+ end
246
+
247
+ end # Analysis
248
+ end # RestrictionEnzyme
249
+ end # Bio