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,337 @@
1
+ #
2
+ # = bio/command.rb - general methods for external command execution
3
+ #
4
+ # Copyright:: Copyright (C) 2003-2006
5
+ # Naohisa Goto <ng@bioruby.org>,
6
+ # Toshiaki Katayama <k@bioruby.org>
7
+ # License:: The Ruby License
8
+ #
9
+ # $Id: command.rb,v 1.17 2007/04/05 23:35:39 trevor Exp $
10
+ #
11
+
12
+ require 'open3'
13
+ require 'uri'
14
+ require 'open-uri'
15
+ require 'net/http'
16
+
17
+ module Bio
18
+
19
+ # = Bio::Command
20
+ #
21
+ # Bio::Command is a collection of useful methods for execution
22
+ # of external commands or web applications.
23
+ # Any wrapper class for applications shall use this class.
24
+ #
25
+ # Library internal use only. Users should not directly use it.
26
+ module Command
27
+
28
+ UNSAFE_CHARS_UNIX = /[^A-Za-z0-9\_\-\.\:\,\/\@\x1b\x80-\xfe]/n
29
+ QUOTE_CHARS_WINDOWS = /[^A-Za-z0-9\_\-\.\:\,\/\@\\]/n
30
+ UNESCAPABLE_CHARS = /[\x00-\x08\x10-\x1a\x1c-\x1f\x7f\xff]/n
31
+
32
+ module_function
33
+
34
+ # Escape special characters in command line string for cmd.exe on Windows.
35
+ def escape_shell_windows(str)
36
+ str = str.to_s
37
+ raise 'cannot escape control characters' if UNESCAPABLE_CHARS =~ str
38
+ if QUOTE_CHARS_WINDOWS =~ str then
39
+ '"' + str.gsub(/\"/, '""') + '"'
40
+ else
41
+ String.new(str)
42
+ end
43
+ end
44
+
45
+ # Escape special characters in command line string for UNIX shells.
46
+ def escape_shell_unix(str)
47
+ str = str.to_s
48
+ raise 'cannot escape control characters' if UNESCAPABLE_CHARS =~ str
49
+ str.gsub(UNSAFE_CHARS_UNIX) { |x| "\\#{x}" }
50
+ end
51
+
52
+ # Escape special characters in command line string.
53
+ def escape_shell(str)
54
+ case RUBY_PLATFORM
55
+ when /mswin32|bccwin32/
56
+ escape_shell_windows(str)
57
+ else
58
+ escape_shell_unix(str)
59
+ end
60
+ end
61
+
62
+ # Generate command line string with special characters escaped.
63
+ def make_command_line(ary)
64
+ case RUBY_PLATFORM
65
+ when /mswin32|bccwin32/
66
+ make_command_line_windows(ary)
67
+ else
68
+ make_command_line_unix(ary)
69
+ end
70
+ end
71
+
72
+ # Generate command line string with special characters escaped
73
+ # for cmd.exe on Windows.
74
+ def make_command_line_windows(ary)
75
+ ary.collect { |str| escape_shell_windows(str) }.join(" ")
76
+ end
77
+
78
+ # Generate command line string with special characters escaped
79
+ # for UNIX shells.
80
+ def make_command_line_unix(ary)
81
+ ary.collect { |str| escape_shell_unix(str) }.join(" ")
82
+ end
83
+
84
+ # Executes the program. Automatically select popen for Windows
85
+ # environment and fork for the others.
86
+ # A block must be given. An IO object is passed to the block.
87
+ def call_command(cmd, &block)
88
+ case RUBY_PLATFORM
89
+ when /mswin32|bccwin32/
90
+ call_command_popen(cmd, &block)
91
+ else
92
+ call_command_fork(cmd, &block)
93
+ end
94
+ end
95
+
96
+ # Executes the program via IO.popen for OS which doesn't support fork.
97
+ # A block must be given. An IO object is passed to the block.
98
+ def call_command_popen(cmd)
99
+ str = make_command_line(cmd)
100
+ IO.popen(str, "w+") do |io|
101
+ io.sync = true
102
+ yield io
103
+ end
104
+ end
105
+
106
+ # Executes the program via fork (by using IO.popen("-")) and exec.
107
+ # A block must be given. An IO object is passed to the block.
108
+ #
109
+ # From the view point of security, this method is recommended
110
+ # rather than call_command_popen.
111
+ def call_command_fork(cmd)
112
+ IO.popen("-", "r+") do |io|
113
+ if io then
114
+ # parent
115
+ yield io
116
+ else
117
+ # child
118
+ begin
119
+ Kernel.exec(*cmd)
120
+ rescue Errno::ENOENT, Errno::EACCES
121
+ Process.exit!(127)
122
+ rescue Exception
123
+ end
124
+ Process.exit!(1)
125
+ end
126
+ end
127
+ end
128
+
129
+ # Executes the program via Open3.popen3
130
+ # A block must be given. IO objects are passed to the block.
131
+ #
132
+ # You would use this method only when you really need to get stderr.
133
+ def call_command_open3(cmd)
134
+ cmd = cmd.collect { |x| x.to_s }
135
+ Open3.popen3(*cmd) do |pin, pout, perr|
136
+ yield pin, pout, perr
137
+ end
138
+ end
139
+
140
+ # Executes the program with the query (String) given to the standard input,
141
+ # waits the program termination, and returns the output data printed to the
142
+ # standard output as a string.
143
+ #
144
+ # Automatically select popen for Windows environment and fork for the others.
145
+ def query_command(cmd, query = nil)
146
+ case RUBY_PLATFORM
147
+ when /mswin32|bccwin32/
148
+ query_command_popen(cmd, query)
149
+ else
150
+ query_command_fork(cmd, query)
151
+ end
152
+ end
153
+
154
+ # Executes the program with the query (String) given to the standard input,
155
+ # waits the program termination, and returns the output data printed to the
156
+ # standard output as a string.
157
+ #
158
+ # IO.popen is used for OS which doesn't support fork.
159
+ def query_command_popen(cmd, query = nil)
160
+ str = make_command_line(cmd)
161
+ IO.popen(str, "w+") do |io|
162
+ io.sync = true
163
+ io.print query if query
164
+ io.close_write
165
+ io.read
166
+ end
167
+ end
168
+
169
+ # Executes the program with the query (String) given to the standard input,
170
+ # waits the program termination, and returns the output data printed to the
171
+ # standard output as a string.
172
+ #
173
+ # Fork (by using IO.popen("-")) and exec is used to execute the program.
174
+ #
175
+ # From the view point of security, this method is recommended
176
+ # rather than query_popen.
177
+ def query_command_fork(cmd, query = nil)
178
+ IO.popen("-", "r+") do |io|
179
+ if io then
180
+ # parent
181
+ io.sync = true
182
+ io.print query if query
183
+ io.close_write
184
+ io.read
185
+ else
186
+ # child
187
+ begin
188
+ Kernel.exec(*cmd)
189
+ rescue Errno::ENOENT, Errno::EACCES
190
+ Process.exit!(127)
191
+ rescue Exception
192
+ end
193
+ Process.exit!(1)
194
+ end
195
+ end
196
+ end
197
+
198
+ # Executes the program via Open3.popen3 with the query (String) given
199
+ # to the stain, waits the program termination, and
200
+ # returns the data from stdout and stderr as an array of the strings.
201
+ #
202
+ # From the view point of security, this method is recommended
203
+ # rather than exec_local_popen.
204
+ def query_command_open3(cmd, query = nil)
205
+ errorlog = nil
206
+ cmd = cmd.collect { |x| x.to_s }
207
+ Open3.popen3(*cmd) do |pin, pout, perr|
208
+ perr.sync = true
209
+ t = Thread.start { errorlog = perr.read }
210
+ begin
211
+ pin.print query if query
212
+ pin.close
213
+ output = pout.read
214
+ ensure
215
+ t.join
216
+ end
217
+ [ output, errorlog ]
218
+ end
219
+ end
220
+
221
+ # Same as OpenURI.open_uri(uri).read.
222
+ def read_uri(uri)
223
+ OpenURI.open_uri(uri).read
224
+ end
225
+
226
+ # Same as:
227
+ # Net::HTTP.start(address, port)
228
+ # and
229
+ # it uses proxy if an environment variable (same as OpenURI.open_uri)
230
+ # is set.
231
+ #
232
+ def start_http(address, port = 80, &block)
233
+ uri = URI.parse("http://#{address}:#{port}")
234
+ # Note: URI#find_proxy is an unofficial method defined in open-uri.rb.
235
+ # If the spec of open-uri.rb would be changed, we should change below.
236
+ if proxyuri = uri.find_proxy then
237
+ raise 'Non-HTTP proxy' if proxyuri.class != URI::HTTP
238
+ http = Net::HTTP.Proxy(proxyuri.host, proxyuri.port)
239
+ else
240
+ http = Net::HTTP
241
+ end
242
+ http.start(address, port, &block)
243
+ end
244
+
245
+ # Same as:
246
+ # Net::HTTP.new(address, port)
247
+ # and
248
+ # it uses proxy if an environment variable (same as OpenURI.open_uri)
249
+ # is set.
250
+ #
251
+ def new_http(address, port = 80)
252
+ uri = URI.parse("http://#{address}:#{port}")
253
+ # Note: URI#find_proxy is an unofficial method defined in open-uri.rb.
254
+ # If the spec of open-uri.rb would be changed, we should change below.
255
+ if proxyuri = uri.find_proxy then
256
+ raise 'Non-HTTP proxy' if proxyuri.class != URI::HTTP
257
+ Net::HTTP.new(address, port, proxyuri.host, proxyuri.port)
258
+ else
259
+ Net::HTTP.new(address, port)
260
+ end
261
+ end
262
+
263
+ # Same as:
264
+ # Net::HTTP.post_form(uri, params)
265
+ # and
266
+ # it uses proxy if an environment variable (same as OpenURI.open_uri)
267
+ # is set.
268
+ # In addition, +header+ can be set.
269
+ # (Note that Content-Type and Content-Length are automatically
270
+ # set by default.)
271
+ # +uri+ must be a URI object, +params+ must be a hash, and
272
+ # +header+ must be a hash.
273
+ #
274
+ def post_form(uri, params = nil, header = {})
275
+ unless uri.is_a?(URI)
276
+ uri = URI.parse(uri)
277
+ end
278
+
279
+ data = make_cgi_params(params)
280
+
281
+ hash = {
282
+ 'Content-Type' => 'application/x-www-form-urlencoded',
283
+ 'Content-Length' => data.length.to_s
284
+ }
285
+ hash.update(header)
286
+
287
+ start_http(uri.host, uri.port) do |http|
288
+ http.post(uri.path, data, hash)
289
+ end
290
+ end
291
+
292
+ def make_cgi_params(params)
293
+ data = ""
294
+ case params
295
+ when Hash
296
+ data = params.map do |key, val|
297
+ make_cgi_params_key_value(key, val)
298
+ end.join('&')
299
+ when Array
300
+ case params.first
301
+ when Hash
302
+ data = params.map do |hash|
303
+ hash.map do |key, val|
304
+ make_cgi_params_key_value(key, val)
305
+ end
306
+ end.join('&')
307
+ when Array
308
+ data = params.map do |key, val|
309
+ make_cgi_params_key_value(key, val)
310
+ end.join('&')
311
+ when String
312
+ data = params.map do |str|
313
+ URI.escape(str.strip)
314
+ end.join('&')
315
+ end
316
+ when String
317
+ data = URI.escape(params.strip)
318
+ end
319
+ return data
320
+ end
321
+
322
+ def make_cgi_params_key_value(key, value)
323
+ result = []
324
+ case value
325
+ when Array
326
+ value.each do |val|
327
+ result << [key, val].map {|x| URI.escape(x.to_s) }.join('=')
328
+ end
329
+ else
330
+ result << [key, value].map {|x| URI.escape(x.to_s) }.join('=')
331
+ end
332
+ return result
333
+ end
334
+
335
+ end # module Command
336
+ end # module Bio
337
+
@@ -0,0 +1,349 @@
1
+ #
2
+ # = bio/data/aa.rb - Amino Acids
3
+ #
4
+ # Copyright:: Copyright (C) 2001, 2005
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: The Ruby License
7
+ #
8
+ # $Id: aa.rb,v 0.22 2007/04/06 04:44:51 k Exp $
9
+ #
10
+
11
+ module Bio
12
+
13
+ class AminoAcid
14
+
15
+ module Data
16
+
17
+ # IUPAC code
18
+ # * http://www.iupac.org/
19
+ # * http://www.chem.qmw.ac.uk/iubmb/newsletter/1999/item3.html
20
+ # * http://www.ebi.ac.uk/RESID/faq.html
21
+
22
+ NAMES = {
23
+
24
+ 'A' => 'Ala',
25
+ 'C' => 'Cys',
26
+ 'D' => 'Asp',
27
+ 'E' => 'Glu',
28
+ 'F' => 'Phe',
29
+ 'G' => 'Gly',
30
+ 'H' => 'His',
31
+ 'I' => 'Ile',
32
+ 'K' => 'Lys',
33
+ 'L' => 'Leu',
34
+ 'M' => 'Met',
35
+ 'N' => 'Asn',
36
+ 'P' => 'Pro',
37
+ 'Q' => 'Gln',
38
+ 'R' => 'Arg',
39
+ 'S' => 'Ser',
40
+ 'T' => 'Thr',
41
+ 'V' => 'Val',
42
+ 'W' => 'Trp',
43
+ 'Y' => 'Tyr',
44
+ 'B' => 'Asx', # D/N
45
+ 'Z' => 'Glx', # E/Q
46
+ 'J' => 'Xle', # I/L
47
+ 'U' => 'Sec', # 'uga' (stop)
48
+ 'O' => 'Pyl', # 'uag' (stop)
49
+ 'X' => 'Xaa', # (unknown)
50
+
51
+ 'Ala' => 'alanine',
52
+ 'Cys' => 'cysteine',
53
+ 'Asp' => 'aspartic acid',
54
+ 'Glu' => 'glutamic acid',
55
+ 'Phe' => 'phenylalanine',
56
+ 'Gly' => 'glycine',
57
+ 'His' => 'histidine',
58
+ 'Ile' => 'isoleucine',
59
+ 'Lys' => 'lysine',
60
+ 'Leu' => 'leucine',
61
+ 'Met' => 'methionine',
62
+ 'Asn' => 'asparagine',
63
+ 'Pro' => 'proline',
64
+ 'Gln' => 'glutamine',
65
+ 'Arg' => 'arginine',
66
+ 'Ser' => 'serine',
67
+ 'Thr' => 'threonine',
68
+ 'Val' => 'valine',
69
+ 'Trp' => 'tryptophan',
70
+ 'Tyr' => 'tyrosine',
71
+ 'Asx' => 'asparagine/aspartic acid [DN]',
72
+ 'Glx' => 'glutamine/glutamic acid [EQ]',
73
+ 'Xle' => 'isoleucine/leucine [IL]',
74
+ 'Sec' => 'selenocysteine',
75
+ 'Pyl' => 'pyrrolysine',
76
+ 'Xaa' => 'unknown [A-Z]',
77
+
78
+ }
79
+
80
+ # AAindex FASG760101 - Molecular weight (Fasman, 1976)
81
+ # Fasman, G.D., ed.
82
+ # Handbook of Biochemistry and Molecular Biology", 3rd ed.,
83
+ # Proteins - Volume 1, CRC Press, Cleveland (1976)
84
+
85
+ WEIGHT = {
86
+
87
+ 'A' => 89.09,
88
+ 'C' => 121.15, # 121.16 according to the Wikipedia
89
+ 'D' => 133.10,
90
+ 'E' => 147.13,
91
+ 'F' => 165.19,
92
+ 'G' => 75.07,
93
+ 'H' => 155.16,
94
+ 'I' => 131.17,
95
+ 'K' => 146.19,
96
+ 'L' => 131.17,
97
+ 'M' => 149.21,
98
+ 'N' => 132.12,
99
+ 'P' => 115.13,
100
+ 'Q' => 146.15,
101
+ 'R' => 174.20,
102
+ 'S' => 105.09,
103
+ 'T' => 119.12,
104
+ 'U' => 168.06,
105
+ 'V' => 117.15,
106
+ 'W' => 204.23,
107
+ 'Y' => 181.19,
108
+ }
109
+
110
+ def weight(x = nil)
111
+ if x
112
+ if x.length > 1
113
+ total = 0.0
114
+ x.each_byte do |byte|
115
+ aa = byte.chr.upcase
116
+ if WEIGHT[aa]
117
+ total += WEIGHT[aa]
118
+ else
119
+ raise "Error: invalid amino acid '#{aa}'"
120
+ end
121
+ end
122
+ total -= NucleicAcid.weight[:water] * (x.length - 1)
123
+ else
124
+ WEIGHT[x]
125
+ end
126
+ else
127
+ WEIGHT
128
+ end
129
+ end
130
+
131
+ def [](x)
132
+ NAMES[x]
133
+ end
134
+
135
+ # backward compatibility
136
+ def names
137
+ NAMES
138
+ end
139
+ alias aa names
140
+
141
+ def name(x)
142
+ str = NAMES[x]
143
+ if str and str.length == 3
144
+ NAMES[str]
145
+ else
146
+ str
147
+ end
148
+ end
149
+
150
+ def to_1(x)
151
+ case x.to_s.length
152
+ when 1
153
+ x
154
+ when 3
155
+ three2one(x)
156
+ else
157
+ name2one(x)
158
+ end
159
+ end
160
+ alias one to_1
161
+
162
+ def to_3(x)
163
+ case x.to_s.length
164
+ when 1
165
+ one2three(x)
166
+ when 3
167
+ x
168
+ else
169
+ name2three(x)
170
+ end
171
+ end
172
+ alias three to_3
173
+
174
+ def one2three(x)
175
+ if x and x.length != 1
176
+ raise ArgumentError
177
+ else
178
+ NAMES[x]
179
+ end
180
+ end
181
+
182
+ def three2one(x)
183
+ if x and x.length != 3
184
+ raise ArgumentError
185
+ else
186
+ reverse[x]
187
+ end
188
+ end
189
+
190
+ def one2name(x)
191
+ if x and x.length != 1
192
+ raise ArgumentError
193
+ else
194
+ three2name(NAMES[x])
195
+ end
196
+ end
197
+
198
+ def name2one(x)
199
+ str = reverse[x.to_s.downcase]
200
+ if str and str.length == 3
201
+ three2one(str)
202
+ else
203
+ str
204
+ end
205
+ end
206
+
207
+ def three2name(x)
208
+ if x and x.length != 3
209
+ raise ArgumentError
210
+ else
211
+ NAMES[x]
212
+ end
213
+ end
214
+
215
+ def name2three(x)
216
+ reverse[x.downcase]
217
+ end
218
+
219
+ def to_re(seq)
220
+ replace = {
221
+ 'B' => '[DNB]',
222
+ 'Z' => '[EQZ]',
223
+ 'J' => '[ILJ]',
224
+ 'X' => '[ACDEFGHIKLMNPQRSTVWYUOX]',
225
+ }
226
+ replace.default = '.'
227
+
228
+ str = seq.to_s.upcase
229
+ str.gsub!(/[^ACDEFGHIKLMNPQRSTVWYUO]/) { |aa|
230
+ replace[aa]
231
+ }
232
+ Regexp.new(str)
233
+ end
234
+
235
+
236
+ private
237
+
238
+
239
+ def reverse
240
+ hash = Hash.new
241
+ NAMES.each do |k, v|
242
+ hash[v] = k
243
+ end
244
+ hash
245
+ end
246
+
247
+ end
248
+
249
+
250
+ # as instance methods
251
+ include Data
252
+
253
+ # as class methods
254
+ extend Data
255
+
256
+
257
+ private
258
+
259
+
260
+ # override when used as an instance method to improve performance
261
+ alias orig_reverse reverse
262
+ def reverse
263
+ unless @reverse
264
+ @reverse = orig_reverse
265
+ end
266
+ @reverse
267
+ end
268
+
269
+ end
270
+
271
+ end # module Bio
272
+
273
+
274
+ if __FILE__ == $0
275
+
276
+ puts "### aa = Bio::AminoAcid.new"
277
+ aa = Bio::AminoAcid.new
278
+
279
+ puts "# Bio::AminoAcid['A']"
280
+ p Bio::AminoAcid['A']
281
+ puts "# aa['A']"
282
+ p aa['A']
283
+
284
+ puts "# Bio::AminoAcid.name('A'), Bio::AminoAcid.name('Ala')"
285
+ p Bio::AminoAcid.name('A'), Bio::AminoAcid.name('Ala')
286
+ puts "# aa.name('A'), aa.name('Ala')"
287
+ p aa.name('A'), aa.name('Ala')
288
+
289
+ puts "# Bio::AminoAcid.to_1('alanine'), Bio::AminoAcid.one('alanine')"
290
+ p Bio::AminoAcid.to_1('alanine'), Bio::AminoAcid.one('alanine')
291
+ puts "# aa.to_1('alanine'), aa.one('alanine')"
292
+ p aa.to_1('alanine'), aa.one('alanine')
293
+ puts "# Bio::AminoAcid.to_1('Ala'), Bio::AminoAcid.one('Ala')"
294
+ p Bio::AminoAcid.to_1('Ala'), Bio::AminoAcid.one('Ala')
295
+ puts "# aa.to_1('Ala'), aa.one('Ala')"
296
+ p aa.to_1('Ala'), aa.one('Ala')
297
+ puts "# Bio::AminoAcid.to_1('A'), Bio::AminoAcid.one('A')"
298
+ p Bio::AminoAcid.to_1('A'), Bio::AminoAcid.one('A')
299
+ puts "# aa.to_1('A'), aa.one('A')"
300
+ p aa.to_1('A'), aa.one('A')
301
+
302
+ puts "# Bio::AminoAcid.to_3('alanine'), Bio::AminoAcid.three('alanine')"
303
+ p Bio::AminoAcid.to_3('alanine'), Bio::AminoAcid.three('alanine')
304
+ puts "# aa.to_3('alanine'), aa.three('alanine')"
305
+ p aa.to_3('alanine'), aa.three('alanine')
306
+ puts "# Bio::AminoAcid.to_3('Ala'), Bio::AminoAcid.three('Ala')"
307
+ p Bio::AminoAcid.to_3('Ala'), Bio::AminoAcid.three('Ala')
308
+ puts "# aa.to_3('Ala'), aa.three('Ala')"
309
+ p aa.to_3('Ala'), aa.three('Ala')
310
+ puts "# Bio::AminoAcid.to_3('A'), Bio::AminoAcid.three('A')"
311
+ p Bio::AminoAcid.to_3('A'), Bio::AminoAcid.three('A')
312
+ puts "# aa.to_3('A'), aa.three('A')"
313
+ p aa.to_3('A'), aa.three('A')
314
+
315
+ puts "# Bio::AminoAcid.one2three('A')"
316
+ p Bio::AminoAcid.one2three('A')
317
+ puts "# aa.one2three('A')"
318
+ p aa.one2three('A')
319
+
320
+ puts "# Bio::AminoAcid.three2one('Ala')"
321
+ p Bio::AminoAcid.three2one('Ala')
322
+ puts "# aa.three2one('Ala')"
323
+ p aa.three2one('Ala')
324
+
325
+ puts "# Bio::AminoAcid.one2name('A')"
326
+ p Bio::AminoAcid.one2name('A')
327
+ puts "# aa.one2name('A')"
328
+ p aa.one2name('A')
329
+
330
+ puts "# Bio::AminoAcid.name2one('alanine')"
331
+ p Bio::AminoAcid.name2one('alanine')
332
+ puts "# aa.name2one('alanine')"
333
+ p aa.name2one('alanine')
334
+
335
+ puts "# Bio::AminoAcid.three2name('Ala')"
336
+ p Bio::AminoAcid.three2name('Ala')
337
+ puts "# aa.three2name('Ala')"
338
+ p aa.three2name('Ala')
339
+
340
+ puts "# Bio::AminoAcid.name2three('alanine')"
341
+ p Bio::AminoAcid.name2three('alanine')
342
+ puts "# aa.name2three('alanine')"
343
+ p aa.name2three('alanine')
344
+
345
+ puts "# Bio::AminoAcid.to_re('BZACDEFGHIKLMNPQRSTVWYU')"
346
+ p Bio::AminoAcid.to_re('BZACDEFGHIKLMNPQRSTVWYU')
347
+
348
+ end
349
+