bio 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. data/ChangeLog +3421 -0
  2. data/KNOWN_ISSUES.rdoc +88 -0
  3. data/README.rdoc +252 -0
  4. data/README_DEV.rdoc +285 -0
  5. data/Rakefile +143 -0
  6. data/bin/bioruby +0 -0
  7. data/bin/br_biofetch.rb +0 -0
  8. data/bin/br_bioflat.rb +12 -1
  9. data/bin/br_biogetseq.rb +0 -0
  10. data/bin/br_pmfetch.rb +4 -3
  11. data/bioruby.gemspec +477 -0
  12. data/bioruby.gemspec.erb +117 -0
  13. data/doc/Changes-0.7.rd +7 -0
  14. data/doc/Changes-1.3.rdoc +239 -0
  15. data/doc/Tutorial.rd +296 -184
  16. data/doc/Tutorial.rd.html +1031 -0
  17. data/doc/Tutorial.rd.ja +111 -45
  18. data/doc/Tutorial.rd.ja.html +2225 -0
  19. data/doc/bioruby.css +281 -0
  20. data/extconf.rb +2 -0
  21. data/lib/bio.rb +29 -4
  22. data/lib/bio/appl/blast.rb +306 -121
  23. data/lib/bio/appl/blast/ddbj.rb +142 -0
  24. data/lib/bio/appl/blast/format0.rb +35 -25
  25. data/lib/bio/appl/blast/format8.rb +2 -2
  26. data/lib/bio/appl/blast/genomenet.rb +263 -0
  27. data/lib/bio/appl/blast/ncbioptions.rb +220 -0
  28. data/lib/bio/appl/blast/remote.rb +106 -0
  29. data/lib/bio/appl/blast/report.rb +260 -9
  30. data/lib/bio/appl/blast/rexml.rb +12 -5
  31. data/lib/bio/appl/blast/rpsblast.rb +277 -0
  32. data/lib/bio/appl/blast/wublast.rb +133 -12
  33. data/lib/bio/appl/blast/xmlparser.rb +35 -18
  34. data/lib/bio/appl/blat/report.rb +46 -5
  35. data/lib/bio/appl/emboss.rb +62 -13
  36. data/lib/bio/appl/fasta.rb +9 -11
  37. data/lib/bio/appl/genscan/report.rb +3 -3
  38. data/lib/bio/appl/hmmer.rb +1 -1
  39. data/lib/bio/appl/hmmer/report.rb +10 -10
  40. data/lib/bio/appl/paml/baseml.rb +95 -0
  41. data/lib/bio/appl/paml/baseml/report.rb +32 -0
  42. data/lib/bio/appl/paml/codeml.rb +242 -0
  43. data/lib/bio/appl/paml/codeml/rates.rb +67 -0
  44. data/lib/bio/appl/paml/codeml/report.rb +67 -0
  45. data/lib/bio/appl/paml/common.rb +348 -0
  46. data/lib/bio/appl/paml/common_report.rb +38 -0
  47. data/lib/bio/appl/paml/yn00.rb +103 -0
  48. data/lib/bio/appl/paml/yn00/report.rb +32 -0
  49. data/lib/bio/appl/psort.rb +2 -2
  50. data/lib/bio/appl/pts1.rb +5 -5
  51. data/lib/bio/appl/tmhmm/report.rb +10 -1
  52. data/lib/bio/command.rb +297 -41
  53. data/lib/bio/compat/features.rb +157 -0
  54. data/lib/bio/compat/references.rb +128 -0
  55. data/lib/bio/db/biosql/biosql_to_biosequence.rb +67 -0
  56. data/lib/bio/db/biosql/sequence.rb +508 -0
  57. data/lib/bio/db/embl/common.rb +28 -12
  58. data/lib/bio/db/embl/embl.rb +107 -9
  59. data/lib/bio/db/embl/embl_to_biosequence.rb +85 -0
  60. data/lib/bio/db/embl/format_embl.rb +190 -0
  61. data/lib/bio/db/embl/sptr.rb +15 -16
  62. data/lib/bio/db/fantom.rb +6 -8
  63. data/lib/bio/db/fasta.rb +10 -507
  64. data/lib/bio/db/fasta/defline.rb +532 -0
  65. data/lib/bio/db/fasta/fasta_to_biosequence.rb +63 -0
  66. data/lib/bio/db/fasta/format_fasta.rb +97 -0
  67. data/lib/bio/db/genbank/common.rb +25 -8
  68. data/lib/bio/db/genbank/format_genbank.rb +187 -0
  69. data/lib/bio/db/genbank/genbank.rb +36 -1
  70. data/lib/bio/db/genbank/genbank_to_biosequence.rb +86 -0
  71. data/lib/bio/db/gff.rb +1791 -119
  72. data/lib/bio/db/kegg/glycan.rb +2 -6
  73. data/lib/bio/db/lasergene.rb +3 -3
  74. data/lib/bio/db/medline.rb +4 -1
  75. data/lib/bio/db/newick.rb +10 -10
  76. data/lib/bio/db/pdb/chain.rb +6 -2
  77. data/lib/bio/db/pdb/pdb.rb +12 -3
  78. data/lib/bio/db/rebase.rb +7 -8
  79. data/lib/bio/db/soft.rb +3 -3
  80. data/lib/bio/feature.rb +1 -88
  81. data/lib/bio/io/biosql/biodatabase.rb +64 -0
  82. data/lib/bio/io/biosql/bioentry.rb +29 -0
  83. data/lib/bio/io/biosql/bioentry_dbxref.rb +11 -0
  84. data/lib/bio/io/biosql/bioentry_path.rb +12 -0
  85. data/lib/bio/io/biosql/bioentry_qualifier_value.rb +10 -0
  86. data/lib/bio/io/biosql/bioentry_reference.rb +10 -0
  87. data/lib/bio/io/biosql/bioentry_relationship.rb +10 -0
  88. data/lib/bio/io/biosql/biosequence.rb +11 -0
  89. data/lib/bio/io/biosql/comment.rb +7 -0
  90. data/lib/bio/io/biosql/config/database.yml +20 -0
  91. data/lib/bio/io/biosql/dbxref.rb +13 -0
  92. data/lib/bio/io/biosql/dbxref_qualifier_value.rb +12 -0
  93. data/lib/bio/io/biosql/location.rb +32 -0
  94. data/lib/bio/io/biosql/location_qualifier_value.rb +11 -0
  95. data/lib/bio/io/biosql/ontology.rb +10 -0
  96. data/lib/bio/io/biosql/reference.rb +9 -0
  97. data/lib/bio/io/biosql/seqfeature.rb +32 -0
  98. data/lib/bio/io/biosql/seqfeature_dbxref.rb +11 -0
  99. data/lib/bio/io/biosql/seqfeature_path.rb +11 -0
  100. data/lib/bio/io/biosql/seqfeature_qualifier_value.rb +20 -0
  101. data/lib/bio/io/biosql/seqfeature_relationship.rb +11 -0
  102. data/lib/bio/io/biosql/taxon.rb +12 -0
  103. data/lib/bio/io/biosql/taxon_name.rb +9 -0
  104. data/lib/bio/io/biosql/term.rb +27 -0
  105. data/lib/bio/io/biosql/term_dbxref.rb +11 -0
  106. data/lib/bio/io/biosql/term_path.rb +12 -0
  107. data/lib/bio/io/biosql/term_relationship.rb +13 -0
  108. data/lib/bio/io/biosql/term_relationship_term.rb +11 -0
  109. data/lib/bio/io/biosql/term_synonym.rb +10 -0
  110. data/lib/bio/io/das.rb +7 -7
  111. data/lib/bio/io/ddbjxml.rb +57 -0
  112. data/lib/bio/io/ensembl.rb +2 -2
  113. data/lib/bio/io/fetch.rb +28 -14
  114. data/lib/bio/io/flatfile.rb +17 -853
  115. data/lib/bio/io/flatfile/autodetection.rb +545 -0
  116. data/lib/bio/io/flatfile/buffer.rb +237 -0
  117. data/lib/bio/io/flatfile/index.rb +17 -7
  118. data/lib/bio/io/flatfile/indexer.rb +30 -12
  119. data/lib/bio/io/flatfile/splitter.rb +297 -0
  120. data/lib/bio/io/hinv.rb +442 -0
  121. data/lib/bio/io/keggapi.rb +2 -2
  122. data/lib/bio/io/ncbirest.rb +733 -0
  123. data/lib/bio/io/pubmed.rb +34 -80
  124. data/lib/bio/io/registry.rb +2 -2
  125. data/lib/bio/io/sql.rb +178 -357
  126. data/lib/bio/io/togows.rb +458 -0
  127. data/lib/bio/location.rb +106 -11
  128. data/lib/bio/pathway.rb +120 -14
  129. data/lib/bio/reference.rb +115 -101
  130. data/lib/bio/sequence.rb +164 -183
  131. data/lib/bio/sequence/adapter.rb +108 -0
  132. data/lib/bio/sequence/common.rb +22 -45
  133. data/lib/bio/sequence/compat.rb +2 -2
  134. data/lib/bio/sequence/dblink.rb +54 -0
  135. data/lib/bio/sequence/format.rb +254 -77
  136. data/lib/bio/sequence/format_raw.rb +23 -0
  137. data/lib/bio/shell.rb +3 -1
  138. data/lib/bio/shell/core.rb +2 -2
  139. data/lib/bio/shell/plugin/entry.rb +33 -4
  140. data/lib/bio/shell/plugin/ncbirest.rb +64 -0
  141. data/lib/bio/shell/plugin/togows.rb +40 -0
  142. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/bioruby_generator.rb +0 -0
  143. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/_classes.rhtml +0 -0
  144. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/_log.rhtml +0 -0
  145. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/_methods.rhtml +0 -0
  146. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/_modules.rhtml +0 -0
  147. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/_variables.rhtml +0 -0
  148. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby-bg.gif +0 -0
  149. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby-gem.png +0 -0
  150. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby-link.gif +0 -0
  151. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby.css +0 -0
  152. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby.rhtml +0 -0
  153. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby_controller.rb +0 -0
  154. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/bioruby_helper.rb +0 -0
  155. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/commands.rhtml +0 -0
  156. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/history.rhtml +0 -0
  157. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/index.rhtml +0 -0
  158. data/lib/bio/shell/rails/vendor/plugins/{generators → bioruby/generators}/bioruby/templates/spinner.gif +0 -0
  159. data/lib/bio/tree.rb +4 -2
  160. data/lib/bio/util/color_scheme.rb +2 -2
  161. data/lib/bio/util/contingency_table.rb +2 -2
  162. data/lib/bio/util/restriction_enzyme.rb +2 -2
  163. data/lib/bio/util/restriction_enzyme/single_strand.rb +6 -5
  164. data/lib/bio/version.rb +25 -0
  165. data/rdoc.zsh +8 -0
  166. data/sample/any2fasta.rb +0 -0
  167. data/sample/biofetch.rb +0 -0
  168. data/sample/dbget +0 -0
  169. data/sample/demo_sequence.rb +158 -0
  170. data/sample/enzymes.rb +0 -0
  171. data/sample/fasta2tab.rb +0 -0
  172. data/sample/fastagrep.rb +72 -0
  173. data/sample/fastasort.rb +54 -0
  174. data/sample/fsplit.rb +0 -0
  175. data/sample/gb2fasta.rb +2 -3
  176. data/sample/gb2tab.rb +0 -0
  177. data/sample/gbtab2mysql.rb +0 -0
  178. data/sample/genes2nuc.rb +0 -0
  179. data/sample/genes2pep.rb +0 -0
  180. data/sample/genes2tab.rb +0 -0
  181. data/sample/genome2rb.rb +0 -0
  182. data/sample/genome2tab.rb +0 -0
  183. data/sample/goslim.rb +0 -0
  184. data/sample/gt2fasta.rb +0 -0
  185. data/sample/na2aa.rb +34 -0
  186. data/sample/pmfetch.rb +0 -0
  187. data/sample/pmsearch.rb +0 -0
  188. data/sample/ssearch2tab.rb +0 -0
  189. data/sample/tfastx2tab.rb +0 -0
  190. data/sample/vs-genes.rb +0 -0
  191. data/setup.rb +1596 -0
  192. data/test/data/blast/blastp-multi.m7 +188 -0
  193. data/test/data/command/echoarg2.bat +1 -0
  194. data/test/data/paml/codeml/control_file.txt +30 -0
  195. data/test/data/paml/codeml/output.txt +78 -0
  196. data/test/data/paml/codeml/rates +217 -0
  197. data/test/data/rpsblast/misc.rpsblast +193 -0
  198. data/test/data/soft/GDS100_partial.soft +0 -0
  199. data/test/data/soft/GSE3457_family_partial.soft +0 -0
  200. data/test/functional/bio/appl/test_pts1.rb +115 -0
  201. data/test/functional/bio/io/test_ensembl.rb +123 -80
  202. data/test/functional/bio/io/test_togows.rb +267 -0
  203. data/test/functional/bio/sequence/test_output_embl.rb +51 -0
  204. data/test/functional/bio/test_command.rb +301 -0
  205. data/test/runner.rb +17 -1
  206. data/test/unit/bio/appl/blast/test_ncbioptions.rb +112 -0
  207. data/test/unit/bio/appl/blast/test_report.rb +753 -35
  208. data/test/unit/bio/appl/blast/test_rpsblast.rb +398 -0
  209. data/test/unit/bio/appl/paml/codeml/test_rates.rb +45 -0
  210. data/test/unit/bio/appl/paml/codeml/test_report.rb +45 -0
  211. data/test/unit/bio/appl/paml/test_codeml.rb +174 -0
  212. data/test/unit/bio/appl/test_blast.rb +135 -4
  213. data/test/unit/bio/appl/test_fasta.rb +2 -2
  214. data/test/unit/bio/appl/test_pts1.rb +1 -64
  215. data/test/unit/bio/db/embl/test_common.rb +15 -15
  216. data/test/unit/bio/db/embl/test_embl.rb +4 -4
  217. data/test/unit/bio/db/embl/test_embl_rel89.rb +5 -5
  218. data/test/unit/bio/db/embl/test_embl_to_bioseq.rb +203 -0
  219. data/test/unit/bio/db/embl/test_sptr.rb +38 -1
  220. data/test/unit/bio/db/pdb/test_pdb.rb +2 -2
  221. data/test/unit/bio/db/test_gff.rb +1151 -25
  222. data/test/unit/bio/db/test_medline.rb +127 -0
  223. data/test/unit/bio/db/test_nexus.rb +5 -1
  224. data/test/unit/bio/db/test_prosite.rb +4 -4
  225. data/test/unit/bio/io/flatfile/test_autodetection.rb +375 -0
  226. data/test/unit/bio/io/flatfile/test_buffer.rb +251 -0
  227. data/test/unit/bio/io/flatfile/test_splitter.rb +369 -0
  228. data/test/unit/bio/io/test_ddbjxml.rb +8 -3
  229. data/test/unit/bio/io/test_fastacmd.rb +5 -5
  230. data/test/unit/bio/io/test_flatfile.rb +357 -106
  231. data/test/unit/bio/io/test_soapwsdl.rb +2 -2
  232. data/test/unit/bio/io/test_togows.rb +161 -0
  233. data/test/unit/bio/sequence/test_common.rb +210 -11
  234. data/test/unit/bio/sequence/test_compat.rb +3 -3
  235. data/test/unit/bio/sequence/test_dblink.rb +58 -0
  236. data/test/unit/bio/sequence/test_na.rb +2 -2
  237. data/test/unit/bio/test_command.rb +111 -50
  238. data/test/unit/bio/test_feature.rb +29 -1
  239. data/test/unit/bio/test_location.rb +566 -6
  240. data/test/unit/bio/test_pathway.rb +91 -65
  241. data/test/unit/bio/test_reference.rb +67 -13
  242. data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +3 -3
  243. data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +3 -3
  244. data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +3 -3
  245. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +4 -3
  246. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +3 -3
  247. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +3 -3
  248. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +3 -3
  249. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +3 -3
  250. data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +3 -3
  251. data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +3 -3
  252. data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +4 -4
  253. data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +3 -3
  254. data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +3 -3
  255. data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +3 -3
  256. data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +3 -3
  257. data/test/unit/bio/util/test_restriction_enzyme.rb +3 -3
  258. metadata +202 -167
  259. data/test/unit/bio/appl/blast/test_xmlparser.rb +0 -388
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_aligned_strands.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -13,10 +13,11 @@ libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cle
13
13
  $:.unshift(libpath) unless $:.include?(libpath)
