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,267 @@
1
+ #
2
+ # = bio/appl/targetp/report.rb - TargetP report class
3
+ #
4
+ # Copyright:: Copyright (C) 2003
5
+ # Mitsuteru C. Nakao <n@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: report.rb,v 1.9 2007/04/05 23:35:40 trevor Exp $
9
+ #
10
+ # == Description
11
+ #
12
+ # TargetP class for http://www.cbs.dtu.dk/services/TargetP/
13
+ #
14
+ # == Example
15
+ # == References
16
+ #
17
+
18
+ module Bio
19
+
20
+
21
+ class TargetP
22
+
23
+ # = A parser and container class for TargetP report.
24
+ class Report
25
+
26
+ # Delimiter
27
+ DELIMITER = "\n \n"
28
+
29
+ # Delimiter
30
+ RS = DELIMITER
31
+
32
+ # Returns the program version.
33
+ attr_reader :version
34
+
35
+ # Returns the query sequences.
36
+ attr_reader :query_sequences
37
+
38
+ # Returns 'included' or 'not included'.
39
+ # If the value is 'included', Bio::TargetP::Report#prediction['TPlen']
40
+ # contains a valid value.
41
+ attr_reader :cleavage_site_prediction
42
+
43
+ # Returns ``PLANT'' or ``NON-PLANT'' networks.
44
+ attr_reader :networks
45
+
46
+ # Returns a Hash of the prediction results.
47
+ #
48
+ # {"Name"=>"MGI_2141503", "Loc."=>"_", "RC"=>3, "SP"=>0.271,
49
+ # "other"=>0.844, "mTP"=>0.161, "cTP"=>0.031, "Length"=>640}
50
+ #
51
+ # Keys: Name, Len, SP, mTP, other, Loc, RC
52
+ # Optional key for PLANT networks: cTP
53
+ # Optional key in Cleavage site: TPlen
54
+ #
55
+ # Use 'Length' and 'Loc.' instead of 'Len' and 'Loc' respectively
56
+ # for the version 1.0 report.
57
+ attr_reader :prediction
58
+
59
+ # Returns a Hash of cutoff values.
60
+ attr_reader :cutoff
61
+
62
+ # Sets output report.
63
+ def initialize(str)
64
+ @version = nil
65
+ @query_sequences = nil
66
+ @cleavage_site_prediction = nil
67
+ @networks = nil
68
+ @prediction = {}
69
+ @cutoff = {}
70
+ parse_entry(str)
71
+ end
72
+
73
+ alias pred prediction
74
+
75
+ # Returns the name of query sequence.
76
+ def name
77
+ @prediction['Name']
78
+ end
79
+ alias entry_id name
80
+
81
+ # Returns length of query sequence.
82
+ def query_len
83
+ if @prediction['Len']
84
+ @prediction['Len']
85
+ else
86
+ @prediction['Length']
87
+ end
88
+ end
89
+ alias length query_len
90
+
91
+ # Returns the predicted localization signal:
92
+ # 1. S (Signal peptide)
93
+ # 2. M (mTP)
94
+ # 3. C (cTP)
95
+ # 4. *
96
+ # 5. _
97
+ def loc
98
+ if @prediction['Loc']
99
+ @prediction['Loc'] # version 1.0
100
+ else
101
+ @prediction['Loc.'] # version 1.1
102
+ end
103
+ end
104
+
105
+ # Returns RC.
106
+ def rc
107
+ @prediction['RC']
108
+ end
109
+
110
+ private
111
+
112
+ #
113
+ def parse_entry(str)
114
+ labels = []
115
+ cutoff = []
116
+ values = []
117
+
118
+ str.split("\n").each {|line|
119
+ case line
120
+ when /targetp v(\d+.\d+)/,/T A R G E T P\s+(\d+.\d+)/
121
+ @version = $1
122
+
123
+ when /Number of (query|input) sequences:\s+(\d+)/
124
+ @query_sequences = $1.to_i
125
+
126
+ when /Cleavage site predictions (\w.+)\./
127
+ @cleavage_site_prediction = $1
128
+
129
+ when /Using (\w+.+) networks/
130
+ @networks = $1
131
+ when /Name +Len/
132
+ labels = line.sub(/^\#\s*/,'').split(/\s+/)
133
+
134
+ when /cutoff/
135
+ cutoff = line.split(/\s+/)
136
+ cutoff.shift
137
+ labels[2, 4].each_with_index {|loc, i|
138
+ next if loc =~ /Loc/
139
+ @cutoff[loc] = cutoff[i].to_f
140
+ }
141
+ when /-----$/
142
+ when /^ +$/, ''
143
+ else
144
+ values = line.sub(/^\s*/,'').split(/\s+/)
145
+ values.each_with_index {|val, i|
146
+ label = labels[i]
147
+ case label
148
+ when 'RC', /Len/
149
+ val = val.to_i
150
+ when 'SP','mTP','cTP','other'
151
+ val = val.to_f
152
+ end
153
+ @prediction[label] = val
154
+ }
155
+ end
156
+ }
157
+ end
158
+
159
+ end # class Report
160
+
161
+ end # class TargetP
162
+
163
+ end # moudel Bio
164
+
165
+
166
+
167
+ if __FILE__ == $0
168
+
169
+ begin
170
+ require 'pp'
171
+ alias p pp
172
+ rescue LoadError
173
+ end
174
+
175
+
176
+ plant = <<HOGE
177
+
178
+ ### ### ### T A R G E T P 1.0 prediction results ### ### ###
179
+
180
+ # Number of input sequences: 1
181
+ # Cleavage site predictions not included.
182
+ # Using PLANT networks.
183
+
184
+ # Name Length cTP mTP SP other Loc. RC
185
+ #----------------------------------------------------------------------------------
186
+ MGI_2141503 640 0.031 0.161 0.271 0.844 _ 3
187
+ #----------------------------------------------------------------------------------
188
+ # cutoff 0.00 0.00 0.00 0.00
189
+
190
+
191
+ HOGE
192
+
193
+ plant_c = <<HOGE
194
+
195
+ ### ### ### T A R G E T P 1.0 prediction results ### ### ###
196
+
197
+ # Number of input sequences: 1
198
+ # Cleavage site predictions included.
199
+ # Using PLANT networks.
200
+
201
+ # Name Length cTP mTP SP other Loc. RC TPlen
202
+ #----------------------------------------------------------------------------------
203
+ MGI_2141503 640 0.031 0.161 0.271 0.844 _ 3 -
204
+ #----------------------------------------------------------------------------------
205
+ # cutoff 0.00 0.00 0.00 0.00
206
+
207
+
208
+
209
+ HOGE
210
+
211
+ non_plant_c = <<HOGE
212
+
213
+ ### ### ### T A R G E T P 1.0 prediction results ### ### ###
214
+
215
+ # Number of input sequences: 1
216
+ # Cleavage site predictions included.
217
+ # Using NON-PLANT networks.
218
+
219
+ # Name Length mTP SP other Loc. RC TPlen
220
+ #--------------------------------------------------------------------------
221
+ MGI_96083 2187 0.292 0.053 0.746 _ 3 -
222
+ #--------------------------------------------------------------------------
223
+ # cutoff 0.00 0.00 0.00
224
+
225
+
226
+
227
+ HOGE
228
+
229
+
230
+ def hoge(e)
231
+ puts e
232
+ ent = Bio::TargetP::Report.new(e)
233
+ pp ent
234
+
235
+ p [:entry_id, ent.entry_id]
236
+ p [:name, ent.name]
237
+ p [:version, ent.version]
238
+ p [:query_sequnces, ent.query_sequences]
239
+ p [:cleavage_site_prediction, ent.cleavage_site_prediction]
240
+ p [:networks, ent.networks]
241
+ p [:query_len, ent.query_len]
242
+ p [:prediction, ent.prediction]
243
+ p [:pred_Name, ent.pred['Name']]
244
+ p [:pred_SP, ent.pred['SP']]
245
+ p [:pred_mTP, ent.pred['mTP']]
246
+ p [:cutoff, ent.cutoff]
247
+ p [:loc, ent.loc]
248
+ p [:rc, ent.rc]
249
+
250
+ puts '=='
251
+ end
252
+
253
+
254
+ [plant, plant_c, non_plant_c].each {|e|
255
+ hoge(e)
256
+ }
257
+
258
+ exit if ARGV.size == 0
259
+
260
+ while ent = $<.gets(Bio::TargetP::Report::DELIMITER)
261
+ hoge(ent)
262
+ end
263
+
264
+ end
265
+
266
+
267
+
@@ -0,0 +1,55 @@
1
+ #
2
+ # = bio/appl/tcoffee.rb - T-Coffee application wrapper class
3
+ #
4
+ # Copyright:: Copyright (C) 2006-2007
5
+ # Jeffrey Blakeslee and John Conery University of Oregon <jeffb@uoregon.edu>
6
+ # Naohisa Goto <ng@bioruby.org>
7
+ # License:: The Ruby License
8
+ #
9
+ # $Id: tcoffee.rb,v 1.1 2007/07/16 12:25:50 ngoto Exp $
10
+ #
11
+ # Bio::Tcoffee is a wrapper class to execute T-Coffee.
12
+ #
13
+ # == References
14
+ #
15
+ # * http://www.tcoffee.org/Projects_home_page/t_coffee_home_page.html
16
+ # * Notredame, C., Higgins, D.G. and Heringa, J.
17
+ # T-Coffee: A novel method for fast and accurate multiple sequence
18
+ # alignment. J. Mol. Biol. 302: 205-217, 2000.
19
+ #
20
+
21
+
22
+ module Bio
23
+
24
+ # Bio::Tcoffee is a wrapper class to execute t-coffee.
25
+ #
26
+ # Please refer documents in bio/apple/tcoffee.rb for references.
27
+ class Tcoffee < Bio::Alignment::FactoryTemplate::FileInFileOutWithTree
28
+
29
+ # default program name
30
+ DEFAULT_PROGRAM = 't_coffee'.freeze
31
+
32
+ # default report parser
33
+ DEFAULT_PARSER = Bio::ClustalW::Report
34
+
35
+ private
36
+ # generates options specifying input filename.
37
+ # returns an array of string
38
+ def _option_input_file(fn)
39
+ [ '-infile', fn ]
40
+ end
41
+
42
+ # generates options specifying output filename.
43
+ # returns an array of string
44
+ def _option_output_file(fn)
45
+ [ '-outfile', fn ]
46
+ end
47
+
48
+ # generates options specifying output filename.
49
+ # returns an array of string
50
+ def _option_output_dndfile(fn)
51
+ [ '-newtree', fn ]
52
+ end
53
+ end #class TCoffee
54
+
55
+ end #module Bio
@@ -0,0 +1,222 @@
1
+ #
2
+ # = bio/appl/tmhmm/report.rb - TMHMM report class
3
+ #
4
+ # Copyright:: Copyright (C) 2003
5
+ # Mitsuteru C. Nakao <n@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: report.rb,v 1.8 2007/04/05 23:35:40 trevor Exp $
9
+ #
10
+ # == Description
11
+ #
12
+ #
13
+ # == Example
14
+ # == References
15
+ #
16
+
17
+ module Bio
18
+
19
+ # = TMHMM class for http://www.cbs.dtu.dk/services/TMHMM/
20
+ class TMHMM
21
+
22
+ # Splits multiple reports into a report entry.
23
+ def TMHMM.reports(data)
24
+ entry = []
25
+ ent_state = ''
26
+ data.each_line do |line|
27
+ if /^\#/ =~ line
28
+ if ent_state == 'next'
29
+ ent_state = 'entry'
30
+ elsif ent_state == 'tmh'
31
+ ent_state = 'next'
32
+ end
33
+ else
34
+ ent_state = 'tmh'
35
+ end
36
+
37
+ if ent_state != 'next'
38
+ entry << line
39
+ else
40
+ if block_given?
41
+ yield Bio::TMHMM::Report.new(entry)
42
+ else
43
+ Bio::TMHMM::Report.new(entry)
44
+ end
45
+ entry = [line]
46
+ end
47
+ end
48
+
49
+ if block_given?
50
+ yield Bio::TMHMM::Report.new(entry)
51
+ else
52
+ Bio::TMHMM::Report.new(entry)
53
+ end
54
+ end
55
+
56
+ # = TMHMM report parser class.
57
+ class Report
58
+
59
+ # Returns an Array of Bio::TMHMM::TMH.
60
+ attr_reader :tmhs
61
+
62
+ # Returns
63
+ attr_reader :entry_id
64
+
65
+ # Returns
66
+ attr_reader :query_len
67
+
68
+ # Returns
69
+ attr_reader :predicted_tmhs
70
+
71
+ # Returns
72
+ attr_reader :exp_aas_in_tmhs
73
+
74
+ # Returns
75
+ attr_reader :exp_first_60aa
76
+
77
+ # Returns
78
+ attr_reader :total_prob_of_N_in
79
+
80
+ alias length query_len
81
+
82
+ #
83
+ def initialize(entry = nil)
84
+ parse_header(entry)
85
+ @tmhs = parse_tmhs(entry)
86
+ end
87
+
88
+ # Returns an Array of Bio::TMHMM::TMH including only "TMhelix".
89
+ def helix
90
+ @tmhs.map {|t| t if t.status == 'TMhelix' }.compact
91
+ end
92
+
93
+ #
94
+ def to_s
95
+ [
96
+ [
97
+ ["Length:", @query_len],
98
+ ["Number of predicted TMHs:", @predicted_tmhs],
99
+ ["Exp number of AAs in THMs:", @exp_aas_in_tmhs],
100
+ ["Exp number, first 60 AAs:", @exp_first_60aa],
101
+ ["Total prob of N-in:", @total_prob_of_N_in]
102
+ ].map {|e| "\# " + [@entry_id, e].flatten.join("\t") },
103
+ tmhs.map {|ent| ent.to_s }
104
+ ].flatten.join("\n")
105
+ end
106
+
107
+
108
+ private
109
+
110
+ #
111
+ def parse_header(raw)
112
+ raw.each do |line|
113
+ next unless /^#/.match(line)
114
+
115
+ case line
116
+ when / (\S.+) Length: +(\d+)/
117
+ @entry_id = $1.strip
118
+ @query_len = $2.to_i
119
+ when /Number of predicted TMHs: +(\d+)/
120
+ @predicted_tmhs = $1.to_i
121
+ when /Exp number of AAs in TMHs: +([\d\.]+)/
122
+ @exp_aas_in_tmhs = $1.to_f
123
+ when /Exp number, first 60 AAs: +([\d\.]+)/
124
+ @exp_first_60aa = $1.to_f
125
+ when /Total prob of N-in: +([\d\.]+)/
126
+ @total_prob_of_N_in = $1.to_f
127
+ end
128
+ end
129
+ end
130
+
131
+ #
132
+ def parse_tmhs(raw)
133
+ tmhs = []
134
+ raw.each do |line|
135
+ case line
136
+ when /^[^\#]/
137
+ eid,version,status,r0,r1 = line.split(/\s+/)
138
+ tmhs << Bio::TMHMM::TMH.new(eid.strip,
139
+ version.strip,
140
+ status.strip,
141
+ Range.new(r0.to_i, r1.to_i))
142
+ end
143
+ end
144
+ tmhs
145
+ end
146
+
147
+ end # class Report
148
+
149
+
150
+ # = Container class of the trainsmembrane helix(TMH) and the other
151
+ # segments.
152
+ class TMH
153
+
154
+ # Returns
155
+ attr_accessor :entry_id
156
+
157
+ # Returns
158
+ attr_accessor :version
159
+
160
+ # Returns the status of the TMH. ("outside", "TMhelix" or "inside").
161
+ attr_accessor :status
162
+
163
+ # Returns an Range of TMH position.
164
+ attr_accessor :range
165
+
166
+ alias pos range
167
+
168
+ #
169
+ def initialize(entry_id = nil, version = nil, status = nil, range = nil)
170
+ @entry_id = entry_id
171
+ @version = version
172
+ @status = status
173
+ @range = range
174
+ end
175
+
176
+ #
177
+ def to_s
178
+ [@entry_id, @version, @status, @range.first, @range.last].join("\t")
179
+ end
180
+
181
+ end # class TMH
182
+
183
+ end # class TMHMM
184
+
185
+ end # module Bio
186
+
187
+
188
+ if __FILE__ == $0
189
+
190
+ begin
191
+ require 'pp'
192
+ alias p pp
193
+ rescue LoadError
194
+ end
195
+
196
+ Bio::TMHMM.reports(ARGF.read) do |ent|
197
+ puts '==>'
198
+ puts ent.to_s
199
+ pp ent
200
+
201
+ p [:entry_id, ent.entry_id]
202
+ p [:query_len, ent.query_len]
203
+ p [:predicted_tmhs, ent.predicted_tmhs]
204
+ p [:tmhs_size, ent.tmhs.size]
205
+ p [:exp_aas_in_tmhs, ent.exp_aas_in_tmhs]
206
+ p [:exp_first_60aa, ent.exp_first_60aa]
207
+ p [:total_prob_of_N_in, ent.total_prob_of_N_in]
208
+
209
+ ent.tmhs.each do |t|
210
+ p t
211
+ p [:entry_id, t.entry_id]
212
+ p [:version, t.version]
213
+ p [:status, t.status]
214
+ p [:range, t.range]
215
+ p [:pos, t.pos]
216
+ end
217
+
218
+ p [:helix, ent.helix]
219
+ p ent.tmhs.map {|t| t if t.status == 'TMhelix' }.compact
220
+ end
221
+
222
+ end