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,597 @@
1
+ #
2
+ # = bio/db/prosite.rb - PROSITE database class
3
+ #
4
+ # Copyright:: Copyright (C) 2001 Toshiaki Katayama <k@bioruby.org>
5
+ # Licence:: Ruby's
6
+ #
7
+ # $Id: prosite.rb,v 0.16 2006/09/19 06:03:51 k Exp $
8
+ #
9
+
10
+ require 'bio/db'
11
+
12
+ module Bio
13
+
14
+ class PROSITE < EMBLDB
15
+
16
+ # Delimiter
17
+ DELIMITER = "\n//\n"
18
+
19
+ # Delimiter
20
+ RS = DELIMITER
21
+
22
+ # Bio::DB API
23
+ TAGSIZE = 5
24
+
25
+
26
+ def initialize(entry)
27
+ super(entry, TAGSIZE)
28
+ end
29
+
30
+
31
+ # ID Identification (Begins each entry; 1 per entry)
32
+ #
33
+ # ID ENTRY_NAME; ENTRY_TYPE. (ENTRY_TYPE : PATTERN, MATRIX, RULE)
34
+ #
35
+ # Returns
36
+ def name
37
+ unless @data['ID']
38
+ @data['ID'], @data['TYPE'] = fetch('ID').chomp('.').split('; ')
39
+ end
40
+ @data['ID']
41
+ end
42
+
43
+ # Returns
44
+ def division
45
+ unless @data['TYPE']
46
+ name
47
+ end
48
+ @data['TYPE']
49
+ end
50
+
51
+
52
+ # AC Accession number (1 per entry)
53
+ #
54
+ # AC PSnnnnn;
55
+ #
56
+ # Returns
57
+ def ac
58
+ unless @data['AC']
59
+ @data['AC'] = fetch('AC').chomp(';')
60
+ end
61
+ @data['AC']
62
+ end
63
+
64
+ alias entry_id ac
65
+
66
+
67
+ # DT Date (1 per entry)
68
+ #
69
+ # DT MMM-YYYY (CREATED); MMM-YYYY (DATA UPDATE); MMM-YYYY (INFO UPDATE).
70
+ #
71
+ # Returns
72
+ def dt
73
+ field_fetch('DT')
74
+ end
75
+
76
+ alias date dt
77
+
78
+
79
+ # DE Short description (1 per entry)
80
+ #
81
+ # DE Description.
82
+ #
83
+ # Returns
84
+ def de
85
+ field_fetch('DE')
86
+ end
87
+
88
+ alias definition de
89
+
90
+
91
+ # PA Pattern (>=0 per entry)
92
+ #
93
+ # see - pa2re method
94
+ #
95
+ # Returns
96
+ def pa
97
+ field_fetch('PA')
98
+ @data['PA'] = fetch('PA') unless @data['PA']
99
+ @data['PA'].gsub!(/\s+/, '') if @data['PA']
100
+ @data['PA']
101
+ end
102
+
103
+ alias pattern pa
104
+
105
+
106
+ # MA Matrix/profile (>=0 per entry)
107
+ #
108
+ # see - ma2re method
109
+ #
110
+ # Returns
111
+ def ma
112
+ field_fetch('MA')
113
+ end
114
+
115
+ alias profile ma
116
+
117
+
118
+ # RU Rule (>=0 per entry)
119
+ #
120
+ # RU Rule_Description.
121
+ #
122
+ # The rule is described in ordinary English and is free-format.
123
+ #
124
+ # Returns
125
+ def ru
126
+ field_fetch('RU')
127
+ end
128
+
129
+ alias rule ru
130
+
131
+
132
+ # NR Numerical results (>=0 per entry)
133
+ #
134
+ # - SWISS-PROT scan statistics of true and false positives/negatives
135
+ #
136
+ # /RELEASE SWISS-PROT release number and total number of sequence
137
+ # entries in that release.
138
+ # /TOTAL Total number of hits in SWISS-PROT.
139
+ # /POSITIVE Number of hits on proteins that are known to belong to the
140
+ # set in consideration.
141
+ # /UNKNOWN Number of hits on proteins that could possibly belong to
142
+ # the set in consideration.
143
+ # /FALSE_POS Number of false hits (on unrelated proteins).
144
+ # /FALSE_NEG Number of known missed hits.
145
+ # /PARTIAL Number of partial sequences which belong to the set in
146
+ # consideration, but which are not hit by the pattern or
147
+ # profile because they are partial (fragment) sequences.
148
+ #
149
+ # Returns
150
+ def nr
151
+ unless @data['NR']
152
+ hash = {} # temporal hash
153
+ fetch('NR').scan(%r{/(\S+)=([^;]+);}).each do |k, v|
154
+ if v =~ /^(\d+)\((\d+)\)$/
155
+ hits = $1.to_i # the number of hits
156
+ seqs = $2.to_i # the number of sequences
157
+ v = [hits, seqs]
158
+ elsif v =~ /([\d\.]+),(\d+)/
159
+ sprel = $1 # the number of SWISS-PROT release
160
+ spseq = $2.to_i # the number of SWISS-PROT sequences
161
+ v = [sprel, spseq]
162
+ else
163
+ v = v.to_i
164
+ end
165
+ hash[k] = v
166
+ end
167
+ @data['NR'] = hash
168
+ end
169
+ @data['NR']
170
+ end
171
+
172
+ alias statistics nr
173
+
174
+ # Returns
175
+ def release
176
+ statistics['RELEASE']
177
+ end
178
+
179
+ # Returns
180
+ def swissprot_release_number
181
+ release.first
182
+ end
183
+
184
+ # Returns
185
+ def swissprot_release_sequences
186
+ release.last
187
+ end
188
+
189
+ # Returns
190
+ def total
191
+ statistics['TOTAL']
192
+ end
193
+
194
+ # Returns
195
+ def total_hits
196
+ total.first
197
+ end
198
+
199
+ # Returns
200
+ def total_sequences
201
+ total.last
202
+ end
203
+
204
+ # Returns
205
+ def positive
206
+ statistics['POSITIVE']
207
+ end
208
+
209
+ # Returns
210
+ def positive_hits
211
+ positive.first
212
+ end
213
+
214
+ # Returns
215
+ def positive_sequences
216
+ positive.last
217
+ end
218
+
219
+ # Returns
220
+ def unknown
221
+ statistics['UNKNOWN']
222
+ end
223
+
224
+ # Returns
225
+ def unknown_hits
226
+ unknown.first
227
+ end
228
+
229
+ # Returns
230
+ def unknown_sequences
231
+ unknown.last
232
+ end
233
+
234
+ # Returns
235
+ def false_pos
236
+ statistics['FALSE_POS']
237
+ end
238
+
239
+ # Returns
240
+ def false_positive_hits
241
+ false_pos.first
242
+ end
243
+
244
+ # Returns
245
+ def false_positive_sequences
246
+ false_pos.last
247
+ end
248
+
249
+ # Returns
250
+ def false_neg
251
+ statistics['FALSE_NEG']
252
+ end
253
+ alias false_negative_hits false_neg
254
+
255
+ # Returns
256
+ def partial
257
+ statistics['PARTIAL']
258
+ end
259
+
260
+
261
+ # CC Comments (>=0 per entry)
262
+ #
263
+ # CC /QUALIFIER=data; /QUALIFIER=data; .......
264
+ #
265
+ # /TAXO-RANGE Taxonomic range.
266
+ # /MAX-REPEAT Maximum known number of repetitions of the pattern in a
267
+ # single protein.
268
+ # /SITE Indication of an `interesting' site in the pattern.
269
+ # /SKIP-FLAG Indication of an entry that can be, in some cases, ignored
270
+ # by a program (because it is too unspecific).
271
+ #
272
+ # Returns
273
+ def cc
274
+ unless @data['CC']
275
+ hash = {} # temporal hash
276
+ fetch('CC').scan(%r{/(\S+)=([^;]+);}).each do |k, v|
277
+ hash[k] = v
278
+ end
279
+ @data['CC'] = hash
280
+ end
281
+ @data['CC']
282
+ end
283
+
284
+ alias comment cc
285
+
286
+ # Returns
287
+ def taxon_range(expand = nil)
288
+ range = comment['TAXO-RANGE']
289
+ if range and expand
290
+ expand = []
291
+ range.scan(/./) do |x|
292
+ case x
293
+ when 'A'; expand.push('archaebacteria')
294
+ when 'B'; expand.push('bacteriophages')
295
+ when 'E'; expand.push('eukaryotes')
296
+ when 'P'; expand.push('prokaryotes')
297
+ when 'V'; expand.push('eukaryotic viruses')
298
+ end
299
+ end
300
+ range = expand
301
+ end
302
+ return range
303
+ end
304
+
305
+ # Returns
306
+ def max_repeat
307
+ comment['MAX-REPEAT'].to_i
308
+ end
309
+
310
+ # Returns
311
+ def site
312
+ if comment['SITE']
313
+ num, desc = comment['SITE'].split(',')
314
+ end
315
+ return [num.to_i, desc]
316
+ end
317
+
318
+ # Returns
319
+ def skip_flag
320
+ if comment['SKIP-FLAG'] == 'TRUE'
321
+ return true
322
+ end
323
+ end
324
+
325
+
326
+ # DR Cross-references to SWISS-PROT (>=0 per entry)
327
+ #
328
+ # DR AC_NB, ENTRY_NAME, C; AC_NB, ENTRY_NAME, C; AC_NB, ENTRY_NAME, C;
329
+ #
330
+ # - `AC_NB' is the SWISS-PROT primary accession number of the entry to
331
+ # which reference is being made.
332
+ # - `ENTRY_NAME' is the SWISS-PROT entry name.
333
+ # - `C' is a one character flag that can be one of the following:
334
+ #
335
+ # T For a true positive.
336
+ # N For a false negative; a sequence which belongs to the set under
337
+ # consideration, but which has not been picked up by the pattern or
338
+ # profile.
339
+ # P For a `potential' hit; a sequence that belongs to the set under
340
+ # consideration, but which was not picked up because the region(s) that
341
+ # are used as a 'fingerprint' (pattern or profile) is not yet available
342
+ # in the data bank (partial sequence).
343
+ # ? For an unknown; a sequence which possibly could belong to the set under
344
+ # consideration.
345
+ # F For a false positive; a sequence which does not belong to the set in
346
+ # consideration.
347
+ #
348
+ # Returns
349
+ def dr
350
+ unless @data['DR']
351
+ hash = {} # temporal hash
352
+ if fetch('DR')
353
+ fetch('DR').scan(/(\w+)\s*, (\w+)\s*, (.);/).each do |a, e, c|
354
+ hash[a] = [e, c] # SWISS-PROT : accession, entry, true/false
355
+ end
356
+ end
357
+ @data['DR'] = hash
358
+ end
359
+ @data['DR']
360
+ end
361
+
362
+ alias sp_xref dr
363
+
364
+ # Returns
365
+ def list_xref(flag, by_name = nil)
366
+ ary = []
367
+ sp_xref.each do |sp_acc, value|
368
+ if value[1] == flag
369
+ if by_name
370
+ sp_name = value[0]
371
+ ary.push(sp_name)
372
+ else
373
+ ary.push(sp_acc)
374
+ end
375
+ end
376
+ end
377
+ return ary
378
+ end
379
+
380
+ # Returns
381
+ def list_truepositive(by_name = nil)
382
+ list_xref('T', by_name)
383
+ end
384
+
385
+ # Returns
386
+ def list_falsenegative(by_name = nil)
387
+ list_xref('F', by_name)
388
+ end
389
+
390
+ # Returns
391
+ def list_falsepositive(by_name = nil)
392
+ list_xref('P', by_name)
393
+ end
394
+
395
+ # Returns
396
+ def list_potentialhit(by_name = nil)
397
+ list_xref('P', by_name)
398
+ end
399
+
400
+ # Returns
401
+ def list_unknown(by_name = nil)
402
+ list_xref('?', by_name)
403
+ end
404
+
405
+
406
+ # 3D Cross-references to PDB (>=0 per entry)
407
+ #
408
+ # 3D name; [name2;...]
409
+ #
410
+ # Returns
411
+ def pdb_xref
412
+ unless @data['3D']
413
+ @data['3D'] = fetch('3D').split(/; */)
414
+ end
415
+ @data['3D']
416
+ end
417
+
418
+
419
+ # DO Pointer to the documentation file (1 per entry)
420
+ #
421
+ # DO PDOCnnnnn;
422
+ #
423
+ # Returns
424
+ def pdoc_xref
425
+ @data['DO'] = fetch('DO').chomp(';')
426
+ end
427
+
428
+
429
+ ### prosite pattern to regular expression
430
+ #
431
+ # prosite/prosuser.txt:
432
+ #
433
+ # The PA (PAttern) lines contains the definition of a PROSITE pattern. The
434
+ # patterns are described using the following conventions:
435
+ #
436
+ # 0) The standard IUPAC one-letter codes for the amino acids are used.
437
+ # 0) Ambiguities are indicated by listing the acceptable amino acids for a
438
+ # given position, between square parentheses `[ ]'. For example: [ALT]
439
+ # stands for Ala or Leu or Thr.
440
+ # 1) A period ends the pattern.
441
+ # 2) When a pattern is restricted to either the N- or C-terminal of a
442
+ # sequence, that pattern either starts with a `<' symbol or respectively
443
+ # ends with a `>' symbol.
444
+ # 3) Ambiguities are also indicated by listing between a pair of curly
445
+ # brackets `{ }' the amino acids that are not accepted at a given
446
+ # position. For example: {AM} stands for any amino acid except Ala and
447
+ # Met.
448
+ # 4) Repetition of an element of the pattern can be indicated by following
449
+ # that element with a numerical value or a numerical range between
450
+ # parenthesis. Examples: x(3) corresponds to x-x-x, x(2,4) corresponds to
451
+ # x-x or x-x-x or x-x-x-x.
452
+ # 5) The symbol `x' is used for a position where any amino acid is accepted.
453
+ # 6) Each element in a pattern is separated from its neighbor by a `-'.
454
+ #
455
+ # Examples:
456
+ #
457
+ # PA [AC]-x-V-x(4)-{ED}.
458
+ #
459
+ # This pattern is translated as: [Ala or Cys]-any-Val-any-any-any-any-{any
460
+ # but Glu or Asp}
461
+ #
462
+ # PA <A-x-[ST](2)-x(0,1)-V.
463
+ #
464
+ # This pattern, which must be in the N-terminal of the sequence (`<'), is
465
+ # translated as: Ala-any-[Ser or Thr]-[Ser or Thr]-(any or none)-Val
466
+ #
467
+ def self.pa2re(pattern)
468
+ pattern.gsub!(/\s/, '') # remove white spaces
469
+ pattern.sub!(/\.$/, '') # (1) remove trailing '.'
470
+ pattern.sub!(/^</, '^') # (2) restricted to the N-terminal : `<'
471
+ pattern.sub!(/>$/, '$') # (2) restricted to the C-terminal : `>'
472
+ pattern.gsub!(/\{(\w+)\}/) { |m|
473
+ '[^' + $1 + ']' # (3) not accepted at a given position : '{}'
474
+ }
475
+ pattern.gsub!(/\(([\d,]+)\)/) { |m|
476
+ '{' + $1 + '}' # (4) repetition of an element : (n), (n,m)
477
+ }
478
+ pattern.tr!('x', '.') # (5) any amino acid is accepted : 'x'
479
+ pattern.tr!('-', '') # (6) each element is separated by a '-'
480
+ Regexp.new(pattern, Regexp::IGNORECASE)
481
+ end
482
+
483
+ def pa2re(pattern)
484
+ self.class.pa2re(pattern)
485
+ end
486
+
487
+ def re
488
+ self.class.pa2re(self.pa)
489
+ end
490
+
491
+
492
+ ### prosite profile to regular expression
493
+ #
494
+ # prosite/profile.txt:
495
+ #
496
+ # Returns
497
+ def ma2re(matrix)
498
+ raise NotImplementedError
499
+ end
500
+
501
+ end # PROSITE
502
+
503
+ end # Bio
504
+
505
+
506
+ if __FILE__ == $0
507
+
508
+ begin
509
+ require 'pp'
510
+ alias p pp
511
+ rescue LoadError
512
+ end
513
+
514
+ ps = Bio::PROSITE.new(ARGF.read)
515
+
516
+ list = %w(
517
+ name
518
+ division
519
+ ac
520
+ entry_id
521
+ dt
522
+ date
523
+ de
524
+ definition
525
+ pa
526
+ pattern
527
+ ma
528
+ profile
529
+ ru
530
+ rule
531
+ nr
532
+ statistics
533
+ release
534
+ swissprot_release_number
535
+ swissprot_release_sequences
536
+ total
537
+ total_hits
538
+ total_sequences
539
+ positive
540
+ positive_hits
541
+ positive_sequences
542
+ unknown
543
+ unknown_hits
544
+ unknown_sequences
545
+ false_pos
546
+ false_positive_hits
547
+ false_positive_sequences
548
+ false_neg
549
+ false_negative_hits
550
+ partial
551
+ cc
552
+ comment
553
+ max_repeat
554
+ site
555
+ skip_flag
556
+ dr
557
+ sp_xref
558
+ pdb_xref
559
+ pdoc_xref
560
+ )
561
+
562
+ list.each do |method|
563
+ puts ">>> #{method}"
564
+ p ps.send(method)
565
+ end
566
+
567
+ puts ">>> taxon_range"
568
+ p ps.taxon_range
569
+ puts ">>> taxon_range(expand)"
570
+ p ps.taxon_range(true)
571
+
572
+ puts ">>> list_truepositive"
573
+ p ps.list_truepositive
574
+ puts ">>> list_truepositive(by_name)"
575
+ p ps.list_truepositive(true)
576
+
577
+ puts ">>> list_falsenegative"
578
+ p ps.list_falsenegative
579
+ puts ">>> list_falsenegative(by_name)"
580
+ p ps.list_falsenegative(true)
581
+
582
+ puts ">>> list_falsepositive"
583
+ p ps.list_falsepositive
584
+ puts ">>> list_falsepositive(by_name)"
585
+ p ps.list_falsepositive(true)
586
+
587
+ puts ">>> list_potentialhit"
588
+ p ps.list_potentialhit
589
+ puts ">>> list_potentialhit(by_name)"
590
+ p ps.list_potentialhit(true)
591
+
592
+ puts ">>> list_unknown"
593
+ p ps.list_unknown
594
+ puts ">>> list_unknown(by_name)"
595
+ p ps.list_unknown(true)
596
+
597
+ end