14
14
 
15
15
  require 'test/unit'
16
+ require 'bio/sequence'
16
17
  require 'bio/util/restriction_enzyme/double_stranded/aligned_strands'
17
18
  require 'bio/util/restriction_enzyme/double_stranded'
18
19
 
19
- module Bio #:nodoc:
20
+ module Bio; module TestRestrictionEnzyme #:nodoc:
20
21
 
21
22
  class TestDoubleStrandedAlignedStrands < Test::Unit::TestCase #:nodoc:
22
23
 
@@ -97,4 +98,4 @@ class TestDoubleStrandedAlignedStrands < Test::Unit::TestCase #:nodoc:
97
98
 
98
99
  end
99
100
 
100
- end
101
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_location_pair.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestDoubleStrandedCutLocationPair < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -72,4 +72,4 @@ class TestDoubleStrandedCutLocationPair < Test::Unit::TestCase #:nodoc:
72
72
 
73
73
  end
74
74
 
75
- end
75
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_location_pair_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestDoubleStrandedCutLocationPairInEnzymeNotation < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -70,4 +70,4 @@ class TestDoubleStrandedCutLocationPairInEnzymeNotation < Test::Unit::TestCase #
70
70
 
71
71
  end
72
72
 
73
- end
73
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_locations.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/double_stranded/cut_locations'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestDoubleStrandedCutLocations < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -50,4 +50,4 @@ class TestDoubleStrandedCutLocations < Test::Unit::TestCase #:nodoc:
50
50
 
51
51
  end
52
52
 
53
- end
53
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_locations_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestDoubleStrandedCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -101,4 +101,4 @@ class TestDoubleStrandedCutLocationsInEnzymeNotation < Test::Unit::TestCase #:no
101
101
 
102
102
  end
103
103
 
104
- end
104
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_locations_in_enzyme_notation.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestSingleStrandCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -80,4 +80,4 @@ class TestSingleStrandCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodo
80
80
 
81
81
  end
82
82
 
83
- end
83
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_analysis.rb,v 1.13 2007/07/16 19:29:32 k Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -16,7 +16,7 @@ require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/analysis'
17
17
  require 'bio/sequence'
18
18
 
19
- module Bio #:nodoc:
19
+ module Bio; module TestRestrictionEnzyme #:nodoc:
20
20
 
21
21
  class TestAnalysis < Test::Unit::TestCase #:nodoc:
22
22
 
@@ -243,4 +243,4 @@ class TestAnalysis < Test::Unit::TestCase #:nodoc:
243
243
 
244
244
  end
245
245
 
246
- end
246
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_cut_symbol.rb,v 1.2 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,9 +15,9 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/cut_symbol'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
- class TestStringFormatting < Test::Unit::TestCase #:nodoc:
20
+ class TestCutSymbol < Test::Unit::TestCase #:nodoc:
21
21
 
22
22
  include Bio::RestrictionEnzyme::CutSymbol
23
23
 
@@ -41,4 +41,4 @@ class TestStringFormatting < Test::Unit::TestCase #:nodoc:
41
41
 
42
42
  end
43
43
 
44
- end
44
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_double_stranded.rb,v 1.6 2007/07/16 19:29:32 k Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -16,7 +16,7 @@ require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/double_stranded'
17
17
  require 'bio/sequence'
18
18
 
19
- module Bio #:nodoc:
19
+ module Bio; module TestRestrictionEnzyme #:nodoc:
20
20
 
21
21
  class TestDoubleStranded < Test::Unit::TestCase #:nodoc:
22
22
 
@@ -112,4 +112,4 @@ class TestDoubleStranded < Test::Unit::TestCase #:nodoc:
112
112
 
113
113
  end
114
114
 
115
- end
115
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_single_strand.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/single_strand'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestSingleStrand < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -144,4 +144,4 @@ class TestSingleStrand < Test::Unit::TestCase #:nodoc:
144
144
 
145
145
  end
146
146
 
147
- end
147
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_single_strand_complement.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/single_strand_complement'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestSingleStrandComplement < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -144,4 +144,4 @@ class TestSingleStrandComplement < Test::Unit::TestCase #:nodoc:
144
144
 
145
145
  end
146
146
 
147
- end
147
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_string_formatting.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme/string_formatting'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestStringFormatting < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -57,4 +57,4 @@ class TestStringFormatting < Test::Unit::TestCase #:nodoc:
57
57
 
58
58
  end
59
59
 
60
- end
60
+ end; end
@@ -5,7 +5,7 @@
5
5
  # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
6
6
  # License:: The Ruby License
7
7
  #
8
- # $Id: test_restriction_enzyme.rb,v 1.3 2007/04/05 23:35:44 trevor Exp $
8
+ # $Id:$
9
9
  #
10
10
 
11
11
  require 'pathname'
@@ -15,7 +15,7 @@ $:.unshift(libpath) unless $:.include?(libpath)
15
15
  require 'test/unit'
16
16
  require 'bio/util/restriction_enzyme.rb'
17
17
 
18
- module Bio #:nodoc:
18
+ module Bio; module TestRestrictionEnzyme #:nodoc:
19
19
 
20
20
  class TestRestrictionEnzyme < Test::Unit::TestCase #:nodoc:
21
21
 
@@ -39,4 +39,4 @@ class TestRestrictionEnzyme < Test::Unit::TestCase #:nodoc:
39
39
 
40
40
  end
41
41
 
42
- end
42
+ end; end
metadata CHANGED
@@ -1,127 +1,142 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: bio
5
3
  version: !ruby/object:Gem::Version
6
- version: 1.2.1
7
- date: 2007-12-30 00:00:00 +09:00
8
- summary: Bioinformatics library
9
- require_paths:
10
- - lib
11
- email: staff@bioruby.org
12
- homepage: http://bioruby.org/
13
- rubyforge_project: bioruby
14
- description: BioRuby is a library for bioinformatics (biology + information science).
15
- autorequire: bio
16
- default_executable: bioruby
17
- bindir: bin
18
- has_rdoc: false
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: 1.3.0
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - BioRuby project
8
+ autorequire: bio
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-02-20 00:00:00 +09:00
13
+ default_executable: bioruby
14
+ dependencies: []
15
+
16
+ description: BioRuby is a library for bioinformatics (biology + information science).
17
+ email: staff@bioruby.org
18
+ executables:
19
+ - bioruby
20
+ - br_biofetch.rb
21
+ - br_bioflat.rb
22
+ - br_biogetseq.rb
23
+ - br_pmfetch.rb
24
+ extensions: []
25
+
26
+ extra_rdoc_files:
27
+ - ChangeLog
28
+ - KNOWN_ISSUES.rdoc
29
+ - README.rdoc
30
+ - README_DEV.rdoc
31
+ - doc/Changes-1.3.rdoc
31
32
  files:
33
+ - ChangeLog
34
+ - KNOWN_ISSUES.rdoc
35
+ - README.rdoc
36
+ - README_DEV.rdoc
37
+ - Rakefile
32
38
  - bin/bioruby
33
39
  - bin/br_biofetch.rb
34
40
  - bin/br_bioflat.rb
35
41
  - bin/br_biogetseq.rb
36
42
  - bin/br_pmfetch.rb
43
+ - bioruby.gemspec
44
+ - bioruby.gemspec.erb
37
45
  - doc/Changes-0.7.rd
46
+ - doc/Changes-1.3.rdoc
38
47
  - doc/KEGG_API.rd
39
48
  - doc/KEGG_API.rd.ja
40
49
  - doc/Tutorial.rd
50
+ - doc/Tutorial.rd.html
41
51
  - doc/Tutorial.rd.ja
42
- - etc/bioinformatics
52
+ - doc/Tutorial.rd.ja.html
53
+ - doc/bioruby.css
43
54
  - etc/bioinformatics/seqdatabase.ini
44
- - lib/bio
55
+ - extconf.rb
56
+ - lib/bio.rb
45
57
  - lib/bio/alignment.rb
46
- - lib/bio/appl
47
- - lib/bio/appl/bl2seq
48
58
  - lib/bio/appl/bl2seq/report.rb
49
- - lib/bio/appl/blast
59
+ - lib/bio/appl/blast.rb
60
+ - lib/bio/appl/blast/ddbj.rb
50
61
  - lib/bio/appl/blast/format0.rb
51
62
  - lib/bio/appl/blast/format8.rb
63
+ - lib/bio/appl/blast/genomenet.rb
64
+ - lib/bio/appl/blast/ncbioptions.rb
65
+ - lib/bio/appl/blast/remote.rb
52
66
  - lib/bio/appl/blast/report.rb
53
67
  - lib/bio/appl/blast/rexml.rb
68
+ - lib/bio/appl/blast/rpsblast.rb
54
69
  - lib/bio/appl/blast/wublast.rb
55
70
  - lib/bio/appl/blast/xmlparser.rb
56
- - lib/bio/appl/blast.rb
57
- - lib/bio/appl/blat
58
71
  - lib/bio/appl/blat/report.rb
59
- - lib/bio/appl/clustalw
60
- - lib/bio/appl/clustalw/report.rb
61
72
  - lib/bio/appl/clustalw.rb
73
+ - lib/bio/appl/clustalw/report.rb
62
74
  - lib/bio/appl/emboss.rb
63
- - lib/bio/appl/fasta
64
- - lib/bio/appl/fasta/format10.rb
65
75
  - lib/bio/appl/fasta.rb
66
- - lib/bio/appl/gcg
76
+ - lib/bio/appl/fasta/format10.rb
67
77
  - lib/bio/appl/gcg/msf.rb
68
78
  - lib/bio/appl/gcg/seq.rb
69
- - lib/bio/appl/genscan
70
79
  - lib/bio/appl/genscan/report.rb
71
- - lib/bio/appl/hmmer
72
- - lib/bio/appl/hmmer/report.rb
73
80
  - lib/bio/appl/hmmer.rb
74
- - lib/bio/appl/iprscan
81
+ - lib/bio/appl/hmmer/report.rb
75
82
  - lib/bio/appl/iprscan/report.rb
76
- - lib/bio/appl/mafft
77
- - lib/bio/appl/mafft/report.rb
78
83
  - lib/bio/appl/mafft.rb
84
+ - lib/bio/appl/mafft/report.rb
79
85
  - lib/bio/appl/muscle.rb
80
- - lib/bio/appl/phylip
86
+ - lib/bio/appl/paml/baseml.rb
87
+ - lib/bio/appl/paml/baseml/report.rb
88
+ - lib/bio/appl/paml/codeml.rb
89
+ - lib/bio/appl/paml/codeml/rates.rb
90
+ - lib/bio/appl/paml/codeml/report.rb
91
+ - lib/bio/appl/paml/common.rb
92
+ - lib/bio/appl/paml/common_report.rb
93
+ - lib/bio/appl/paml/yn00.rb
94
+ - lib/bio/appl/paml/yn00/report.rb
81
95
  - lib/bio/appl/phylip/alignment.rb
82
96
  - lib/bio/appl/phylip/distance_matrix.rb
83
97
  - lib/bio/appl/probcons.rb
84
- - lib/bio/appl/psort
85
- - lib/bio/appl/psort/report.rb
86
98
  - lib/bio/appl/psort.rb
99
+ - lib/bio/appl/psort/report.rb
87
100
  - lib/bio/appl/pts1.rb
88
- - lib/bio/appl/sim4
89
- - lib/bio/appl/sim4/report.rb
90
101
  - lib/bio/appl/sim4.rb
91
- - lib/bio/appl/sosui
102
+ - lib/bio/appl/sim4/report.rb
92
103
  - lib/bio/appl/sosui/report.rb
93
- - lib/bio/appl/spidey
94
104
  - lib/bio/appl/spidey/report.rb
95
- - lib/bio/appl/targetp
96
105
  - lib/bio/appl/targetp/report.rb
97
106
  - lib/bio/appl/tcoffee.rb
98
- - lib/bio/appl/tmhmm
99
107
  - lib/bio/appl/tmhmm/report.rb
100
108
  - lib/bio/command.rb
101
- - lib/bio/data
109
+ - lib/bio/compat/features.rb
110
+ - lib/bio/compat/references.rb
102
111
  - lib/bio/data/aa.rb
103
112
  - lib/bio/data/codontable.rb
104
113
  - lib/bio/data/na.rb
105
- - lib/bio/db
114
+ - lib/bio/db.rb
106
115
  - lib/bio/db/aaindex.rb
107
- - lib/bio/db/embl
116
+ - lib/bio/db/biosql/biosql_to_biosequence.rb
117
+ - lib/bio/db/biosql/sequence.rb
108
118
  - lib/bio/db/embl/common.rb
109
119
  - lib/bio/db/embl/embl.rb
120
+ - lib/bio/db/embl/embl_to_biosequence.rb
121
+ - lib/bio/db/embl/format_embl.rb
110
122
  - lib/bio/db/embl/sptr.rb
111
123
  - lib/bio/db/embl/swissprot.rb
112
124
  - lib/bio/db/embl/trembl.rb
113
125
  - lib/bio/db/embl/uniprot.rb
114
126
  - lib/bio/db/fantom.rb
115
127
  - lib/bio/db/fasta.rb
116
- - lib/bio/db/genbank
128
+ - lib/bio/db/fasta/defline.rb
129
+ - lib/bio/db/fasta/fasta_to_biosequence.rb
130
+ - lib/bio/db/fasta/format_fasta.rb
117
131
  - lib/bio/db/genbank/common.rb
118
132
  - lib/bio/db/genbank/ddbj.rb
133
+ - lib/bio/db/genbank/format_genbank.rb
119
134
  - lib/bio/db/genbank/genbank.rb
135
+ - lib/bio/db/genbank/genbank_to_biosequence.rb
120
136
  - lib/bio/db/genbank/genpept.rb
121
137
  - lib/bio/db/genbank/refseq.rb
122
138
  - lib/bio/db/gff.rb
123
139
  - lib/bio/db/go.rb
124
- - lib/bio/db/kegg
125
140
  - lib/bio/db/kegg/brite.rb
126
141
  - lib/bio/db/kegg/compound.rb
127
142
  - lib/bio/db/kegg/drug.rb
@@ -141,7 +156,7 @@ files:
141
156
  - lib/bio/db/nbrf.rb
142
157
  - lib/bio/db/newick.rb
143
158
  - lib/bio/db/nexus.rb
144
- - lib/bio/db/pdb
159
+ - lib/bio/db/pdb.rb
145
160
  - lib/bio/db/pdb/atom.rb
146
161
  - lib/bio/db/pdb/chain.rb
147
162
  - lib/bio/db/pdb/chemicalcomponent.rb
@@ -149,14 +164,40 @@ files:
149
164
  - lib/bio/db/pdb/pdb.rb
150
165
  - lib/bio/db/pdb/residue.rb
151
166
  - lib/bio/db/pdb/utils.rb
152
- - lib/bio/db/pdb.rb
153
167
  - lib/bio/db/prosite.rb
154
168
  - lib/bio/db/rebase.rb
155
169
  - lib/bio/db/soft.rb
156
170
  - lib/bio/db/transfac.rb
157
- - lib/bio/db.rb
158
171
  - lib/bio/feature.rb
159
- - lib/bio/io
172
+ - lib/bio/io/biosql/biodatabase.rb
173
+ - lib/bio/io/biosql/bioentry.rb
174
+ - lib/bio/io/biosql/bioentry_dbxref.rb
175
+ - lib/bio/io/biosql/bioentry_path.rb
176
+ - lib/bio/io/biosql/bioentry_qualifier_value.rb
177
+ - lib/bio/io/biosql/bioentry_reference.rb
178
+ - lib/bio/io/biosql/bioentry_relationship.rb
179
+ - lib/bio/io/biosql/biosequence.rb
180
+ - lib/bio/io/biosql/comment.rb
181
+ - lib/bio/io/biosql/config/database.yml
182
+ - lib/bio/io/biosql/dbxref.rb
183
+ - lib/bio/io/biosql/dbxref_qualifier_value.rb
184
+ - lib/bio/io/biosql/location.rb
185
+ - lib/bio/io/biosql/location_qualifier_value.rb
186
+ - lib/bio/io/biosql/ontology.rb
187
+ - lib/bio/io/biosql/reference.rb
188
+ - lib/bio/io/biosql/seqfeature.rb
189
+ - lib/bio/io/biosql/seqfeature_dbxref.rb
190
+ - lib/bio/io/biosql/seqfeature_path.rb
191
+ - lib/bio/io/biosql/seqfeature_qualifier_value.rb
192
+ - lib/bio/io/biosql/seqfeature_relationship.rb
193
+ - lib/bio/io/biosql/taxon.rb
194
+ - lib/bio/io/biosql/taxon_name.rb
195
+ - lib/bio/io/biosql/term.rb
196
+ - lib/bio/io/biosql/term_dbxref.rb
197
+ - lib/bio/io/biosql/term_path.rb
198
+ - lib/bio/io/biosql/term_relationship.rb
199
+ - lib/bio/io/biosql/term_relationship_term.rb
200
+ - lib/bio/io/biosql/term_synonym.rb
160
201
  - lib/bio/io/das.rb
161
202
  - lib/bio/io/dbget.rb
162
203
  - lib/bio/io/ddbjxml.rb
@@ -164,37 +205,43 @@ files:
164
205
  - lib/bio/io/ensembl.rb
165
206
  - lib/bio/io/fastacmd.rb
166
207
  - lib/bio/io/fetch.rb
167
- - lib/bio/io/flatfile
208
+ - lib/bio/io/flatfile.rb
209
+ - lib/bio/io/flatfile/autodetection.rb
168
210
  - lib/bio/io/flatfile/bdb.rb
211
+ - lib/bio/io/flatfile/buffer.rb
169
212
  - lib/bio/io/flatfile/index.rb
170
213
  - lib/bio/io/flatfile/indexer.rb
171
- - lib/bio/io/flatfile.rb
214
+ - lib/bio/io/flatfile/splitter.rb
172
215
  - lib/bio/io/higet.rb
216
+ - lib/bio/io/hinv.rb
173
217
  - lib/bio/io/keggapi.rb
218
+ - lib/bio/io/ncbirest.rb
174
219
  - lib/bio/io/ncbisoap.rb
175
220
  - lib/bio/io/pubmed.rb
176
221
  - lib/bio/io/registry.rb
177
222
  - lib/bio/io/soapwsdl.rb
178
223
  - lib/bio/io/sql.rb
224
+ - lib/bio/io/togows.rb
179
225
  - lib/bio/location.rb
180
226
  - lib/bio/map.rb
181
227
  - lib/bio/pathway.rb
182
228
  - lib/bio/reference.rb
183
- - lib/bio/sequence
229
+ - lib/bio/sequence.rb
184
230
  - lib/bio/sequence/aa.rb
231
+ - lib/bio/sequence/adapter.rb
185
232
  - lib/bio/sequence/common.rb
186
233
  - lib/bio/sequence/compat.rb
234
+ - lib/bio/sequence/dblink.rb
187
235
  - lib/bio/sequence/format.rb
236
+ - lib/bio/sequence/format_raw.rb
188
237
  - lib/bio/sequence/generic.rb
189
238
  - lib/bio/sequence/na.rb
190
- - lib/bio/sequence.rb
191
- - lib/bio/shell
239
+ - lib/bio/shell.rb
192
240
  - lib/bio/shell/core.rb
193
241
  - lib/bio/shell/demo.rb
194
242
  - lib/bio/shell/interface.rb
195
243
  - lib/bio/shell/irb.rb
196
244
  - lib/bio/shell/object.rb
197
- - lib/bio/shell/plugin
198
245
  - lib/bio/shell/plugin/blast.rb
199
246
  - lib/bio/shell/plugin/codon.rb
200
247
  - lib/bio/shell/plugin/das.rb
@@ -203,40 +250,34 @@ files:
203
250
  - lib/bio/shell/plugin/flatfile.rb
204
251
  - lib/bio/shell/plugin/keggapi.rb
205
252
  - lib/bio/shell/plugin/midi.rb
253
+ - lib/bio/shell/plugin/ncbirest.rb
206
254
  - lib/bio/shell/plugin/obda.rb
207
255
  - lib/bio/shell/plugin/psort.rb
208
256
  - lib/bio/shell/plugin/seq.rb
209
257
  - lib/bio/shell/plugin/soap.rb
210
- - lib/bio/shell/rails
211
- - lib/bio/shell/rails/vendor
212
- - lib/bio/shell/rails/vendor/plugins
213
- - lib/bio/shell/rails/vendor/plugins/generators
214
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby
215
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb
216
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates
217
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_classes.rhtml
218
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_log.rhtml
219
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_methods.rhtml
220
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_modules.rhtml
221
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_variables.rhtml
222
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-bg.gif
223
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-gem.png
224
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-link.gif
225
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.css
226
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.rhtml
227
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_controller.rb
228
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_helper.rb
229
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/commands.rhtml
230
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/history.rhtml
231
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/index.rhtml
232
- - lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/spinner.gif
258
+ - lib/bio/shell/plugin/togows.rb
259
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/bioruby_generator.rb
260
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_classes.rhtml
261
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_log.rhtml
262
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_methods.rhtml
263
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_modules.rhtml
264
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_variables.rhtml
265
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-bg.gif
266
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-gem.png
267
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-link.gif
268
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.css
269
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.rhtml
270
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_controller.rb
271
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_helper.rb
272
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/commands.rhtml
273
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/history.rhtml
274
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/index.rhtml
275
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/spinner.gif
233
276
  - lib/bio/shell/script.rb
234
277
  - lib/bio/shell/setup.rb
235
278
  - lib/bio/shell/web.rb
236
- - lib/bio/shell.rb
237
279
  - lib/bio/tree.rb
238
- - lib/bio/util
239
- - lib/bio/util/color_scheme
280
+ - lib/bio/util/color_scheme.rb
240
281
  - lib/bio/util/color_scheme/buried.rb
241
282
  - lib/bio/util/color_scheme/helix.rb
242
283
  - lib/bio/util/color_scheme/hydropathy.rb
@@ -245,44 +286,42 @@ files:
245
286
  - lib/bio/util/color_scheme/taylor.rb
246
287
  - lib/bio/util/color_scheme/turn.rb
247
288
  - lib/bio/util/color_scheme/zappo.rb
248
- - lib/bio/util/color_scheme.rb
249
289
  - lib/bio/util/contingency_table.rb
250
- - lib/bio/util/restriction_enzyme
290
+ - lib/bio/util/restriction_enzyme.rb
251
291
  - lib/bio/util/restriction_enzyme/analysis.rb
252
292
  - lib/bio/util/restriction_enzyme/analysis_basic.rb
253
293
  - lib/bio/util/restriction_enzyme/cut_symbol.rb
254
- - lib/bio/util/restriction_enzyme/double_stranded
294
+ - lib/bio/util/restriction_enzyme/double_stranded.rb
255
295
  - lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb
256
296
  - lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb
257
297
  - lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb
258
298
  - lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb
259
299
  - lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb
260
- - lib/bio/util/restriction_enzyme/double_stranded.rb
261
300
  - lib/bio/util/restriction_enzyme/enzymes.yaml
262
- - lib/bio/util/restriction_enzyme/range
263
301
  - lib/bio/util/restriction_enzyme/range/cut_range.rb
264
302
  - lib/bio/util/restriction_enzyme/range/cut_ranges.rb
265
303
  - lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb
266
- - lib/bio/util/restriction_enzyme/range/sequence_range
304
+ - lib/bio/util/restriction_enzyme/range/sequence_range.rb
267
305
  - lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb
268
306
  - lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb
269
307
  - lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb
270
- - lib/bio/util/restriction_enzyme/range/sequence_range.rb
271
308
  - lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb
272
- - lib/bio/util/restriction_enzyme/single_strand
273
- - lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb
274
309
  - lib/bio/util/restriction_enzyme/single_strand.rb
310
+ - lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb
275
311
  - lib/bio/util/restriction_enzyme/single_strand_complement.rb
276
312
  - lib/bio/util/restriction_enzyme/string_formatting.rb
277
- - lib/bio/util/restriction_enzyme.rb
278
313
  - lib/bio/util/sirna.rb
279
- - lib/bio.rb
314
+ - lib/bio/version.rb
315
+ - rdoc.zsh
280
316
  - sample/any2fasta.rb
281
317
  - sample/biofetch.rb
282
318
  - sample/color_scheme_na.rb
283
319
  - sample/dbget
320
+ - sample/demo_sequence.rb
284
321
  - sample/enzymes.rb
285
322
  - sample/fasta2tab.rb
323
+ - sample/fastagrep.rb
324
+ - sample/fastasort.rb
286
325
  - sample/fsplit.rb
287
326
  - sample/gb2fasta.rb
288
327
  - sample/gb2tab.rb
@@ -294,6 +333,7 @@ files:
294
333
  - sample/genome2tab.rb
295
334
  - sample/goslim.rb
296
335
  - sample/gt2fasta.rb
336
+ - sample/na2aa.rb
297
337
  - sample/pmfetch.rb
298
338
  - sample/pmsearch.rb
299
339
  - sample/psortplot_html.rb
@@ -301,114 +341,97 @@ files:
301
341
  - sample/tdiary.rb
302
342
  - sample/tfastx2tab.rb
303
343
  - sample/vs-genes.rb
304
- - test/data
305
- - test/data/aaindex
344
+ - setup.rb
345
+ - test/data/HMMER/hmmpfam.out
346
+ - test/data/HMMER/hmmsearch.out
347
+ - test/data/SOSUI/sample.report
348
+ - test/data/TMHMM/sample.report
306
349
  - test/data/aaindex/DAYM780301
307
350
  - test/data/aaindex/PRAM900102
308
- - test/data/bl2seq
309
351
  - test/data/bl2seq/cd8a_cd8b_blastp.bl2seq
310
352
  - test/data/bl2seq/cd8a_p53_e-5blastp.bl2seq
311
- - test/data/blast
312
353
  - test/data/blast/2.2.15.blastp.m7
313
354
  - test/data/blast/b0002.faa
314
355
  - test/data/blast/b0002.faa.m0
315
356
  - test/data/blast/b0002.faa.m7
316
357
  - test/data/blast/b0002.faa.m8
317
- - test/data/embl
358
+ - test/data/blast/blastp-multi.m7
359
+ - test/data/command/echoarg2.bat
318
360
  - test/data/embl/AB090716.embl
319
361
  - test/data/embl/AB090716.embl.rel89
320
- - test/data/fasta
321
362
  - test/data/fasta/example1.txt
322
363
  - test/data/fasta/example2.txt
323
- - test/data/genscan
324
364
  - test/data/genscan/sample.report
325
- - test/data/HMMER
326
- - test/data/HMMER/hmmpfam.out
327
- - test/data/HMMER/hmmsearch.out
328
- - test/data/iprscan
329
365
  - test/data/iprscan/merged.raw
330
366
  - test/data/iprscan/merged.txt
331
- - test/data/prosite
367
+ - test/data/paml/codeml/control_file.txt
368
+ - test/data/paml/codeml/output.txt
369
+ - test/data/paml/codeml/rates
332
370
  - test/data/prosite/prosite.dat
333
- - test/data/refseq
334
371
  - test/data/refseq/nm_126355.entret
335
- - test/data/soft
372
+ - test/data/rpsblast/misc.rpsblast
336
373
  - test/data/soft/GDS100_partial.soft
337
374
  - test/data/soft/GSE3457_family_partial.soft
338
- - test/data/SOSUI
339
- - test/data/SOSUI/sample.report
340
- - test/data/TMHMM
341
- - test/data/TMHMM/sample.report
342
- - test/data/uniprot
343
375
  - test/data/uniprot/p53_human.uniprot
344
- - test/functional
345
- - test/functional/bio
346
- - test/functional/bio/io
376
+ - test/functional/bio/appl/test_pts1.rb
347
377
  - test/functional/bio/io/test_ensembl.rb
348
378
  - test/functional/bio/io/test_soapwsdl.rb
379
+ - test/functional/bio/io/test_togows.rb
380
+ - test/functional/bio/sequence/test_output_embl.rb
381
+ - test/functional/bio/test_command.rb
349
382
  - test/runner.rb
350
- - test/unit
351
- - test/unit/bio
352
- - test/unit/bio/appl
353
- - test/unit/bio/appl/bl2seq
354
383
  - test/unit/bio/appl/bl2seq/test_report.rb
355
- - test/unit/bio/appl/blast
384
+ - test/unit/bio/appl/blast/test_ncbioptions.rb
356
385
  - test/unit/bio/appl/blast/test_report.rb
357
- - test/unit/bio/appl/blast/test_xmlparser.rb
358
- - test/unit/bio/appl/genscan
386
+ - test/unit/bio/appl/blast/test_rpsblast.rb
359
387
  - test/unit/bio/appl/genscan/test_report.rb
360
- - test/unit/bio/appl/hmmer
361
388
  - test/unit/bio/appl/hmmer/test_report.rb
362
- - test/unit/bio/appl/iprscan
363
389
  - test/unit/bio/appl/iprscan/test_report.rb
364
- - test/unit/bio/appl/mafft
365
390
  - test/unit/bio/appl/mafft/test_report.rb
366
- - test/unit/bio/appl/sosui
391
+ - test/unit/bio/appl/paml/codeml/test_rates.rb
392
+ - test/unit/bio/appl/paml/codeml/test_report.rb
393
+ - test/unit/bio/appl/paml/test_codeml.rb
367
394
  - test/unit/bio/appl/sosui/test_report.rb
368
- - test/unit/bio/appl/targetp
369
395
  - test/unit/bio/appl/targetp/test_report.rb
370
396
  - test/unit/bio/appl/test_blast.rb
371
397
  - test/unit/bio/appl/test_fasta.rb
372
398
  - test/unit/bio/appl/test_pts1.rb
373
- - test/unit/bio/appl/tmhmm
374
399
  - test/unit/bio/appl/tmhmm/test_report.rb
375
- - test/unit/bio/data
376
400
  - test/unit/bio/data/test_aa.rb
377
401
  - test/unit/bio/data/test_codontable.rb
378
402
  - test/unit/bio/data/test_na.rb
379
- - test/unit/bio/db
380
- - test/unit/bio/db/embl
381
403
  - test/unit/bio/db/embl/test_common.rb
382
404
  - test/unit/bio/db/embl/test_embl.rb
383
405
  - test/unit/bio/db/embl/test_embl_rel89.rb
406
+ - test/unit/bio/db/embl/test_embl_to_bioseq.rb
384
407
  - test/unit/bio/db/embl/test_sptr.rb
385
408
  - test/unit/bio/db/embl/test_uniprot.rb
386
- - test/unit/bio/db/kegg
387
409
  - test/unit/bio/db/kegg/test_genes.rb
388
- - test/unit/bio/db/pdb
389
410
  - test/unit/bio/db/pdb/test_pdb.rb
390
411
  - test/unit/bio/db/test_aaindex.rb
391
412
  - test/unit/bio/db/test_fasta.rb
392
413
  - test/unit/bio/db/test_gff.rb
393
414
  - test/unit/bio/db/test_lasergene.rb
415
+ - test/unit/bio/db/test_medline.rb
394
416
  - test/unit/bio/db/test_newick.rb
395
417
  - test/unit/bio/db/test_nexus.rb
396
418
  - test/unit/bio/db/test_prosite.rb
397
419
  - test/unit/bio/db/test_rebase.rb
398
420
  - test/unit/bio/db/test_soft.rb
399
- - test/unit/bio/io
421
+ - test/unit/bio/io/flatfile/test_autodetection.rb
422
+ - test/unit/bio/io/flatfile/test_buffer.rb
423
+ - test/unit/bio/io/flatfile/test_splitter.rb
400
424
  - test/unit/bio/io/test_ddbjxml.rb
401
425
  - test/unit/bio/io/test_ensembl.rb
402
426
  - test/unit/bio/io/test_fastacmd.rb
403
427
  - test/unit/bio/io/test_flatfile.rb
404
428
  - test/unit/bio/io/test_soapwsdl.rb
405
- - test/unit/bio/sequence
429
+ - test/unit/bio/io/test_togows.rb
406
430
  - test/unit/bio/sequence/test_aa.rb
407
431
  - test/unit/bio/sequence/test_common.rb
408
432
  - test/unit/bio/sequence/test_compat.rb
433
+ - test/unit/bio/sequence/test_dblink.rb
409
434
  - test/unit/bio/sequence/test_na.rb
410
- - test/unit/bio/shell
411
- - test/unit/bio/shell/plugin
412
435
  - test/unit/bio/shell/plugin/test_seq.rb
413
436
  - test/unit/bio/test_alignment.rb
414
437
  - test/unit/bio/test_command.rb
@@ -421,19 +444,14 @@ files:
421
444
  - test/unit/bio/test_sequence.rb
422
445
  - test/unit/bio/test_shell.rb
423
446
  - test/unit/bio/test_tree.rb
424
- - test/unit/bio/util
425
- - test/unit/bio/util/restriction_enzyme
426
- - test/unit/bio/util/restriction_enzyme/analysis
427
447
  - test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb
428
448
  - test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb
429
449
  - test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb
430
- - test/unit/bio/util/restriction_enzyme/double_stranded
431
450
  - test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb
432
451
  - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb
433
452
  - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb
434
453
  - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb
435
454
  - test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb
436
- - test/unit/bio/util/restriction_enzyme/single_strand
437
455
  - test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb
438
456
  - test/unit/bio/util/restriction_enzyme/test_analysis.rb
439
457
  - test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb
@@ -445,21 +463,38 @@ files:
445
463
  - test/unit/bio/util/test_contingency_table.rb
446
464
  - test/unit/bio/util/test_restriction_enzyme.rb
447
465
  - test/unit/bio/util/test_sirna.rb
448
- test_files: []
449
-
450
- rdoc_options: []
451
-
452
- extra_rdoc_files: []
453
-
454
- executables:
455
- - bioruby
456
- - br_biofetch.rb
457
- - br_biogetseq.rb
458
- - br_bioflat.rb
459
- - br_pmfetch.rb
460
- extensions: []
461
-
466
+ has_rdoc: true
467
+ homepage: http://bioruby.org/
468
+ post_install_message:
469
+ rdoc_options:
470
+ - --main
471
+ - README.rdoc
472
+ - --title
473
+ - BioRuby API documentation
474
+ - --exclude
475
+ - \.yaml\z
476
+ - --line-numbers
477
+ - --inline-source
478
+ require_paths:
479
+ - lib
480
+ required_ruby_version: !ruby/object:Gem::Requirement
481
+ requirements:
482
+ - - ">="
483
+ - !ruby/object:Gem::Version
484
+ version: "0"
485
+ version:
486
+ required_rubygems_version: !ruby/object:Gem::Requirement
487
+ requirements:
488
+ - - ">="
489
+ - !ruby/object:Gem::Version
490
+ version: "0"
491
+ version:
462
492
  requirements: []
463
493
 
464
- dependencies: []
494
+ rubyforge_project: bioruby
495
+ rubygems_version: 1.3.1
496
+ signing_key:
497
+ specification_version: 2
498
+ summary: Bioinformatics library
499
+ test_files: []
465
500