bio 1.4.3.0001 → 1.5.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 (158) hide show
  1. checksums.yaml +7 -0
  2. data/.travis.yml +39 -33
  3. data/BSDL +22 -0
  4. data/COPYING +2 -2
  5. data/COPYING.ja +36 -36
  6. data/ChangeLog +2404 -1025
  7. data/KNOWN_ISSUES.rdoc +15 -55
  8. data/README.rdoc +17 -23
  9. data/RELEASE_NOTES.rdoc +246 -183
  10. data/Rakefile +3 -2
  11. data/bin/br_biofetch.rb +29 -5
  12. data/bioruby.gemspec +15 -32
  13. data/bioruby.gemspec.erb +10 -20
  14. data/doc/ChangeLog-1.4.3 +1478 -0
  15. data/doc/RELEASE_NOTES-1.4.3.rdoc +204 -0
  16. data/doc/Tutorial.rd +0 -6
  17. data/doc/Tutorial.rd.html +7 -12
  18. data/doc/Tutorial.rd.ja +960 -1064
  19. data/doc/Tutorial.rd.ja.html +977 -1067
  20. data/gemfiles/Gemfile.travis-jruby1.8 +2 -1
  21. data/gemfiles/Gemfile.travis-jruby1.9 +2 -4
  22. data/gemfiles/Gemfile.travis-rbx +13 -0
  23. data/gemfiles/Gemfile.travis-ruby1.8 +2 -1
  24. data/gemfiles/Gemfile.travis-ruby1.9 +2 -4
  25. data/gemfiles/Gemfile.travis-ruby2.2 +9 -0
  26. data/lib/bio.rb +10 -43
  27. data/lib/bio/alignment.rb +8 -14
  28. data/lib/bio/appl/blast.rb +1 -2
  29. data/lib/bio/appl/blast/format0.rb +18 -7
  30. data/lib/bio/appl/blast/remote.rb +0 -9
  31. data/lib/bio/appl/blast/report.rb +1 -1
  32. data/lib/bio/appl/clustalw/report.rb +3 -1
  33. data/lib/bio/appl/genscan/report.rb +1 -2
  34. data/lib/bio/appl/iprscan/report.rb +1 -2
  35. data/lib/bio/appl/meme/mast.rb +4 -4
  36. data/lib/bio/appl/meme/mast/report.rb +1 -1
  37. data/lib/bio/appl/paml/codeml.rb +2 -2
  38. data/lib/bio/appl/paml/codeml/report.rb +1 -0
  39. data/lib/bio/appl/paml/common.rb +1 -1
  40. data/lib/bio/appl/sosui/report.rb +1 -2
  41. data/lib/bio/command.rb +62 -2
  42. data/lib/bio/data/aa.rb +13 -31
  43. data/lib/bio/data/codontable.rb +1 -2
  44. data/lib/bio/db/biosql/biosql_to_biosequence.rb +1 -0
  45. data/lib/bio/db/biosql/sequence.rb +1 -1
  46. data/lib/bio/db/embl/common.rb +1 -1
  47. data/lib/bio/db/embl/embl.rb +5 -4
  48. data/lib/bio/db/embl/format_embl.rb +3 -3
  49. data/lib/bio/db/embl/sptr.rb +9 -1444
  50. data/lib/bio/db/embl/swissprot.rb +12 -29
  51. data/lib/bio/db/embl/trembl.rb +13 -30
  52. data/lib/bio/db/embl/uniprot.rb +12 -29
  53. data/lib/bio/db/embl/uniprotkb.rb +1455 -0
  54. data/lib/bio/db/fasta.rb +17 -0
  55. data/lib/bio/db/fasta/defline.rb +1 -3
  56. data/lib/bio/db/fastq.rb +1 -1
  57. data/lib/bio/db/genbank/ddbj.rb +9 -5
  58. data/lib/bio/db/genbank/refseq.rb +11 -3
  59. data/lib/bio/db/gff.rb +3 -4
  60. data/lib/bio/db/go.rb +5 -6
  61. data/lib/bio/db/kegg/module.rb +4 -5
  62. data/lib/bio/db/kegg/pathway.rb +4 -5
  63. data/lib/bio/db/kegg/reaction.rb +1 -1
  64. data/lib/bio/db/nexus.rb +3 -2
  65. data/lib/bio/db/pdb/pdb.rb +2 -2
  66. data/lib/bio/db/phyloxml/phyloxml_elements.rb +82 -59
  67. data/lib/bio/db/phyloxml/phyloxml_parser.rb +2 -2
  68. data/lib/bio/db/phyloxml/phyloxml_writer.rb +1 -2
  69. data/lib/bio/db/sanger_chromatogram/chromatogram.rb +1 -2
  70. data/lib/bio/db/transfac.rb +1 -1
  71. data/lib/bio/io/das.rb +40 -41
  72. data/lib/bio/io/fastacmd.rb +0 -16
  73. data/lib/bio/io/fetch.rb +111 -55
  74. data/lib/bio/io/flatfile/buffer.rb +4 -5
  75. data/lib/bio/io/hinv.rb +2 -3
  76. data/lib/bio/io/ncbirest.rb +43 -6
  77. data/lib/bio/io/pubmed.rb +76 -81
  78. data/lib/bio/io/togows.rb +33 -10
  79. data/lib/bio/map.rb +1 -1
  80. data/lib/bio/pathway.rb +1 -1
  81. data/lib/bio/sequence/compat.rb +1 -1
  82. data/lib/bio/sequence/na.rb +63 -12
  83. data/lib/bio/shell.rb +0 -2
  84. data/lib/bio/shell/core.rb +5 -6
  85. data/lib/bio/shell/interface.rb +3 -4
  86. data/lib/bio/shell/irb.rb +1 -2
  87. data/lib/bio/shell/plugin/entry.rb +2 -3
  88. data/lib/bio/shell/plugin/seq.rb +7 -6
  89. data/lib/bio/shell/setup.rb +1 -2
  90. data/lib/bio/tree.rb +2 -2
  91. data/lib/bio/util/contingency_table.rb +0 -2
  92. data/lib/bio/util/restriction_enzyme/range/sequence_range.rb +2 -2
  93. data/lib/bio/util/sirna.rb +76 -16
  94. data/lib/bio/version.rb +8 -9
  95. data/sample/benchmark_clustalw_report.rb +47 -0
  96. data/sample/biofetch.rb +248 -151
  97. data/setup.rb +6 -7
  98. data/test/data/clustalw/example1-seqnos.aln +58 -0
  99. data/test/network/bio/appl/blast/test_remote.rb +1 -15
  100. data/test/network/bio/appl/test_blast.rb +0 -12
  101. data/test/network/bio/io/test_pubmed.rb +49 -0
  102. data/test/network/bio/io/test_togows.rb +0 -1
  103. data/test/network/bio/test_command.rb +65 -2
  104. data/test/unit/bio/appl/bl2seq/test_report.rb +0 -1
  105. data/test/unit/bio/appl/blast/test_report.rb +110 -48
  106. data/test/unit/bio/appl/clustalw/test_report.rb +67 -51
  107. data/test/unit/bio/appl/sim4/test_report.rb +46 -17
  108. data/test/unit/bio/appl/test_blast.rb +2 -2
  109. data/test/unit/bio/db/embl/test_embl.rb +0 -1
  110. data/test/unit/bio/db/embl/test_embl_rel89.rb +0 -1
  111. data/test/unit/bio/db/embl/{test_sptr.rb → test_uniprotkb.rb} +111 -115
  112. data/test/unit/bio/db/embl/{test_uniprot_new_part.rb → test_uniprotkb_new_part.rb} +11 -11
  113. data/test/unit/bio/db/genbank/test_genbank.rb +10 -4
  114. data/test/unit/bio/db/pdb/test_pdb.rb +14 -8
  115. data/test/unit/bio/db/test_fasta.rb +41 -1
  116. data/test/unit/bio/db/test_fastq.rb +14 -4
  117. data/test/unit/bio/db/test_gff.rb +2 -2
  118. data/test/unit/bio/db/test_phyloxml.rb +30 -30
  119. data/test/unit/bio/db/test_phyloxml_writer.rb +2 -2
  120. data/test/unit/bio/io/flatfile/test_autodetection.rb +1 -2
  121. data/test/unit/bio/io/flatfile/test_buffer.rb +7 -1
  122. data/test/unit/bio/io/flatfile/test_splitter.rb +1 -1
  123. data/test/unit/bio/io/test_togows.rb +3 -2
  124. data/test/unit/bio/sequence/test_dblink.rb +1 -1
  125. data/test/unit/bio/sequence/test_na.rb +3 -1
  126. data/test/unit/bio/test_alignment.rb +1 -2
  127. data/test/unit/bio/test_command.rb +5 -4
  128. data/test/unit/bio/test_db.rb +4 -2
  129. data/test/unit/bio/test_pathway.rb +25 -10
  130. data/test/unit/bio/util/test_sirna.rb +22 -22
  131. metadata +656 -1430
  132. data/doc/KEGG_API.rd +0 -1843
  133. data/doc/KEGG_API.rd.ja +0 -1834
  134. data/extconf.rb +0 -2
  135. data/lib/bio/appl/blast/ddbj.rb +0 -131
  136. data/lib/bio/db/kegg/taxonomy.rb +0 -280
  137. data/lib/bio/io/dbget.rb +0 -194
  138. data/lib/bio/io/ddbjrest.rb +0 -344
  139. data/lib/bio/io/ddbjxml.rb +0 -458
  140. data/lib/bio/io/ebisoap.rb +0 -158
  141. data/lib/bio/io/ensembl.rb +0 -229
  142. data/lib/bio/io/higet.rb +0 -73
  143. data/lib/bio/io/keggapi.rb +0 -363
  144. data/lib/bio/io/ncbisoap.rb +0 -156
  145. data/lib/bio/io/soapwsdl.rb +0 -119
  146. data/lib/bio/shell/plugin/keggapi.rb +0 -181
  147. data/lib/bio/shell/plugin/soap.rb +0 -87
  148. data/sample/dbget +0 -37
  149. data/sample/demo_ddbjxml.rb +0 -212
  150. data/sample/demo_kegg_taxonomy.rb +0 -92
  151. data/sample/demo_keggapi.rb +0 -502
  152. data/sample/psortplot_html.rb +0 -214
  153. data/test/network/bio/io/test_ddbjrest.rb +0 -47
  154. data/test/network/bio/io/test_ensembl.rb +0 -230
  155. data/test/network/bio/io/test_soapwsdl.rb +0 -53
  156. data/test/unit/bio/io/test_ddbjxml.rb +0 -81
  157. data/test/unit/bio/io/test_ensembl.rb +0 -111
  158. data/test/unit/bio/io/test_soapwsdl.rb +0 -33
data/Rakefile CHANGED
@@ -157,7 +157,8 @@ HTMLFILES_TUTORIAL = [ TUTORIAL_RD_HTML, TUTORIAL_RD_JA_HTML ]
157
157
 
158
158
  # Formatting RD to html.
159
159
  def rd2html(src, dst)
160
- sh "rd2 -r rd/rd2html-lib.rb --with-css=bioruby.css #{src} > #{dst}"
160
+ title = File.basename(src)
161
+ sh "rd2 -r rd/rd2html-lib.rb --with-css=bioruby.css --html-title=#{title} #{src} > #{dst}"
161
162
  end
162
163
 
163
164
  # Tutorial.rd to Tutorial.rd.html
@@ -187,7 +188,7 @@ task :rechangelog do
187
188
  # The tag name in the command line should be changed
188
189
  # after releasing new version, updating ChangeLog,
189
190
  # and doing "git mv ChangeLog doc/ChangeLog-X.X.X".
190
- sh "git log --stat --summary 1.4.2..HEAD > ChangeLog"
191
+ sh "git log --stat --summary 1.4.3..HEAD > ChangeLog"
191
192
  end
192
193
 
193
194
  # define mktmpdir
@@ -6,14 +6,35 @@
6
6
  # Toshiaki Katayama <k@bioruby.org>
7
7
  # License:: The Ruby License
8
8
  #
9
- # $Id: br_biofetch.rb,v 1.4 2007/04/05 23:35:39 trevor Exp $
10
9
  #
11
10
 
11
+ begin
12
+ require 'rubygems'
13
+ rescue LoadError
14
+ end
15
+
12
16
  require 'bio/io/fetch'
13
17
 
18
+ def require_bio_old_biofetch_emulator(mandatory = true)
19
+ begin
20
+ require 'bio-old-biofetch-emulator'
21
+ rescue LoadError
22
+ if mandatory then
23
+ $stderr.puts "Error: please install bio-old-biofetch-emulator gem."
24
+ exit 1
25
+ end
26
+ end
27
+ end
28
+
29
+ def default_url
30
+ 'http://bioruby.org/cgi-bin/biofetch.rb'
31
+ end
32
+
33
+ def another_url
34
+ 'http://www.ebi.ac.uk/cgi-bin/dbfetch'
35
+ end
36
+
14
37
  def usage
15
- default_url = 'http://bioruby.org/cgi-bin/biofetch.rb'
16
- another_url = 'http://www.ebi.ac.uk/cgi-bin/dbfetch'
17
38
  puts "#{$0} [-s[erver] #{another_url}] db id [style] [format]"
18
39
  puts " server : URL of the BioFetch CGI (default is #{default_url})"
19
40
  puts " db : database name (embl, genbank, etc.)"
@@ -29,18 +50,21 @@ end
29
50
 
30
51
  case ARGV[0]
31
52
  when /^--?s/ # User specified server
53
+ require_bio_old_biofetch_emulator(false)
32
54
  ARGV.shift
33
55
  serv = Bio::Fetch.new(ARGV.shift)
34
56
  puts serv.fetch(*ARGV)
35
57
  when /^--?e/ # EBI server
36
58
  ARGV.shift
37
- serv = Bio::Fetch.new('http://www.ebi.ac.uk/cgi-bin/dbfetch')
59
+ serv = Bio::Fetch.new(another_url)
38
60
  puts serv.fetch(*ARGV)
39
61
  when /^--?r/ # BioRuby server
62
+ require_bio_old_biofetch_emulator
40
63
  ARGV.shift
41
- serv = Bio::Fetch.new('http://bioruby.org/cgi-bin/biofetch.rb')
64
+ serv = Bio::Fetch.new(default_url)
42
65
  puts serv.fetch(*ARGV)
43
66
  else # Default server
67
+ require_bio_old_biofetch_emulator
44
68
  puts Bio::Fetch.query(*ARGV)
45
69
  end
46
70
 
@@ -3,18 +3,20 @@
3
3
  #
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'bio'
6
- s.version = "1.4.3.0001"
6
+ s.version = "1.5.0"
7
7
 
8
8
  s.author = "BioRuby project"
9
9
  s.email = "staff@bioruby.org"
10
10
  s.homepage = "http://bioruby.org/"
11
- s.rubyforge_project = "bioruby"
11
+ s.license = "Ruby"
12
+
12
13
  s.summary = "Bioinformatics library"
13
14
  s.description = "BioRuby is a library for bioinformatics (biology + information science)."
14
15
 
15
16
  s.platform = Gem::Platform::RUBY
16
17
  s.files = [
17
18
  ".travis.yml",
19
+ "BSDL",
18
20
  "COPYING",
19
21
  "COPYING.ja",
20
22
  "ChangeLog",
@@ -33,33 +35,33 @@ Gem::Specification.new do |s|
33
35
  "bin/br_pmfetch.rb",
34
36
  "bioruby.gemspec",
35
37
  "bioruby.gemspec.erb",
38
+ "doc/ChangeLog-1.4.3",
36
39
  "doc/ChangeLog-before-1.3.1",
37
40
  "doc/ChangeLog-before-1.4.2",
38
41
  "doc/Changes-0.7.rd",
39
42
  "doc/Changes-1.3.rdoc",
40
- "doc/KEGG_API.rd",
41
- "doc/KEGG_API.rd.ja",
42
43
  "doc/RELEASE_NOTES-1.4.0.rdoc",
43
44
  "doc/RELEASE_NOTES-1.4.1.rdoc",
44
45
  "doc/RELEASE_NOTES-1.4.2.rdoc",
46
+ "doc/RELEASE_NOTES-1.4.3.rdoc",
45
47
  "doc/Tutorial.rd",
46
48
  "doc/Tutorial.rd.html",
47
49
  "doc/Tutorial.rd.ja",
48
50
  "doc/Tutorial.rd.ja.html",
49
51
  "doc/bioruby.css",
50
52
  "etc/bioinformatics/seqdatabase.ini",
51
- "extconf.rb",
52
53
  "gemfiles/Gemfile.travis-jruby1.8",
53
54
  "gemfiles/Gemfile.travis-jruby1.9",
55
+ "gemfiles/Gemfile.travis-rbx",
54
56
  "gemfiles/Gemfile.travis-ruby1.8",
55
57
  "gemfiles/Gemfile.travis-ruby1.9",
58
+ "gemfiles/Gemfile.travis-ruby2.2",
56
59
  "gemfiles/modify-Gemfile.rb",
57
60
  "gemfiles/prepare-gemspec.rb",
58
61
  "lib/bio.rb",
59
62
  "lib/bio/alignment.rb",
60
63
  "lib/bio/appl/bl2seq/report.rb",
61
64
  "lib/bio/appl/blast.rb",
62
- "lib/bio/appl/blast/ddbj.rb",
63
65
  "lib/bio/appl/blast/format0.rb",
64
66
  "lib/bio/appl/blast/format8.rb",
65
67
  "lib/bio/appl/blast/genomenet.rb",
@@ -128,6 +130,7 @@ Gem::Specification.new do |s|
128
130
  "lib/bio/db/embl/swissprot.rb",
129
131
  "lib/bio/db/embl/trembl.rb",
130
132
  "lib/bio/db/embl/uniprot.rb",
133
+ "lib/bio/db/embl/uniprotkb.rb",
131
134
  "lib/bio/db/fantom.rb",
132
135
  "lib/bio/db/fasta.rb",
133
136
  "lib/bio/db/fasta/defline.rb",
@@ -163,7 +166,6 @@ Gem::Specification.new do |s|
163
166
  "lib/bio/db/kegg/orthology.rb",
164
167
  "lib/bio/db/kegg/pathway.rb",
165
168
  "lib/bio/db/kegg/reaction.rb",
166
- "lib/bio/db/kegg/taxonomy.rb",
167
169
  "lib/bio/db/lasergene.rb",
168
170
  "lib/bio/db/litdb.rb",
169
171
  "lib/bio/db/medline.rb",
@@ -195,11 +197,6 @@ Gem::Specification.new do |s|
195
197
  "lib/bio/io/biosql/biosql.rb",
196
198
  "lib/bio/io/biosql/config/database.yml",
197
199
  "lib/bio/io/das.rb",
198
- "lib/bio/io/dbget.rb",
199
- "lib/bio/io/ddbjrest.rb",
200
- "lib/bio/io/ddbjxml.rb",
201
- "lib/bio/io/ebisoap.rb",
202
- "lib/bio/io/ensembl.rb",
203
200
  "lib/bio/io/fastacmd.rb",
204
201
  "lib/bio/io/fetch.rb",
205
202
  "lib/bio/io/flatfile.rb",
@@ -209,14 +206,10 @@ Gem::Specification.new do |s|
209
206
  "lib/bio/io/flatfile/index.rb",
210
207
  "lib/bio/io/flatfile/indexer.rb",
211
208
  "lib/bio/io/flatfile/splitter.rb",
212
- "lib/bio/io/higet.rb",
213
209
  "lib/bio/io/hinv.rb",
214
- "lib/bio/io/keggapi.rb",
215
210
  "lib/bio/io/ncbirest.rb",
216
- "lib/bio/io/ncbisoap.rb",
217
211
  "lib/bio/io/pubmed.rb",
218
212
  "lib/bio/io/registry.rb",
219
- "lib/bio/io/soapwsdl.rb",
220
213
  "lib/bio/io/sql.rb",
221
214
  "lib/bio/io/togows.rb",
222
215
  "lib/bio/location.rb",
@@ -247,13 +240,11 @@ Gem::Specification.new do |s|
247
240
  "lib/bio/shell/plugin/emboss.rb",
248
241
  "lib/bio/shell/plugin/entry.rb",
249
242
  "lib/bio/shell/plugin/flatfile.rb",
250
- "lib/bio/shell/plugin/keggapi.rb",
251
243
  "lib/bio/shell/plugin/midi.rb",
252
244
  "lib/bio/shell/plugin/ncbirest.rb",
253
245
  "lib/bio/shell/plugin/obda.rb",
254
246
  "lib/bio/shell/plugin/psort.rb",
255
247
  "lib/bio/shell/plugin/seq.rb",
256
- "lib/bio/shell/plugin/soap.rb",
257
248
  "lib/bio/shell/plugin/togows.rb",
258
249
  "lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/bioruby_generator.rb",
259
250
  "lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_classes.rhtml",
@@ -315,16 +306,15 @@ Gem::Specification.new do |s|
315
306
  "lib/bio/util/sirna.rb",
316
307
  "lib/bio/version.rb",
317
308
  "sample/any2fasta.rb",
309
+ "sample/benchmark_clustalw_report.rb",
318
310
  "sample/biofetch.rb",
319
311
  "sample/color_scheme_na.rb",
320
- "sample/dbget",
321
312
  "sample/demo_aaindex.rb",
322
313
  "sample/demo_aminoacid.rb",
323
314
  "sample/demo_bl2seq_report.rb",
324
315
  "sample/demo_blast_report.rb",
325
316
  "sample/demo_codontable.rb",
326
317
  "sample/demo_das.rb",
327
- "sample/demo_ddbjxml.rb",
328
318
  "sample/demo_fasta_remote.rb",
329
319
  "sample/demo_fastaformat.rb",
330
320
  "sample/demo_genbank.rb",
@@ -338,8 +328,6 @@ Gem::Specification.new do |s|
338
328
  "sample/demo_kegg_glycan.rb",
339
329
  "sample/demo_kegg_orthology.rb",
340
330
  "sample/demo_kegg_reaction.rb",
341
- "sample/demo_kegg_taxonomy.rb",
342
- "sample/demo_keggapi.rb",
343
331
  "sample/demo_litdb.rb",
344
332
  "sample/demo_locations.rb",
345
333
  "sample/demo_ncbi_rest.rb",
@@ -372,7 +360,6 @@ Gem::Specification.new do |s|
372
360
  "sample/na2aa.rb",
373
361
  "sample/pmfetch.rb",
374
362
  "sample/pmsearch.rb",
375
- "sample/psortplot_html.rb",
376
363
  "sample/seqdatabase.ini",
377
364
  "sample/ssearch2tab.rb",
378
365
  "sample/tdiary.rb",
@@ -414,6 +401,7 @@ Gem::Specification.new do |s|
414
401
  "test/data/blast/b0002.faa.m7",
415
402
  "test/data/blast/b0002.faa.m8",
416
403
  "test/data/blast/blastp-multi.m7",
404
+ "test/data/clustalw/example1-seqnos.aln",
417
405
  "test/data/clustalw/example1.aln",
418
406
  "test/data/command/echoarg2.bat",
419
407
  "test/data/command/echoarg2.sh",
@@ -520,10 +508,7 @@ Gem::Specification.new do |s|
520
508
  "test/network/bio/appl/blast/test_remote.rb",
521
509
  "test/network/bio/appl/test_blast.rb",
522
510
  "test/network/bio/appl/test_pts1.rb",
523
- "test/network/bio/io/test_ddbjrest.rb",
524
- "test/network/bio/io/test_ensembl.rb",
525
511
  "test/network/bio/io/test_pubmed.rb",
526
- "test/network/bio/io/test_soapwsdl.rb",
527
512
  "test/network/bio/io/test_togows.rb",
528
513
  "test/network/bio/test_command.rb",
529
514
  "test/runner.rb",
@@ -560,9 +545,9 @@ Gem::Specification.new do |s|
560
545
  "test/unit/bio/db/embl/test_embl.rb",
561
546
  "test/unit/bio/db/embl/test_embl_rel89.rb",
562
547
  "test/unit/bio/db/embl/test_embl_to_bioseq.rb",
563
- "test/unit/bio/db/embl/test_sptr.rb",
564
548
  "test/unit/bio/db/embl/test_uniprot.rb",
565
- "test/unit/bio/db/embl/test_uniprot_new_part.rb",
549
+ "test/unit/bio/db/embl/test_uniprotkb.rb",
550
+ "test/unit/bio/db/embl/test_uniprotkb_new_part.rb",
566
551
  "test/unit/bio/db/fasta/test_defline.rb",
567
552
  "test/unit/bio/db/fasta/test_defline_misc.rb",
568
553
  "test/unit/bio/db/fasta/test_format_qual.rb",
@@ -603,11 +588,8 @@ Gem::Specification.new do |s|
603
588
  "test/unit/bio/io/flatfile/test_autodetection.rb",
604
589
  "test/unit/bio/io/flatfile/test_buffer.rb",
605
590
  "test/unit/bio/io/flatfile/test_splitter.rb",
606
- "test/unit/bio/io/test_ddbjxml.rb",
607
- "test/unit/bio/io/test_ensembl.rb",
608
591
  "test/unit/bio/io/test_fastacmd.rb",
609
592
  "test/unit/bio/io/test_flatfile.rb",
610
- "test/unit/bio/io/test_soapwsdl.rb",
611
593
  "test/unit/bio/io/test_togows.rb",
612
594
  "test/unit/bio/sequence/test_aa.rb",
613
595
  "test/unit/bio/sequence/test_common.rb",
@@ -660,7 +642,8 @@ Gem::Specification.new do |s|
660
642
  "doc/Changes-1.3.rdoc",
661
643
  "doc/RELEASE_NOTES-1.4.0.rdoc",
662
644
  "doc/RELEASE_NOTES-1.4.1.rdoc",
663
- "doc/RELEASE_NOTES-1.4.2.rdoc"
645
+ "doc/RELEASE_NOTES-1.4.2.rdoc",
646
+ "doc/RELEASE_NOTES-1.4.3.rdoc"
664
647
  ]
665
648
  s.rdoc_options << '--main' << 'README.rdoc'
666
649
  s.rdoc_options << '--title' << 'BioRuby API documentation'
@@ -12,25 +12,12 @@ Gem::Specification.new do |s|
12
12
  suffix = nil
13
13
  when /\A\.(\d+)\z/
14
14
  suffix = $1
15
- when /\-alpha(\d+)/
16
- decrement = true
17
- suffix = 9000 + $1.to_i
18
- when /\-pre(\d+)/
19
- decrement = true
20
- suffix = 9500 + $1.to_i
21
- when /\-rc(\d+)/
22
- decrement = true
23
- suffix = 9900 + $1.to_i
15
+ when /\A\-dev\z/
16
+ suffix = Time.now.strftime("%Y%m%d")
24
17
  else
25
- suffix = "0000"
18
+ raise "unsupported BIORUBY_EXTRA_VERSION"
26
19
  end
27
- ver = Bio::BIORUBY_VERSION.reverse.collect do |i|
28
- if decrement then
29
- i -= 1
30
- i < 0 ? (i += 10) : decrement = false
31
- end
32
- i
33
- end.reverse
20
+ ver = Bio::BIORUBY_VERSION.dup
34
21
  ver.push suffix if suffix
35
22
  %><%=
36
23
  (env_ver || ver.join('.'))
@@ -40,7 +27,8 @@ Gem::Specification.new do |s|
40
27
  s.author = "BioRuby project"
41
28
  s.email = "staff@bioruby.org"
42
29
  s.homepage = "http://bioruby.org/"
43
- s.rubyforge_project = "bioruby"
30
+ s.license = "Ruby"
31
+
44
32
  s.summary = "Bioinformatics library"
45
33
  s.description = "BioRuby is a library for bioinformatics (biology + information science)."
46
34
 
@@ -55,10 +43,12 @@ Gem::Specification.new do |s|
55
43
  files =
56
44
  [ "README.rdoc", "README_DEV.rdoc",
57
45
  "ChangeLog", "KNOWN_ISSUES.rdoc",
46
+ "RELEASE_NOTES.rdoc",
58
47
  "Rakefile", "bioruby.gemspec.erb",
59
48
  "bioruby.gemspec", "setup.rb",
60
- "extconf.rb", "rdoc.zsh"
61
- ] + Dir.glob("{bin,doc,etc,lib,sample,test}/**/*").delete_if do |item|
49
+ "extconf.rb", "LEGAL",
50
+ "COPYING", "COPYING.ja", "GPL", "LGPL"
51
+ ] + Dir.glob("{bin,doc,etc,gemfiles,lib,sample,test}/**/*").delete_if do |item|
62
52
  case item
63
53
  when /(\A|\/)CVS(\z|\/)/, /(\A|\/)rdoc(\z|\/)/, /\~\z/
64
54
  true
@@ -0,0 +1,1478 @@
1
+ commit ad0d7a1712d8b02358763233d38e67a0fff54917
2
+ Author: Naohisa Goto <ng@bioruby.org>
3
+ Date: Wed Aug 22 00:18:14 2012 +0900
4
+
5
+ BioRuby 1.4.3 is re-released
6
+
7
+ ChangeLog | 9 +++++++++
8
+ 1 files changed, 9 insertions(+), 0 deletions(-)
9
+
10
+ commit 51ab2dec144c99a14ca9009c7b589b500f1cad5f
11
+ Author: Naohisa Goto <ng@bioruby.org>
12
+ Date: Wed Aug 22 00:12:47 2012 +0900
13
+
14
+ Preparation to re-release BioRuby 1.4.3
15
+
16
+ ChangeLog | 22 ++++++++++++++++++++++
17
+ 1 files changed, 22 insertions(+), 0 deletions(-)
18
+
19
+ commit 5ff159d12252393ff04afe52b59a315d15c63d18
20
+ Author: Naohisa Goto <ng@bioruby.org>
21
+ Date: Wed Aug 22 00:00:40 2012 +0900
22
+
23
+ Bug fix: bin/bioruby failed to save object
24
+
25
+ * Bug fix: bin/bioruby: Failed to save object with error message
26
+ "can't convert Symbol into String" on Ruby 1.9.
27
+
28
+ RELEASE_NOTES.rdoc | 2 ++
29
+ lib/bio/shell/core.rb | 1 +
30
+ 2 files changed, 3 insertions(+), 0 deletions(-)
31
+
32
+ commit 74c6ce09413e7ddde1431d74e10cc9c4cdbb95ba
33
+ Author: Naohisa Goto <ng@bioruby.org>
34
+ Date: Tue Aug 21 22:35:18 2012 +0900
35
+
36
+ BioRuby 1.4.3 is released.
37
+
38
+ ChangeLog | 21 +++++++++++++++++++++
39
+ 1 files changed, 21 insertions(+), 0 deletions(-)
40
+
41
+ commit 61af85b6cfc7bb1f3668ed68232113eb0751e7ea
42
+ Author: Naohisa Goto <ng@bioruby.org>
43
+ Date: Tue Aug 21 22:33:30 2012 +0900
44
+
45
+ preparation for BioRuby 1.4.3 release version
46
+
47
+ bioruby.gemspec | 2 +-
48
+ lib/bio/version.rb | 2 +-
49
+ 2 files changed, 2 insertions(+), 2 deletions(-)
50
+
51
+ commit 1ec68beac42a06e9ef0a9c953650ef4d599e4e65
52
+ Author: Naohisa Goto <ng@bioruby.org>
53
+ Date: Tue Aug 21 20:53:04 2012 +0900
54
+
55
+ ChangeLog modified; release candidate version 1.4.3-rc2
56
+
57
+ ChangeLog | 1353 ++++++++++++++++++++++++++++++++++++++++++++++++++++
58
+ bioruby.gemspec | 2 +-
59
+ lib/bio/version.rb | 4 +-
60
+ 3 files changed, 1356 insertions(+), 3 deletions(-)
61
+
62
+ commit e0d570b237a8b96ae0c1e7b1ad72c7333be07c52
63
+ Author: Naohisa Goto <ng@bioruby.org>
64
+ Date: Mon Aug 20 20:35:58 2012 +0900
65
+
66
+ version changed to 1.4.3-rc1
67
+
68
+ bioruby.gemspec | 3 ++-
69
+ lib/bio/version.rb | 2 +-
70
+ 2 files changed, 3 insertions(+), 2 deletions(-)
71
+
72
+ commit 511c81ba67f7b8dc9cff85cf68db654d2feaf52e
73
+ Author: Naohisa Goto <ng@bioruby.org>
74
+ Date: Mon Aug 20 20:17:14 2012 +0900
75
+
76
+ document JRUBY-5678 (resolved) and related issue with the workaround.
77
+
78
+ KNOWN_ISSUES.rdoc | 9 +++++++++
79
+ RELEASE_NOTES.rdoc | 9 +++++++++
80
+ 2 files changed, 18 insertions(+), 0 deletions(-)
81
+
82
+ commit 2fdd7a3b3555a33dead31181c9526af22f24916f
83
+ Author: Naohisa Goto <ng@bioruby.org>
84
+ Date: Mon Aug 20 19:44:39 2012 +0900
85
+
86
+ update recommended Ruby versions and the year in copyright lines
87
+
88
+ README.rdoc | 7 +++----
89
+ 1 files changed, 3 insertions(+), 4 deletions(-)
90
+
91
+ commit b156227749e5ada74330e837c9ce48a16e6a6a2f
92
+ Author: Naohisa Goto <ng@bioruby.org>
93
+ Date: Mon Aug 20 19:16:25 2012 +0900
94
+
95
+ Bug fix: Bio::EMBL#os raises error, with incompatible change
96
+
97
+ * Bug fix: Bio::EMBL#os raises error. The bug is reported by
98
+ Marc P. Hoeppner in the BioRuby mailing list
99
+ (https://redmine.open-bio.org/issues/3294).
100
+ * Incompatible change: Bio::EMBL#os no longer splits the content with
101
+ comma, and it no longer raises error even if the OS line is not in
102
+ the "Genus species (name)" format. The changes may affect the parsing
103
+ of old EMBL files which contain two or more species names in an OS line.
104
+ * Unit tests are modified to catch up the above incompatible changes.
105
+
106
+ RELEASE_NOTES.rdoc | 14 ++++++
107
+ lib/bio/db/embl/embl.rb | 74 ++++++++++++++++++++++++++++++
108
+ test/unit/bio/db/embl/test_embl.rb | 9 +---
109
+ test/unit/bio/db/embl/test_embl_rel89.rb | 9 +---
110
+ 4 files changed, 92 insertions(+), 14 deletions(-)
111
+
112
+ commit 31c8b4cb6ce2364aacee8137ddec3aa5f7d2d0d8
113
+ Author: Naohisa Goto <ng@bioruby.org>
114
+ Date: Mon Aug 20 19:04:50 2012 +0900
115
+
116
+ Workaround for jruby-1.7.0.preview2 bugs JRUBY-6195, JRUBY-6818
117
+
118
+ * Workaroud for jruby-1.7.0.preview2 bugs JRUBY-6195 and JRUBY-6818.
119
+ * Refactoring of call_command_popen: split _call_command_popen_ruby18
120
+ and _call_command_popen_ruby19, add _call_command_popen_jruby19.
121
+ Note that _call_command_popen_jruby19 will be removed in the future
122
+ after the bugs are fixed.
123
+
124
+ lib/bio/command.rb | 98 ++++++++++++++++++++++++++++++++++++++++++++++-----
125
+ 1 files changed, 88 insertions(+), 10 deletions(-)
126
+
127
+ commit 05f51fa2e871e71c2b20559eb05e456768a4f7d6
128
+ Author: Naohisa Goto <ng@bioruby.org>
129
+ Date: Sat Aug 18 00:32:31 2012 +0900
130
+
131
+ New default etc/bioinformatics/seqdatabase.ini
132
+
133
+ * New default etc/bioinformatics/seqdatabase.ini, with currently
134
+ available services.
135
+
136
+ etc/bioinformatics/seqdatabase.ini | 27 +++++++++++++++++++++++++++
137
+ 1 files changed, 27 insertions(+), 0 deletions(-)
138
+ create mode 100644 etc/bioinformatics/seqdatabase.ini
139
+
140
+ commit a4264cc3667b98289c09efc7ccba9c8e86f6d89c
141
+ Author: Naohisa Goto <ng@bioruby.org>
142
+ Date: Sat Aug 18 00:31:10 2012 +0900
143
+
144
+ etc/bioinformatics/seqdatabase.ini is moved to sample/
145
+
146
+ etc/bioinformatics/seqdatabase.ini | 210 ------------------------------------
147
+ sample/seqdatabase.ini | 210 ++++++++++++++++++++++++++++++++++++
148
+ 2 files changed, 210 insertions(+), 210 deletions(-)
149
+ delete mode 100644 etc/bioinformatics/seqdatabase.ini
150
+ create mode 100644 sample/seqdatabase.ini
151
+
152
+ commit 04b7a27b557576f5325b3ee420262922ab66ca3b
153
+ Author: Naohisa Goto <ng@bioruby.org>
154
+ Date: Sat Aug 18 00:30:38 2012 +0900
155
+
156
+ known issue about http://bioruby.org/cgi-bin/biofetch.rb server down
157
+
158
+ KNOWN_ISSUES.rdoc | 9 +++++++++
159
+ 1 files changed, 9 insertions(+), 0 deletions(-)
160
+
161
+ commit 4a8193f7b91ff703c8f3dc6e6a6ae0c981a404e6
162
+ Author: Naohisa Goto <ng@bioruby.org>
163
+ Date: Fri Aug 17 23:45:41 2012 +0900
164
+
165
+ Update descriptions about JRuby and Rubinius bugs
166
+
167
+ KNOWN_ISSUES.rdoc | 14 ++++++++++----
168
+ RELEASE_NOTES.rdoc | 14 ++++++++++----
169
+ 2 files changed, 20 insertions(+), 8 deletions(-)
170
+
171
+ commit a2d8dd8ccebde84e91f82c59e531cc08fbf0f3fe
172
+ Author: Naohisa Goto <ng@bioruby.org>
173
+ Date: Fri Aug 17 17:19:22 2012 +0900
174
+
175
+ Remove the suffix .rb in require, to avoid potential multiple loading.
176
+
177
+ test/unit/bio/db/fasta/test_defline.rb | 2 +-
178
+ test/unit/bio/db/genbank/test_genpept.rb | 2 +-
179
+ test/unit/bio/db/kegg/test_drug.rb | 2 +-
180
+ test/unit/bio/db/kegg/test_genome.rb | 2 +-
181
+ test/unit/bio/db/kegg/test_glycan.rb | 2 +-
182
+ test/unit/bio/util/test_restriction_enzyme.rb | 2 +-
183
+ 6 files changed, 6 insertions(+), 6 deletions(-)
184
+
185
+ commit 1d2e8b02db3699c2cd4f4890abc078ffd2b503aa
186
+ Author: Ben J. Woodcroft <donttrustben near gmail.com>
187
+ Date: Wed Aug 8 09:41:20 2012 +1000
188
+
189
+ fill in missing piece of documentation in FastaFormat
190
+
191
+ lib/bio/db/fasta.rb | 2 +-
192
+ 1 files changed, 1 insertions(+), 1 deletions(-)
193
+
194
+ commit 83bf09d4d81803c8d06e0d45ca25e7c09016161c
195
+ Author: Naohisa Goto <ng@bioruby.org>
196
+ Date: Wed Aug 8 00:08:26 2012 +0900
197
+
198
+ RELEASE_NOTE.rdoc modified to reflect recent changes
199
+
200
+ RELEASE_NOTES.rdoc | 107 ++++++++++++++++++++++++++++++++++++++++++++-------
201
+ 1 files changed, 92 insertions(+), 15 deletions(-)
202
+
203
+ commit c3afb1eb98cf8777ee021624c3d2eab92b3543f2
204
+ Author: Naohisa Goto <ng@bioruby.org>
205
+ Date: Wed Aug 8 00:06:09 2012 +0900
206
+
207
+ Descriptions about JRuby, Rubinius, DDBJ Web API, SOAP4R etc.
208
+
209
+ KNOWN_ISSUES.rdoc | 45 +++++++++++++++++++++++++++++++++++++++++++--
210
+ 1 files changed, 43 insertions(+), 2 deletions(-)
211
+
212
+ commit 01da7401a011aa519c43a021f89f6e7f769b4649
213
+ Author: Naohisa Goto <ng@bioruby.org>
214
+ Date: Tue Aug 7 23:55:09 2012 +0900
215
+
216
+ regenerate bioruby.gemspec with rake regemspec
217
+
218
+ bioruby.gemspec | 3 +--
219
+ 1 files changed, 1 insertions(+), 2 deletions(-)
220
+
221
+ commit 9f70c27d9b75408fddae8384a2a09715b959dcb5
222
+ Author: Naohisa Goto <ng@bioruby.org>
223
+ Date: Tue Aug 7 23:51:56 2012 +0900
224
+
225
+ improve documentation; version changed to 1.4.3-pre1
226
+
227
+ lib/bio/version.rb | 13 +++++++++++--
228
+ 1 files changed, 11 insertions(+), 2 deletions(-)
229
+
230
+ commit c11f12c8aa56b8509cd082f3478e96374210e5d7
231
+ Author: Naohisa Goto <ng@bioruby.org>
232
+ Date: Tue Aug 7 23:31:41 2012 +0900
233
+
234
+ Remove autorequire which have been deprecated
235
+
236
+ bioruby.gemspec.erb | 1 -
237
+ 1 files changed, 0 insertions(+), 1 deletions(-)
238
+
239
+ commit 7792b092033d2c819f2bcad0e206f27608481db5
240
+ Author: Ben J Woodcroft <donttrustben@gmail.com>
241
+ Date: Mon Aug 6 09:40:55 2012 +1000
242
+
243
+ flesh out FastaFormat documentation
244
+
245
+ lib/bio/db/fasta.rb | 102 ++++++++++++++++++++++++-------------------
246
+ lib/bio/db/fasta/defline.rb | 2 +-
247
+ 2 files changed, 58 insertions(+), 46 deletions(-)
248
+
249
+ commit 9a2fe67c247cdc7c9ddc9f8b8de771515ba76ac1
250
+ Author: Naohisa Goto <ng@bioruby.org>
251
+ Date: Fri Aug 3 22:36:12 2012 +0900
252
+
253
+ .travis.yml: restructure matrix, add allow_failures lines
254
+
255
+ * Add allow_failures lines
256
+ * Restructure matrix: remove many exclude lines and add some
257
+ include lines.
258
+ * When running jruby, Set TMPDIR to avoid known issue about
259
+ FileUtils#remove_entry_secure.
260
+
261
+ .travis.yml | 52 ++++++++++++++++++----------------------------------
262
+ 1 files changed, 18 insertions(+), 34 deletions(-)
263
+
264
+ commit 553fd102c533c42675f93895557e3e00d36fd3e7
265
+ Author: Naohisa Goto <ng@bioruby.org>
266
+ Date: Fri Aug 3 22:05:39 2012 +0900
267
+
268
+ Improve tests for BLAST "-m 8" tabular format parser
269
+
270
+ test/unit/bio/appl/blast/test_report.rb | 119 +++++++++++++++++++++++++++++++
271
+ 1 files changed, 119 insertions(+), 0 deletions(-)
272
+
273
+ commit 3e1c062dbc168bd558ca8408a6da115aa570f3a7
274
+ Author: Naohisa Goto <ng@bioruby.org>
275
+ Date: Fri Aug 3 22:05:07 2012 +0900
276
+
277
+ Improve test and suppress warning: assigned but unused variable
278
+
279
+ test/unit/bio/io/flatfile/test_buffer.rb | 1 +
280
+ 1 files changed, 1 insertions(+), 0 deletions(-)
281
+
282
+ commit 7e29ce1f050e9e5b23299372d8ddfae781447dc3
283
+ Author: Naohisa Goto <ng@bioruby.org>
284
+ Date: Fri Aug 3 22:02:21 2012 +0900
285
+
286
+ Improve test and suppress warning: assigned but unused variable
287
+
288
+ test/unit/bio/db/test_newick.rb | 2 ++
289
+ 1 files changed, 2 insertions(+), 0 deletions(-)
290
+
291
+ commit 1053b62069df74f336934e4ed0f3f217e4ad3312
292
+ Author: Naohisa Goto <ng@bioruby.org>
293
+ Date: Fri Jul 27 13:56:53 2012 +0900
294
+
295
+ Suppress warnings: shadowing outer local variable
296
+
297
+ * Suppress warnings: shadowing outer local variable.
298
+ Thanks to Andrew Grimm: https://github.com/bioruby/bioruby/pull/64
299
+
300
+ lib/bio/db/gff.rb | 8 ++++----
301
+ 1 files changed, 4 insertions(+), 4 deletions(-)
302
+
303
+ commit e55794f65b3fb45c99e61d45220fe42f718426a3
304
+ Author: Naohisa Goto <ng@bioruby.org>
305
+ Date: Wed Jul 25 23:29:17 2012 +0900
306
+
307
+ Suppress warnings in lib/bio/alignment.rb:2322
308
+
309
+ * A space is inserted to suppress warnings in lib/bio/alignment.rb:2322.
310
+ * warning: :' after local variable is interpreted as binary operator
311
+ * warning: even though it seems like symbol literal
312
+
313
+ lib/bio/alignment.rb | 2 +-
314
+ 1 files changed, 1 insertions(+), 1 deletions(-)
315
+
316
+ commit 174a38ea8c4ecea70724bf6ec8e72b2e4259853b
317
+ Author: Naohisa Goto <ng@bioruby.org>
318
+ Date: Wed Jul 25 23:12:51 2012 +0900
319
+
320
+ Modified to follow changes of GenomeNet BLAST site
321
+
322
+ lib/bio/appl/blast/genomenet.rb | 6 +++---
323
+ 1 files changed, 3 insertions(+), 3 deletions(-)
324
+
325
+ commit 93e24935840dcdec76984313719700134d69daf2
326
+ Author: Naohisa Goto <ng@bioruby.org>
327
+ Date: Wed Jul 25 15:21:32 2012 +0900
328
+
329
+ suppress warnings: instance variable @comment not initialized
330
+
331
+ lib/bio/db/gff.rb | 6 ++++--
332
+ 1 files changed, 4 insertions(+), 2 deletions(-)
333
+
334
+ commit 0ad3818fedb707a26e849877bde1f8dab006b848
335
+ Author: Naohisa Goto <ng@bioruby.org>
336
+ Date: Wed Jul 25 00:54:02 2012 +0900
337
+
338
+ suppress warnings: URI.escape/URI.unescape is obsolete
339
+
340
+ lib/bio/db/gff.rb | 39 +++++++++++++++++++++++++++++++++------
341
+ 1 files changed, 33 insertions(+), 6 deletions(-)
342
+
343
+ commit 1263938742e7eeedb4a877aff7314e304320eca9
344
+ Author: Naohisa Goto <ng@bioruby.org>
345
+ Date: Mon Jul 23 21:15:52 2012 +0900
346
+
347
+ Added link to blastall options reference
348
+
349
+ * Added link to blastall options reference.
350
+ Thanks to Gareth Rees who sent a pull request.
351
+ (https://github.com/bioruby/bioruby/pull/49)
352
+
353
+ lib/bio/appl/blast/genomenet.rb | 5 +++++
354
+ 1 files changed, 5 insertions(+), 0 deletions(-)
355
+
356
+ commit 2ec5f4fd5abd0db7ec79ab3a9fd4adde7c9384a8
357
+ Author: Naohisa Goto <ng@bioruby.org>
358
+ Date: Mon Jul 23 17:26:45 2012 +0900
359
+
360
+ Next bioruby release version will be 1.4.3.
361
+
362
+ RELEASE_NOTES.rdoc | 2 +-
363
+ 1 files changed, 1 insertions(+), 1 deletions(-)
364
+
365
+ commit 6cf1318507a5d82bb93acdfe33e96723a2e742fc
366
+ Author: Naohisa Goto <ng@bioruby.org>
367
+ Date: Mon Jul 23 17:25:35 2012 +0900
368
+
369
+ fix typo
370
+
371
+ README.rdoc | 2 +-
372
+ 1 files changed, 1 insertions(+), 1 deletions(-)
373
+
374
+ commit 2fd71cac315affe6e4d90b03dadac782f11553a5
375
+ Author: Naohisa Goto <ng@bioruby.org>
376
+ Date: Mon Jul 23 17:21:57 2012 +0900
377
+
378
+ Bug fix: Genomenet remote blast: catch up changes of the server
379
+
380
+ lib/bio/appl/blast/genomenet.rb | 33 +++++++++++++++++++++++----------
381
+ 1 files changed, 23 insertions(+), 10 deletions(-)
382
+
383
+ commit 69d9717da11b2fe81a8f840bbafcc5fbb0dbe688
384
+ Author: Naohisa Goto <ng@bioruby.org>
385
+ Date: Fri Jul 20 11:24:37 2012 +0900
386
+
387
+ regenerate bioruby.gemspec with rake regemspec
388
+
389
+ bioruby.gemspec | 2 ++
390
+ 1 files changed, 2 insertions(+), 0 deletions(-)
391
+
392
+ commit 9683da186579dbfa5da1bb1a32edc49cfdc026b8
393
+ Author: Naohisa Goto <ng@bioruby.org>
394
+ Date: Wed Jul 18 23:19:33 2012 +0900
395
+
396
+ Incompatible changes in Bio::KEGG::KGML are documented.
397
+
398
+ * Incompatible changes in Bio::KEGG::KGML are documented.
399
+ * Next BioRuby release version will be 1.4.3.
400
+
401
+ RELEASE_NOTES.rdoc | 44 +++++++++++++++++++++++++++++++++++++++++---
402
+ 1 files changed, 41 insertions(+), 3 deletions(-)
403
+
404
+ commit 6cab377ae760d1abfda06caafe4a04ecd549e21d
405
+ Author: Naohisa Goto <ng@bioruby.org>
406
+ Date: Wed Jul 18 22:56:00 2012 +0900
407
+
408
+ Incompatible changes: Bio::KEGG::KGML::Reaction#substrates, products
409
+
410
+ * Incompatible changes: Bio::KEGG::KGML::Reaction#substrates and
411
+ Bio::KEGG::KGML::Reaction#products are changed to return an array
412
+ containing Bio::KEGG::KGML::Substrate and Bio::KEGG::KGML::Product
413
+ objects, respectively. The aim of these changes are to store ID
414
+ of substrates and products that were thrown away in the previous
415
+ versions.
416
+
417
+ lib/bio/db/kegg/kgml.rb | 48 ++++++++++++++--
418
+ test/unit/bio/db/kegg/test_kgml.rb | 104 +++++++++++++++++++++++++++++++++++-
419
+ 2 files changed, 144 insertions(+), 8 deletions(-)
420
+
421
+ commit 3cb1e09709d3c6b934028e28f9cafed149c9c751
422
+ Author: Naohisa Goto <ng@bioruby.org>
423
+ Date: Wed Jul 18 22:16:46 2012 +0900
424
+
425
+ Bio::KEGG::KGML#parse_* :use new attribute names
426
+
427
+ * In Bio::KEGG::KGML#parse_* (private methods) new attribute method
428
+ names should be used instead of deprecated old names.
429
+
430
+ lib/bio/db/kegg/kgml.rb | 18 +++++++++---------
431
+ 1 files changed, 9 insertions(+), 9 deletions(-)
432
+
433
+ commit c5ef981db6add98dc6778cd9809aff38a7071593
434
+ Author: Naohisa Goto <ng@bioruby.org>
435
+ Date: Wed Jul 18 22:14:33 2012 +0900
436
+
437
+ modified documentation for Bio::KEGG::KGML
438
+
439
+ lib/bio/db/kegg/kgml.rb | 73 +++++++++++++++++++++++++++--------------------
440
+ 1 files changed, 42 insertions(+), 31 deletions(-)
441
+
442
+ commit 5416b84eaa37b5abf15f905586a5eee65c4026f0
443
+ Author: Naohisa Goto <ng@bioruby.org>
444
+ Date: Wed Jul 18 15:01:58 2012 +0900
445
+
446
+ New class Bio::KEGG::KGML::Graphics with tests for Bio::KEGG::KGML
447
+
448
+ * New class Bio::KEGG::KGML::Graphics for storing a graphics element.
449
+ This fixes https://github.com/bioruby/bioruby/issues/51.
450
+ * Unit tests for Bio::KEGG::KGML are added with mock test data.
451
+ * Improve rdoc documentation for Bio::KEGG::KGML.
452
+ * New method Bio::KEGG::KGML::Reaction#id
453
+ * Attribute methods that were different from the KGML attribute
454
+ names are renamed to the names of the KGML attribute names.
455
+ Old method names are deprecated and are changed to aliases
456
+ and will be removed in the future.
457
+ * Bio::KEGG::KGML::Entry#id (old name: entry_id)
458
+ * Bio::KEGG::KGML::Entry#type (old name: category)
459
+ * Bio::KEGG::KGML::Entry#entry1 (old name: node1)
460
+ * Bio::KEGG::KGML::Entry#entry2 (old name: node2)
461
+ * Bio::KEGG::KGML::Entry#type (old name: rel)
462
+ * Bio::KEGG::KGML::Reaction#name (old name: entry_id)
463
+ * Bio::KEGG::KGML::Reaction#type (old name: direction)
464
+ * Following attribute methods are deprecated because two or more
465
+ graphics elements may exist in an entry element. They will be
466
+ removed in the future.
467
+ * Bio::KEGG::KGML::Entry#label
468
+ * Bio::KEGG::KGML::Entry#shape
469
+ * Bio::KEGG::KGML::Entry#x
470
+ * Bio::KEGG::KGML::Entry#y
471
+ * Bio::KEGG::KGML::Entry#width
472
+ * Bio::KEGG::KGML::Entry#height
473
+ * Bio::KEGG::KGML::Entry#fgcolor
474
+ * Bio::KEGG::KGML::Entry#bgcolor
475
+
476
+ lib/bio/db/kegg/kgml.rb | 321 ++++++++++---
477
+ test/data/KEGG/test.kgml | 37 ++
478
+ test/unit/bio/db/kegg/test_kgml.rb | 922 ++++++++++++++++++++++++++++++++++++
479
+ 3 files changed, 1223 insertions(+), 57 deletions(-)
480
+ create mode 100644 test/data/KEGG/test.kgml
481
+ create mode 100644 test/unit/bio/db/kegg/test_kgml.rb
482
+
483
+ commit e5478363ef6969ec14c4e09c2bd7c6d27c12cf5b
484
+ Author: Naohisa Goto <ng@bioruby.org>
485
+ Date: Tue Jul 17 22:23:28 2012 +0900
486
+
487
+ rdoc documentation for Bio::KEGG::KGML
488
+
489
+ lib/bio/db/kegg/kgml.rb | 166 ++++++++++++++++++++++++++++++++++++++++++++---
490
+ 1 files changed, 157 insertions(+), 9 deletions(-)
491
+
492
+ commit 4a97e7034cae835b3bbc8ef918b9c6c48910dec5
493
+ Author: Naohisa Goto <ng@bioruby.org>
494
+ Date: Wed Jul 11 15:16:49 2012 +0900
495
+
496
+ autoload should not be used for libraries outside bio
497
+
498
+ lib/bio/db/kegg/kgml.rb | 3 +--
499
+ 1 files changed, 1 insertions(+), 2 deletions(-)
500
+
501
+ commit 338d4cd9913d70041349c5201f80f7a65e7135a6
502
+ Author: Naohisa Goto <ng@bioruby.org>
503
+ Date: Fri Jul 6 00:50:01 2012 +0900
504
+
505
+ remove unnecessary require "bio/db" in lib/bio/db/pdb.rb
506
+
507
+ lib/bio/db/pdb.rb | 5 +----
508
+ 1 files changed, 1 insertions(+), 4 deletions(-)
509
+
510
+ commit 87c806a480fcacb0fc610c9669de19e4cb661a9c
511
+ Author: Naohisa Goto <ng@bioruby.org>
512
+ Date: Fri Jul 6 00:47:20 2012 +0900
513
+
514
+ workaround to avoid circular require about Bio::PDB
515
+
516
+ lib/bio/db/pdb/atom.rb | 5 +++--
517
+ lib/bio/db/pdb/chain.rb | 5 ++---
518
+ lib/bio/db/pdb/chemicalcomponent.rb | 5 +++--
519
+ lib/bio/db/pdb/model.rb | 4 ++--
520
+ lib/bio/db/pdb/pdb.rb | 3 ++-
521
+ lib/bio/db/pdb/residue.rb | 4 ++--
522
+ lib/bio/db/pdb/utils.rb | 11 +++++++----
523
+ 7 files changed, 21 insertions(+), 16 deletions(-)
524
+
525
+ commit 874f35c3930506fa029b419aa84677d1fea6681a
526
+ Author: Naohisa Goto <ng@bioruby.org>
527
+ Date: Fri Jul 6 00:24:24 2012 +0900
528
+
529
+ regenerate bioruby.gemspec with rake regemspec
530
+
531
+ bioruby.gemspec | 1 +
532
+ 1 files changed, 1 insertions(+), 0 deletions(-)
533
+
534
+ commit 090d4edb5698135f87df450a963ef35a307349c4
535
+ Author: Naohisa Goto <ng@bioruby.org>
536
+ Date: Fri Jul 6 00:19:54 2012 +0900
537
+
538
+ Tree output (formatter) methods moved to lib/bio/tree/output.rb
539
+
540
+ * To avoid circular require about bio/tree, phylogenetic tree output
541
+ (formatter) methods are moved to lib/bio/tree/output.rb.
542
+
543
+ lib/bio/db/newick.rb | 244 --------------------------------------------
544
+ lib/bio/tree.rb | 3 +-
545
+ lib/bio/tree/output.rb | 264 ++++++++++++++++++++++++++++++++++++++++++++++++
546
+ 3 files changed, 265 insertions(+), 246 deletions(-)
547
+ create mode 100644 lib/bio/tree/output.rb
548
+
549
+ commit b3d12b63097a5141b029bbfb3690870cd1935a60
550
+ Author: Naohisa Goto <ng@bioruby.org>
551
+ Date: Fri Jul 6 00:18:44 2012 +0900
552
+
553
+ Workaround to avoid circular require for Bio::Blast
554
+
555
+ lib/bio/appl/bl2seq/report.rb | 6 +++---
556
+ lib/bio/appl/blast/ddbj.rb | 3 ---
557
+ lib/bio/appl/blast/format0.rb | 3 +++
558
+ lib/bio/appl/blast/genomenet.rb | 2 --
559
+ lib/bio/appl/blast/ncbioptions.rb | 11 ++++++++---
560
+ lib/bio/appl/blast/remote.rb | 11 ++++++-----
561
+ lib/bio/appl/blast/report.rb | 16 ++++++++++------
562
+ lib/bio/appl/blast/rpsblast.rb | 5 +++--
563
+ lib/bio/appl/blast/wublast.rb | 6 +++---
564
+ 9 files changed, 36 insertions(+), 27 deletions(-)
565
+
566
+ commit 8f6c906c7b0d65b93ebf0a1e1307259e6eab8465
567
+ Author: Naohisa Goto <ng@bioruby.org>
568
+ Date: Thu Jul 5 23:29:42 2012 +0900
569
+
570
+ remove old require lines that are commented out
571
+
572
+ lib/bio/appl/blast/format0.rb | 5 -----
573
+ 1 files changed, 0 insertions(+), 5 deletions(-)
574
+
575
+ commit c632fbf2d0320860eadfacb196d51d80ed3a2b34
576
+ Author: Naohisa Goto <ng@bioruby.org>
577
+ Date: Thu Jul 5 23:16:49 2012 +0900
578
+
579
+ Remove old workaround of strscan.so for Ruby 1.7 or earlier
580
+
581
+ lib/bio/appl/blast/format0.rb | 18 +-----------------
582
+ 1 files changed, 1 insertions(+), 17 deletions(-)
583
+
584
+ commit c81dce87f53d3ea7c7d2335e077fa609f2737779
585
+ Author: Naohisa Goto <ng@bioruby.org>
586
+ Date: Thu Jul 5 23:03:40 2012 +0900
587
+
588
+ .travis.yml: include ruby 1.9.2 test
589
+
590
+ .travis.yml | 2 ++
591
+ 1 files changed, 2 insertions(+), 0 deletions(-)
592
+
593
+ commit 34709d114089c722b5da796028ffb91021761fdd
594
+ Author: Naohisa Goto <ng@bioruby.org>
595
+ Date: Thu Jul 5 23:00:37 2012 +0900
596
+
597
+ Remove old comment lines
598
+
599
+ lib/bio/sequence/format.rb | 6 ------
600
+ 1 files changed, 0 insertions(+), 6 deletions(-)
601
+
602
+ commit e0d5ed61e0101e2e72ad024dccd58c8c90def2b9
603
+ Author: Naohisa Goto <ng@bioruby.org>
604
+ Date: Thu Jul 5 22:42:17 2012 +0900
605
+
606
+ Finalizer for Bio::Command::Tmpdir is changed to suppress test failure
607
+
608
+ * New class Bio::Command::Tmpdir::Remover for removing temporary
609
+ directory in finilizer. This class is BioRuby internal use only.
610
+ Users should not use this class.
611
+ * Finalizer for Bio::Command::Tmpdir is changed from a Proc object
612
+ to an instance of the Remover class.
613
+ * Test failure fix: In some environment, with Ruby 1.9.2,
614
+ test_output_embl(Bio::FuncTestSequenceOutputEMBL) was failed with
615
+ "<#<ArgumentError: wrong number of arguments (1 for 0)>" that was
616
+ raised in the finalizer callback of Bio::Command::Tmpdir. This
617
+ commit fixes the problem.
618
+
619
+ lib/bio/command.rb | 56 +++++++++++++++++++++++++++------------------------
620
+ 1 files changed, 30 insertions(+), 26 deletions(-)
621
+
622
+ commit cca98d1378ce66d6db84cc9c1beadd39ed0e0fee
623
+ Author: Naohisa Goto <ng@bioruby.org>
624
+ Date: Thu Jul 5 22:21:34 2012 +0900
625
+
626
+ Workaround to avoid circular require and JRuby autoload bug
627
+
628
+ * "require" lines are modified to avoid circular require.
629
+ * In files that would be required directly from outside bio/sequence
630
+ (aa.rb, adapter.rb, common.rb, compat.rb, dblink.rb, generic.rb,
631
+ na.rb, quality_score.rb, sequence_masker.rb), because of avoiding
632
+ potential mismatch of superclass and/or lack of some methods,
633
+ bio/sequence.rb is required when Bio::Sequence is not defined.
634
+ * workaround to avoid JRuby autoload bug
635
+
636
+ lib/bio/sequence.rb | 10 ++++++----
637
+ lib/bio/sequence/aa.rb | 8 +++-----
638
+ lib/bio/sequence/adapter.rb | 12 ++++++------
639
+ lib/bio/sequence/common.rb | 2 ++
640
+ lib/bio/sequence/compat.rb | 9 ++-------
641
+ lib/bio/sequence/dblink.rb | 11 ++++++-----
642
+ lib/bio/sequence/generic.rb | 7 +++----
643
+ lib/bio/sequence/na.rb | 10 ++++------
644
+ lib/bio/sequence/quality_score.rb | 2 ++
645
+ lib/bio/sequence/sequence_masker.rb | 3 +++
646
+ 10 files changed, 37 insertions(+), 37 deletions(-)
647
+
648
+ commit d2915c33ae7f330837688195a58c1e60fe78402a
649
+ Author: Naohisa Goto <ng@bioruby.org>
650
+ Date: Thu Jul 5 21:04:28 2012 +0900
651
+
652
+ workaround to avoid circular require in Bio::RestrictionEnzyme
653
+
654
+ * Workaround to avoid circular require in Bio::RestrictionEnzyme
655
+ * Special care was needed for Bio::RestrictionEnzyme::Analysis
656
+ because its method definitions are divided into two files:
657
+ analysis.rb, analysis_basic.rb.
658
+
659
+ lib/bio/util/restriction_enzyme/analysis.rb | 13 ++++++++-----
660
+ lib/bio/util/restriction_enzyme/analysis_basic.rb | 7 ++++---
661
+ lib/bio/util/restriction_enzyme/cut_symbol.rb | 5 +++--
662
+ lib/bio/util/restriction_enzyme/dense_int_array.rb | 3 +++
663
+ lib/bio/util/restriction_enzyme/double_stranded.rb | 7 +++----
664
+ .../double_stranded/aligned_strands.rb | 7 +++----
665
+ .../double_stranded/cut_location_pair.rb | 7 +++----
666
+ .../cut_location_pair_in_enzyme_notation.rb | 7 +++----
667
+ .../double_stranded/cut_locations.rb | 7 +++----
668
+ .../cut_locations_in_enzyme_notation.rb | 7 +++----
669
+ lib/bio/util/restriction_enzyme/range/cut_range.rb | 7 +++----
670
+ .../util/restriction_enzyme/range/cut_ranges.rb | 7 +++----
671
+ .../range/horizontal_cut_range.rb | 7 +++----
672
+ .../restriction_enzyme/range/sequence_range.rb | 7 +++----
673
+ .../range/sequence_range/calculated_cuts.rb | 7 +++----
674
+ .../range/sequence_range/fragment.rb | 7 +++----
675
+ .../range/sequence_range/fragments.rb | 7 +++----
676
+ .../restriction_enzyme/range/vertical_cut_range.rb | 7 +++----
677
+ lib/bio/util/restriction_enzyme/single_strand.rb | 6 +++---
678
+ .../cut_locations_in_enzyme_notation.rb | 7 +++----
679
+ .../restriction_enzyme/single_strand_complement.rb | 7 +++----
680
+ .../util/restriction_enzyme/sorted_num_array.rb | 3 +++
681
+ .../util/restriction_enzyme/string_formatting.rb | 7 +++----
682
+ 23 files changed, 75 insertions(+), 81 deletions(-)
683
+
684
+ commit 7df4843288ffde6d7132a5651fe978301f8ebd2b
685
+ Author: Naohisa Goto <ng@bioruby.org>
686
+ Date: Thu Jul 5 20:18:08 2012 +0900
687
+
688
+ workaround to avoid JRuby autoload bug
689
+
690
+ lib/bio/util/restriction_enzyme.rb | 4 +---
691
+ 1 files changed, 1 insertions(+), 3 deletions(-)
692
+
693
+ commit 97d95f2b400006d4229a7ce69d7d8a5cdce42764
694
+ Author: Naohisa Goto <ng@bioruby.org>
695
+ Date: Wed Jul 4 22:00:27 2012 +0900
696
+
697
+ changed require to autoload for the workaround of JRuby autoload bug
698
+
699
+ lib/bio/feature.rb | 5 ++---
700
+ 1 files changed, 2 insertions(+), 3 deletions(-)
701
+
702
+ commit 530b82a45731c2a71a110826341be425de1271e0
703
+ Author: Naohisa Goto <ng@bioruby.org>
704
+ Date: Wed Jul 4 22:00:06 2012 +0900
705
+
706
+ workaround to avoid JRuby autoload bug
707
+
708
+ lib/bio/sequence/common.rb | 4 +---
709
+ 1 files changed, 1 insertions(+), 3 deletions(-)
710
+
711
+ commit 8614f31b36fb93d6e49d109268d646ff3032cd1a
712
+ Author: Naohisa Goto <ng@bioruby.org>
713
+ Date: Wed Jul 4 21:28:52 2012 +0900
714
+
715
+ workaround to avoid JRuby autoload bug
716
+
717
+ * Workaround to avoid JRuby autoload bug.
718
+ * Changed to require bio/db.rb because it is always loaded.
719
+
720
+ lib/bio/db/kegg/genes.rb | 6 +++---
721
+ 1 files changed, 3 insertions(+), 3 deletions(-)
722
+
723
+ commit ea500006ed56857139c858bdfeb98773e5ca541e
724
+ Author: Naohisa Goto <ng@bioruby.org>
725
+ Date: Thu Jun 28 21:36:35 2012 +0900
726
+
727
+ Rakefile: use own mktmpdir
728
+
729
+ Rakefile | 59 +++++++++++++++++++++++++++++++++++++++++++----------------
730
+ 1 files changed, 43 insertions(+), 16 deletions(-)
731
+
732
+ commit 452fadcab61083dcb9d01ee05d300eae5cb23fee
733
+ Author: Naohisa Goto <ng@bioruby.org>
734
+ Date: Thu Jun 28 20:37:59 2012 +0900
735
+
736
+ .travis.yml: remove "rake regemspec" from after_install
737
+
738
+ .travis.yml | 2 --
739
+ 1 files changed, 0 insertions(+), 2 deletions(-)
740
+
741
+ commit 3fad822af3d7e558a58b71fd8ec2a7061b49f9f2
742
+ Author: Naohisa Goto <ng@bioruby.org>
743
+ Date: Thu Jun 28 20:36:59 2012 +0900
744
+
745
+ regenerate bioruby.gemspec with rake regemspec
746
+
747
+ bioruby.gemspec | 2 ++
748
+ 1 files changed, 2 insertions(+), 0 deletions(-)
749
+
750
+ commit ea6e96fc654c797664b118a6326a84e4f9b1a8a3
751
+ Author: Naohisa Goto <ng@bioruby.org>
752
+ Date: Thu Jun 28 20:35:49 2012 +0900
753
+
754
+ print message when doing Dir.chdir
755
+
756
+ Rakefile | 17 +++++++++++------
757
+ 1 files changed, 11 insertions(+), 6 deletions(-)
758
+
759
+ commit c2fcd5e8cc71da38dc3c6d1f8c8d0233e47398b3
760
+ Author: Naohisa Goto <ng@bioruby.org>
761
+ Date: Thu Jun 28 20:28:41 2012 +0900
762
+
763
+ In tar-install, removed dependency to regemspec
764
+
765
+ Rakefile | 2 +-
766
+ 1 files changed, 1 insertions(+), 1 deletions(-)
767
+
768
+ commit 67a7e83d516aab5d60f8263525b359be8b0ffc0b
769
+ Author: Naohisa Goto <ng@bioruby.org>
770
+ Date: Thu Jun 28 20:23:24 2012 +0900
771
+
772
+ Rakefile: give up using Dir.mktmpdir because of JRuby's behavior
773
+
774
+ * Rakefile: give up using Dir.mktmpdir because of JRuby's behavior
775
+ that may be related with http://jira.codehaus.org/browse/JRUBY-5678
776
+
777
+ Rakefile | 61 ++++++++++++++++++++++++++++++++++++++++++++++---------------
778
+ 1 files changed, 46 insertions(+), 15 deletions(-)
779
+
780
+ commit cff098034a338bbe9579d6c7b4380c7132a38ef5
781
+ Author: Naohisa Goto <ng@bioruby.org>
782
+ Date: Thu Jun 28 19:23:57 2012 +0900
783
+
784
+ gem-integration-test, gem-install and gem-install-nodoc are removed
785
+
786
+ * gem-integration-test, gem-install and gem-install-nodoc are removed
787
+ because they are useless with Bundler
788
+
789
+ Rakefile | 13 -------------
790
+ 1 files changed, 0 insertions(+), 13 deletions(-)
791
+
792
+ commit d5c054265af4f80318cbfa5a5bbdee6125219de2
793
+ Author: Naohisa Goto <ng@bioruby.org>
794
+ Date: Thu Jun 28 18:10:05 2012 +0900
795
+
796
+ .travis.yml: .gemspec is needed to install local gem
797
+
798
+ .travis.yml | 1 +
799
+ gemfiles/prepare-gemspec.rb | 25 +++++++++++++++++++++++++
800
+ 2 files changed, 26 insertions(+), 0 deletions(-)
801
+ create mode 100644 gemfiles/prepare-gemspec.rb
802
+
803
+ commit 05b6172123f42a1d8d46668d8a3d5f698c371704
804
+ Author: Naohisa Goto <ng@bioruby.org>
805
+ Date: Thu Jun 28 17:51:43 2012 +0900
806
+
807
+ remove 1.9.2; add tar/gem integration tests
808
+
809
+ * Remove ruby version 1.9.2 from matrix for reducing builds
810
+ * Add tar/gem integration tests
811
+ * Add a new helper script gemfiles/modify-Gemfile.rb,
812
+ modifying gemfile when running gem integration test.
813
+ * Remove jruby version comments
814
+
815
+ .travis.yml | 26 +++++++++++++++++---------
816
+ gemfiles/modify-Gemfile.rb | 28 ++++++++++++++++++++++++++++
817
+ 2 files changed, 45 insertions(+), 9 deletions(-)
818
+ create mode 100644 gemfiles/modify-Gemfile.rb
819
+
820
+ commit 6813f91893e7ddc3000047357c9ed2dafb32a722
821
+ Author: Naohisa Goto <ng@bioruby.org>
822
+ Date: Thu Jun 28 17:06:28 2012 +0900
823
+
824
+ descriptions are modified for danger operations
825
+
826
+ Rakefile | 4 ++--
827
+ 1 files changed, 2 insertions(+), 2 deletions(-)
828
+
829
+ commit a209688952c922d9ba45c227874990bccd3da7c0
830
+ Author: Naohisa Goto <ng@bioruby.org>
831
+ Date: Mon Jun 25 23:25:51 2012 +0900
832
+
833
+ regenerate bioruby.gemspec with rake regemspec
834
+
835
+ bioruby.gemspec | 5 +++++
836
+ 1 files changed, 5 insertions(+), 0 deletions(-)
837
+
838
+ commit 8f6459497be0e9ca7dc3eb2eb9606e42d97ad60c
839
+ Author: Naohisa Goto <ng@bioruby.org>
840
+ Date: Mon Jun 25 21:01:06 2012 +0900
841
+
842
+ rake tasks added and default task is changed
843
+
844
+ * New tasks:
845
+ * gem-install: build gem and install it
846
+ * gem-install-nodoc: build gem and install it with --no-ri --no-rdoc.
847
+ * gem-test: test installed bioruby gem installed with gem-install
848
+ (or gem-install-nodoc)
849
+ * gem-integration-test: build gem, install and run test (with --no-ri
850
+ --no-rdoc)
851
+ * tar-install: DANGER: build tar and install by using setup.rb
852
+ * installed-test: test installed bioruby
853
+ * tar-integration-test: DANGER: build tar, install and run test
854
+ * see-env: see BIORUBY_RAKE_DEFAULT_TASK environment variable and
855
+ invoke the specified task. If the variable did not exist, it
856
+ invokes "test" which is previously the default task. It is added
857
+ for selecting task on Travis-ci. It is not recommended to invoke
858
+ the task explicitly by hand.
859
+ * Default task is changed from "test" to "see-env".
860
+
861
+ Rakefile | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
862
+ 1 files changed, 107 insertions(+), 3 deletions(-)
863
+
864
+ commit 3b400042cd361e1ab6d0fb0d8c8cce14a6c2ae10
865
+ Author: Naohisa Goto <ng@bioruby.org>
866
+ Date: Mon Jun 25 20:58:13 2012 +0900
867
+
868
+ BIORUBY_TEST_LIB is always added on the top of $LOAD_PATH
869
+
870
+ * When BIORUBY_TEST_LIB is specified, the specified directory name
871
+ is always added on the top of $LOAD_PATH even if it is already
872
+ included in the middle of $LOAD_PATH.
873
+
874
+ test/bioruby_test_helper.rb | 4 ++--
875
+ 1 files changed, 2 insertions(+), 2 deletions(-)
876
+
877
+ commit 848304b6f90310f8fa15c80ba06655ae5cae5053
878
+ Author: Naohisa Goto <ng@bioruby.org>
879
+ Date: Mon Jun 25 20:42:07 2012 +0900
880
+
881
+ New env BIORUBY_TEST_GEM and BIORUBY_TEST_LIB behavior changed
882
+
883
+ * New environment variable BIORUBY_TEST_GEM for testing installed
884
+ bio-X.X.X gem. Version number can be specified.
885
+ Example with version number:
886
+ % env BIORUBY_TEST_GEM=1.4.2.5000 ruby test/runner.rb
887
+ Example without version number:
888
+ % env BIORUBY_TEST_GEM="" ruby test/runner.rb
889
+ * When BIORUBY_TEST_LIB is empty, it no longer add an empty string to
890
+ $LOAD_PATH. Moreover, when BIORUBY_TEST_GEM is set, the variable is
891
+ ignored.
892
+
893
+ test/bioruby_test_helper.rb | 49 ++++++++++++++++++++++++++++++++----------
894
+ 1 files changed, 37 insertions(+), 12 deletions(-)
895
+
896
+ commit 9453a6773c24f866698370195fd8e767443a38b9
897
+ Author: Tomoaki NISHIYAMA <tomoakin@kenroku.kanazawa-u.ac.jp>
898
+ Date: Fri Jun 1 18:06:40 2012 +0900
899
+
900
+ broader FASTQ file recognition
901
+
902
+ * Because PacBio RS sequencer may produce kilobases long reads and
903
+ read buffer size (default 31 lines) for file format detection
904
+ may not be sufficient to find the second id line starting with "+",
905
+ the regular expression for FASTQ is truncated only to check the
906
+ first id line starting with "@".
907
+ * Test code is added.
908
+
909
+ lib/bio/io/flatfile/autodetection.rb | 2 +-
910
+ test/unit/bio/io/flatfile/test_autodetection.rb | 6 ++++++
911
+ 2 files changed, 7 insertions(+), 1 deletions(-)
912
+
913
+ commit 120e780c023cba06b83899c2f8a17c8fc1de4faa
914
+ Author: Naohisa Goto <ng@bioruby.org>
915
+ Date: Fri Jun 8 15:36:29 2012 +0900
916
+
917
+ Retry sequence randomize test up to 10 times when fails
918
+
919
+ * To suppress rare failure of chi-square equiprobability tests for
920
+ Bio::Sequence::Common#randomize, test code changed to retry
921
+ up to 10 times if the chi-square test fails. The assertion fails
922
+ if the chi-square test fails 10 consecutive times, and this
923
+ strongly suggests bugs in codes or in the random number generator.
924
+ * The chi-square equiprobability tests are separated into a new
925
+ test class.
926
+
927
+ test/unit/bio/sequence/test_common.rb | 40 +++++++++++++++++++++++++++++---
928
+ 1 files changed, 36 insertions(+), 4 deletions(-)
929
+
930
+ commit 20dde52f7da784d4d9ac551957700cd96e842ef6
931
+ Author: Naohisa Goto <ng@bioruby.org>
932
+ Date: Sat May 19 18:14:19 2012 +0900
933
+
934
+ libxml-ruby is disabled because of build error on Travis-ci
935
+
936
+ gemfiles/Gemfile.travis-jruby1.8 | 3 ++-
937
+ gemfiles/Gemfile.travis-jruby1.9 | 3 ++-
938
+ 2 files changed, 4 insertions(+), 2 deletions(-)
939
+
940
+ commit 3c5c1cc277d30737815c7e44a2abbb308f5324b0
941
+ Author: Clayton Wheeler <cswh@umich.edu>
942
+ Date: Mon May 14 21:48:41 2012 -0400
943
+
944
+ Use libxml-ruby instead of libxml-jruby to fix JRuby test failures.
945
+
946
+ The travis-ci Gemfiles currently call for libxml-jruby; this appears
947
+ not to support the same API as libxml-ruby, resulting in several tests
948
+ in test/unit/bio/db/test_phyloxml.rb failing with "NameError:
949
+ uninitialized constant LibXMLJRuby::XML::Parser::Options". Switching
950
+ to the C libxml-ruby library allows these tests to pass under JRuby in
951
+ 1.8 mode.
952
+
953
+ JRuby in 1.9 mode still fails a few PhyloXML tests due to
954
+ https://jira.codehaus.org/browse/JRUBY-6662.
955
+
956
+ gemfiles/Gemfile.travis-jruby1.8 | 2 +-
957
+ gemfiles/Gemfile.travis-jruby1.9 | 2 +-
958
+ 2 files changed, 2 insertions(+), 2 deletions(-)
959
+
960
+ commit 01a618242d67f0d00fe681dfd85e68bb393513fc
961
+ Author: Clayton Wheeler <cswh@umich.edu>
962
+ Date: Thu May 10 23:13:56 2012 -0400
963
+
964
+ test_tree.rb: to use %f instead of %g to prevent odd behavior.
965
+
966
+ test/unit/bio/test_tree.rb | 22 +++++++++++-----------
967
+ 1 files changed, 11 insertions(+), 11 deletions(-)
968
+
969
+ commit 5e80e4394bf2a5e4ee472fe84ab76239b293e1b5
970
+ Author: Clayton Wheeler <cswh@umich.edu>
971
+ Date: Thu May 10 23:04:55 2012 -0400
972
+
973
+ Fixed spurious JRuby failures in test_tree.rb due to floating point differences.
974
+
975
+ test/unit/bio/test_tree.rb | 14 +++++++-------
976
+ 1 files changed, 7 insertions(+), 7 deletions(-)
977
+
978
+ commit 459d4da894e9a9b9db0d793e3711dc45bae2089b
979
+ Author: Artem Tarasov <lomereiter@gmail.com>
980
+ Date: Thu May 10 16:23:13 2012 +0400
981
+
982
+ Test bug fix: order of hash keys are not guaranteed
983
+
984
+ * Test bug fix: Bio::TestSOFT#test_dataset: order of hash keys are
985
+ not guaranteed.
986
+
987
+ test/unit/bio/db/test_soft.rb | 2 +-
988
+ 1 files changed, 1 insertions(+), 1 deletions(-)
989
+
990
+ commit 7e730691d6ec597a610dc0d4665db3598fcfde59
991
+ Author: Naohisa Goto <ng@bioruby.org>
992
+ Date: Thu May 10 00:06:19 2012 +0900
993
+
994
+ removed potential circular require about Bio::Sequence::Format
995
+
996
+ lib/bio/db/embl/format_embl.rb | 4 ----
997
+ lib/bio/db/fasta/format_fasta.rb | 4 ----
998
+ lib/bio/db/fasta/format_qual.rb | 5 -----
999
+ lib/bio/db/fastq/format_fastq.rb | 1 -
1000
+ lib/bio/db/genbank/format_genbank.rb | 4 ----
1001
+ lib/bio/sequence/format_raw.rb | 4 ----
1002
+ 6 files changed, 0 insertions(+), 22 deletions(-)
1003
+
1004
+ commit f1c398fdc3488bd18bd13ac864920ce6db4dab9e
1005
+ Author: Naohisa Goto <ng@bioruby.org>
1006
+ Date: Wed May 9 15:54:20 2012 +0900
1007
+
1008
+ .travis.yml: comment out apt-get lines
1009
+
1010
+ * .travis.yml: comment out apt-get lines because libxml2-dev
1011
+ and libexpat1-dev are already installed.
1012
+
1013
+ .travis.yml | 6 +++---
1014
+ 1 files changed, 3 insertions(+), 3 deletions(-)
1015
+
1016
+ commit bc5ef4959e51f4a199d9f740b07812e9b8216255
1017
+ Author: Naohisa Goto <ng@bioruby.org>
1018
+ Date: Wed May 9 15:47:11 2012 +0900
1019
+
1020
+ travis-ci: comment out soap4r-ruby1.9 in Gemfile because of error
1021
+
1022
+ * travis-ci: soap4r-ruby1.9 gem in Gemfile.travis-ruby1.9 and
1023
+ Gemfile.travis-jruby1.9 is commented out because of an error
1024
+ "uninitialized constant XML::SaxParser".
1025
+
1026
+ gemfiles/Gemfile.travis-jruby1.9 | 4 +++-
1027
+ gemfiles/Gemfile.travis-ruby1.9 | 4 +++-
1028
+ 2 files changed, 6 insertions(+), 2 deletions(-)
1029
+
1030
+ commit 7e8153c09660c31d6286c1924680b8c5073a10b6
1031
+ Author: Naohisa Goto <ng@bioruby.org>
1032
+ Date: Tue May 1 18:11:09 2012 +0900
1033
+
1034
+ config files for Travis CI continuous integration service
1035
+
1036
+ .travis.yml | 73 ++++++++++++++++++++++++++++++++++++++
1037
+ gemfiles/Gemfile.travis-jruby1.8 | 6 +++
1038
+ gemfiles/Gemfile.travis-jruby1.9 | 7 ++++
1039
+ gemfiles/Gemfile.travis-ruby1.8 | 7 ++++
1040
+ gemfiles/Gemfile.travis-ruby1.9 | 8 ++++
1041
+ 5 files changed, 101 insertions(+), 0 deletions(-)
1042
+ create mode 100644 .travis.yml
1043
+ create mode 100644 gemfiles/Gemfile.travis-jruby1.8
1044
+ create mode 100644 gemfiles/Gemfile.travis-jruby1.9
1045
+ create mode 100644 gemfiles/Gemfile.travis-ruby1.8
1046
+ create mode 100644 gemfiles/Gemfile.travis-ruby1.9
1047
+
1048
+ commit f1ecae7763648cb735a885ddb6c46d71c59b0694
1049
+ Author: Naohisa Goto <ng@bioruby.org>
1050
+ Date: Fri Mar 23 01:36:59 2012 +0900
1051
+
1052
+ Test bug fix: tests affected by the bug of Bio::NucleicAcid.to_re("s")
1053
+
1054
+ test/unit/bio/data/test_na.rb | 2 +-
1055
+ test/unit/bio/sequence/test_na.rb | 2 +-
1056
+ test/unit/bio/test_sequence.rb | 4 ++--
1057
+ 3 files changed, 4 insertions(+), 4 deletions(-)
1058
+
1059
+ commit 3fd9384b1b59140a929c81dcc4b07cb3c2e47525
1060
+ Author: Trevor Wennblom <trevor@well.com>
1061
+ Date: Sat Feb 25 15:26:27 2012 -0600
1062
+
1063
+ Bug fix: Bio::NucleicAcid.to_re("s") typo
1064
+
1065
+ lib/bio/data/na.rb | 2 +-
1066
+ 1 files changed, 1 insertions(+), 1 deletions(-)
1067
+
1068
+ commit c552aa3a6773139b14ae95e79e0fb43a2f91c6fb
1069
+ Author: Naohisa Goto <ng@bioruby.org>
1070
+ Date: Thu Jan 12 22:24:37 2012 +0900
1071
+
1072
+ Bug fix: GenomeNet BLAST server URI changed.
1073
+
1074
+ * Bug fix: GenomeNet BLAST server URI changed.
1075
+ Reported by joaocardoso via GitHub.
1076
+ ( https://github.com/bioruby/bioruby/issues/44 )
1077
+
1078
+ lib/bio/appl/blast/genomenet.rb | 3 ++-
1079
+ 1 files changed, 2 insertions(+), 1 deletions(-)
1080
+
1081
+ commit f33abf9bbd90c3c1e320f06447fdb54ffd094c5d
1082
+ Author: peterjc <p.j.a.cock@googlemail.com>
1083
+ Date: Fri Nov 25 11:20:08 2011 +0000
1084
+
1085
+ Mark echoarg2.bat and echoarg2.sh as world executable
1086
+
1087
+ 0 files changed, 0 insertions(+), 0 deletions(-)
1088
+ mode change 100644 => 100755 test/data/command/echoarg2.bat
1089
+ mode change 100644 => 100755 test/data/command/echoarg2.sh
1090
+
1091
+ commit d2d66f833d0b20647e8d761d2a240b99b206eaa8
1092
+ Author: Naohisa Goto <ng@bioruby.org>
1093
+ Date: Thu Nov 24 13:32:37 2011 +0900
1094
+
1095
+ Bug fix: rake aborted without git
1096
+
1097
+ bioruby.gemspec.erb | 2 +-
1098
+ 1 files changed, 1 insertions(+), 1 deletions(-)
1099
+
1100
+ commit c2139739988ef731d61bf1a8cdba2dc5c48393bd
1101
+ Author: Naohisa Goto <ng@bioruby.org>
1102
+ Date: Thu Nov 24 13:07:10 2011 +0900
1103
+
1104
+ regenerate bioruby.gemspec with rake regemspec.
1105
+
1106
+ bioruby.gemspec | 18 ++++++++++--------
1107
+ 1 files changed, 10 insertions(+), 8 deletions(-)
1108
+
1109
+ commit 6213b45d28bfea2cc8c838813b524d48c369266b
1110
+ Author: Naohisa Goto <ng@bioruby.org>
1111
+ Date: Thu Nov 24 13:05:07 2011 +0900
1112
+
1113
+ Added workaround for changes of a module name and file names to require.
1114
+
1115
+ Rakefile | 21 +++++++++++++++++++--
1116
+ 1 files changed, 19 insertions(+), 2 deletions(-)
1117
+
1118
+ commit 39f847cf8d453476275361078b831da43d400816
1119
+ Author: Naohisa Goto <ng@bioruby.org>
1120
+ Date: Thu Nov 24 12:08:47 2011 +0900
1121
+
1122
+ Use binary mode to open files.
1123
+
1124
+ Rakefile | 6 ++++--
1125
+ 1 files changed, 4 insertions(+), 2 deletions(-)
1126
+
1127
+ commit 688779e71a27e861fb01e07f816384561b8cfe45
1128
+ Author: Naohisa Goto <ng@bioruby.org>
1129
+ Date: Thu Nov 24 11:49:30 2011 +0900
1130
+
1131
+ Rakefile: new tasks: test-all to run all tests, etc.
1132
+
1133
+ * Rakefile: new tasks: test-all to run all tests, and test-network
1134
+ to run tests in test/network.
1135
+
1136
+ Rakefile | 10 ++++++++++
1137
+ 1 files changed, 10 insertions(+), 0 deletions(-)
1138
+
1139
+ commit 53719535defcb0fefb3cf8bebe3fad6716bf7de2
1140
+ Author: Naohisa Goto <ng@bioruby.org>
1141
+ Date: Thu Nov 24 11:28:38 2011 +0900
1142
+
1143
+ test/runner.rb: Run tests only in test/unit and test/functional.
1144
+
1145
+ test/runner.rb | 22 ++++++++++++++++------
1146
+ 1 files changed, 16 insertions(+), 6 deletions(-)
1147
+
1148
+ commit fb9ee403db6b447aee73ebb7f12ff5a5b73d6c52
1149
+ Author: Naohisa Goto <ng@bioruby.org>
1150
+ Date: Wed Nov 23 20:36:36 2011 +0900
1151
+
1152
+ A test class using network connection is moved under test/network/.
1153
+
1154
+ test/functional/bio/test_command.rb | 16 ----------------
1155
+ test/network/bio/test_command.rb | 35 +++++++++++++++++++++++++++++++++++
1156
+ 2 files changed, 35 insertions(+), 16 deletions(-)
1157
+ create mode 100644 test/network/bio/test_command.rb
1158
+
1159
+ commit a6dda2215aa686a9ca4af7484aa190f726d51e69
1160
+ Author: Naohisa Goto <ng@bioruby.org>
1161
+ Date: Wed Nov 23 20:28:58 2011 +0900
1162
+
1163
+ Tests using network connections are moved to test/network/
1164
+
1165
+ * Tests using network connections are moved to test/network/.
1166
+ * renamed: test/functional/bio/appl -> test/network/bio/appl
1167
+ * renamed: test/functional/bio/io -> test/network/bio/io
1168
+
1169
+ test/functional/bio/appl/blast/test_remote.rb | 93 ---------
1170
+ test/functional/bio/appl/test_blast.rb | 61 ------
1171
+ test/functional/bio/appl/test_pts1.rb | 117 -----------
1172
+ test/functional/bio/io/test_ddbjrest.rb | 47 -----
1173
+ test/functional/bio/io/test_ensembl.rb | 230 ---------------------
1174
+ test/functional/bio/io/test_pubmed.rb | 135 -------------
1175
+ test/functional/bio/io/test_soapwsdl.rb | 53 -----
1176
+ test/functional/bio/io/test_togows.rb | 268 -------------------------
1177
+ test/network/bio/appl/blast/test_remote.rb | 93 +++++++++
1178
+ test/network/bio/appl/test_blast.rb | 61 ++++++
1179
+ test/network/bio/appl/test_pts1.rb | 117 +++++++++++
1180
+ test/network/bio/io/test_ddbjrest.rb | 47 +++++
1181
+ test/network/bio/io/test_ensembl.rb | 230 +++++++++++++++++++++
1182
+ test/network/bio/io/test_pubmed.rb | 135 +++++++++++++
1183
+ test/network/bio/io/test_soapwsdl.rb | 53 +++++
1184
+ test/network/bio/io/test_togows.rb | 268 +++++++++++++++++++++++++
1185
+ 16 files changed, 1004 insertions(+), 1004 deletions(-)
1186
+ delete mode 100644 test/functional/bio/appl/blast/test_remote.rb
1187
+ delete mode 100644 test/functional/bio/appl/test_blast.rb
1188
+ delete mode 100644 test/functional/bio/appl/test_pts1.rb
1189
+ delete mode 100644 test/functional/bio/io/test_ddbjrest.rb
1190
+ delete mode 100644 test/functional/bio/io/test_ensembl.rb
1191
+ delete mode 100644 test/functional/bio/io/test_pubmed.rb
1192
+ delete mode 100644 test/functional/bio/io/test_soapwsdl.rb
1193
+ delete mode 100644 test/functional/bio/io/test_togows.rb
1194
+ create mode 100644 test/network/bio/appl/blast/test_remote.rb
1195
+ create mode 100644 test/network/bio/appl/test_blast.rb
1196
+ create mode 100644 test/network/bio/appl/test_pts1.rb
1197
+ create mode 100644 test/network/bio/io/test_ddbjrest.rb
1198
+ create mode 100644 test/network/bio/io/test_ensembl.rb
1199
+ create mode 100644 test/network/bio/io/test_pubmed.rb
1200
+ create mode 100644 test/network/bio/io/test_soapwsdl.rb
1201
+ create mode 100644 test/network/bio/io/test_togows.rb
1202
+
1203
+ commit ec747aa33d06e08a6469dfd330360161d1b0f8e2
1204
+ Author: Naohisa Goto <ng@bioruby.org>
1205
+ Date: Wed Nov 23 15:03:08 2011 +0900
1206
+
1207
+ Test bug fix: use binmode to disable CR/LF conversion (fail on Windows)
1208
+
1209
+ test/unit/bio/appl/blast/test_rpsblast.rb | 1 +
1210
+ test/unit/bio/io/flatfile/test_buffer.rb | 1 +
1211
+ 2 files changed, 2 insertions(+), 0 deletions(-)
1212
+
1213
+ commit 07ce32da009baa2c4e81f6d96f45e3dac49da183
1214
+ Author: Naohisa Goto <ng@bioruby.org>
1215
+ Date: Wed Nov 23 14:47:33 2011 +0900
1216
+
1217
+ Test bug fix: Read Sanger chromatogram files with binary mode
1218
+
1219
+ * Test bug fix: Read Sanger chromatogram files with binary mode.
1220
+ Fix error/failure on Windows due to default text mode reading.
1221
+
1222
+ test/unit/bio/db/sanger_chromatogram/test_abif.rb | 3 ++-
1223
+ test/unit/bio/db/sanger_chromatogram/test_scf.rb | 6 ++++--
1224
+ 2 files changed, 6 insertions(+), 3 deletions(-)
1225
+
1226
+ commit 20d9068643214e3482d18c36028e50b3c9109755
1227
+ Author: Naohisa Goto <ng@bioruby.org>
1228
+ Date: Wed Nov 23 14:17:25 2011 +0900
1229
+
1230
+ Incompatible change: Bio::FlatFile.open and auto use binary mode
1231
+
1232
+ * Incompatible change: Bio::FlatFile.open and auto use binary mode
1233
+ (binmode) unless text mode option is explicitly given.
1234
+
1235
+ RELEASE_NOTES.rdoc | 7 ++
1236
+ lib/bio/io/flatfile/buffer.rb | 84 ++++++++++++++++++
1237
+ test/unit/bio/io/flatfile/test_buffer.rb | 139 ++++++++++++++++++++++++++++++
1238
+ 3 files changed, 230 insertions(+), 0 deletions(-)
1239
+
1240
+ commit 48bd150a6180d59879872bd85dd95c7ddf1a19c0
1241
+ Author: Naohisa Goto <ng@bioruby.org>
1242
+ Date: Tue Nov 22 17:32:23 2011 +0900
1243
+
1244
+ Test bug fix: fixed incomplete Windows platform detection.
1245
+
1246
+ test/unit/bio/test_command.rb | 13 +++++++++----
1247
+ 1 files changed, 9 insertions(+), 4 deletions(-)
1248
+
1249
+ commit d499bcee7956b1a0a4c04aeb106e50a0839167b0
1250
+ Author: Naohisa Goto <ng@bioruby.org>
1251
+ Date: Tue Nov 22 16:15:05 2011 +0900
1252
+
1253
+ FuncTestCommandCall is changed to test various command-lines.
1254
+
1255
+ * New file test/data/command/echoarg2.sh shell script, which acts
1256
+ like echoarg2.bat for Windows.
1257
+ * FuncTestCommandCall is changed to test various command-lines.
1258
+
1259
+ test/data/command/echoarg2.sh | 4 ++
1260
+ test/functional/bio/test_command.rb | 70 +++++++++++++++++++++++++++++------
1261
+ 2 files changed, 62 insertions(+), 12 deletions(-)
1262
+ create mode 100644 test/data/command/echoarg2.sh
1263
+
1264
+ commit d45e311c09ad2f4116770dd903f81e652a63ca2a
1265
+ Author: Naohisa Goto <ng@bioruby.org>
1266
+ Date: Tue Nov 22 14:21:34 2011 +0900
1267
+
1268
+ Test bug fix: Opened files should be closed.
1269
+
1270
+ * Test bug fix: Opened files should be closed. When finalizing writer
1271
+ tests, temporary files are not properly closed after verify reading,
1272
+ and removing the temporary files raise erro on Windows.
1273
+
1274
+ test/unit/bio/db/test_phyloxml_writer.rb | 24 +++++++++++++++---------
1275
+ 1 files changed, 15 insertions(+), 9 deletions(-)
1276
+
1277
+ commit a9022c61b98746e98a83f1cfd902e0e6b11c7bbb
1278
+ Author: Naohisa Goto <ng@bioruby.org>
1279
+ Date: Tue Nov 22 13:55:15 2011 +0900
1280
+
1281
+ New method Bio::PhyloXML::Parser#closed?, and Bio::PhyloXML::Parser.open with block.
1282
+
1283
+ * New method Bio::PhyloXML::Parser#closed? to check if it is closed
1284
+ or not.
1285
+ * Bio::PhyloXML::Parser.open and open_uri now can get a block.
1286
+ When a block is given, a Bio::PhyloXML::Parser object is passed
1287
+ to the block as an argument. When the block terminates, the object
1288
+ is closed.
1289
+ * Added tests about the above changes.
1290
+
1291
+ lib/bio/db/phyloxml/phyloxml_parser.rb | 57 +++++++++++++++++++++++++++++---
1292
+ test/unit/bio/db/test_phyloxml.rb | 56 ++++++++++++++++++++++++++++++-
1293
+ 2 files changed, 106 insertions(+), 7 deletions(-)
1294
+
1295
+ commit 893cbe6ca993eca08427074059c2ba03621ea889
1296
+ Author: Naohisa Goto <ng@bioruby.org>
1297
+ Date: Sat Nov 5 00:49:10 2011 +0900
1298
+
1299
+ Ruby 1.9 should be fully supported, and optional requirements are revised.
1300
+
1301
+ README.rdoc | 48 +++++++++++++++++++++++++++++++++---------------
1302
+ 1 files changed, 33 insertions(+), 15 deletions(-)
1303
+
1304
+ commit 38b1715c2d6bad39560e0846781ca903b1c16eda
1305
+ Author: Naohisa Goto <ng@bioruby.org>
1306
+ Date: Fri Nov 4 22:12:38 2011 +0900
1307
+
1308
+ Added REFERENCE.
1309
+
1310
+ README.rdoc | 12 ++++++++++++
1311
+ 1 files changed, 12 insertions(+), 0 deletions(-)
1312
+
1313
+ commit 9a766cd17236bbe1e28d6972001dd5e3ed596123
1314
+ Author: Naohisa Goto <ng@bioruby.org>
1315
+ Date: Fri Nov 4 21:39:20 2011 +0900
1316
+
1317
+ Removed "setup.rb test" and added about running tests.
1318
+
1319
+ README.rdoc | 39 ++++++++++++++++++++++++++++++++++-----
1320
+ 1 files changed, 34 insertions(+), 5 deletions(-)
1321
+
1322
+ commit 39737179b06366e1d5acf2e5ac930e41b3a4ee38
1323
+ Author: Pjotr Prins <pjotr.public01@thebird.nl>
1324
+ Date: Fri Oct 14 08:58:01 2011 +0200
1325
+
1326
+ Tutorial: added info on biogems
1327
+
1328
+ doc/Tutorial.rd | 16 ++++++++++++++++
1329
+ doc/Tutorial.rd.html | 23 +++++++++++++++--------
1330
+ 2 files changed, 31 insertions(+), 8 deletions(-)
1331
+
1332
+ commit e84400c5e9e94d95d6a8d3c4b72388b94d204766
1333
+ Author: Pjotr Prins <pjotr.public01@thebird.nl>
1334
+ Date: Fri Oct 14 08:49:41 2011 +0200
1335
+
1336
+ Tutorial: small updates
1337
+
1338
+ doc/Tutorial.rd | 8 +++++---
1339
+ doc/Tutorial.rd.html | 9 +++++----
1340
+ 2 files changed, 10 insertions(+), 7 deletions(-)
1341
+
1342
+ commit 9fe07345b3b7be890d5baad9a51f0752af5e0ac4
1343
+ Author: Naohisa Goto <ng@bioruby.org>
1344
+ Date: Tue Sep 13 23:05:39 2011 +0900
1345
+
1346
+ README_DEV.rdoc: added git tips and policies, etc.
1347
+
1348
+ * Added Git tips about sending a patch or a pull request.
1349
+ * Added Git management policies for the blessed repository.
1350
+ * Added some coding styles.
1351
+ * Added descriptions about Ruby versions and OS.
1352
+
1353
+ README_DEV.rdoc | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
1354
+ 1 files changed, 93 insertions(+), 2 deletions(-)
1355
+
1356
+ commit 3c952c4a782501b21f36ece5bcab672dab12fc6d
1357
+ Author: Naohisa Goto <ng@bioruby.org>
1358
+ Date: Tue Sep 13 13:21:20 2011 +0900
1359
+
1360
+ README.rdoc: for release notes and changelog, about sample files.
1361
+
1362
+ README.rdoc | 10 +++++++++-
1363
+ 1 files changed, 9 insertions(+), 1 deletions(-)
1364
+
1365
+ commit fba9a6c0f1f79dd567ca54ba085b6258ac8efb31
1366
+ Author: Naohisa Goto <ng@bioruby.org>
1367
+ Date: Tue Sep 13 13:20:05 2011 +0900
1368
+
1369
+ RELEASE_NOTES.rdoc: mentioned about removal of rdoc.zsh.
1370
+
1371
+ RELEASE_NOTES.rdoc | 6 +++++-
1372
+ 1 files changed, 5 insertions(+), 1 deletions(-)
1373
+
1374
+ commit 685b6bb7b98083e1b50e73baf4e7fa71bc9a39fa
1375
+ Author: Naohisa Goto <ng@bioruby.org>
1376
+ Date: Mon Sep 12 21:23:34 2011 +0900
1377
+
1378
+ bioruby.gemspec.erb: LEGAL is added to rdoc files
1379
+
1380
+ * bioruby.gemspec.erb: LEGAL is added to rdoc files.
1381
+ * bioruby.gemspec is updated by "rake regemspec".
1382
+
1383
+ bioruby.gemspec | 9 ++++++---
1384
+ bioruby.gemspec.erb | 6 +++++-
1385
+ 2 files changed, 11 insertions(+), 4 deletions(-)
1386
+
1387
+ commit 414a6331f40fc99f554042e9a031689ea6d76da4
1388
+ Author: Naohisa Goto <ng@bioruby.org>
1389
+ Date: Mon Sep 12 20:54:06 2011 +0900
1390
+
1391
+ deleted rdoc.zsh which is obsolete and unused
1392
+
1393
+ * Deleted rdoc.zsh which is obsolete and unused.
1394
+ To generate rdoc html, "rake rdoc" or "rake rerdoc".
1395
+ See "rake -T" for more information.
1396
+
1397
+ rdoc.zsh | 8 --------
1398
+ 1 files changed, 0 insertions(+), 8 deletions(-)
1399
+ delete mode 100644 rdoc.zsh
1400
+
1401
+ commit 272d9106cec43b0f219edd92a6f7bd3f9875a761
1402
+ Author: Naohisa Goto <ng@bioruby.org>
1403
+ Date: Mon Sep 12 20:35:47 2011 +0900
1404
+
1405
+ Added new ChangeLog, showing changes after 1.4.2 release.
1406
+
1407
+ * Added new ChangeLog, showing changes after 1.4.2 release.
1408
+ For the changes before 1.4.2, see doc/ChangeLog-before-1.4.2.
1409
+ For the changes before 1.3.1, see doc/ChangeLog-before-1.3.1.
1410
+
1411
+ ChangeLog | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1412
+ 1 files changed, 64 insertions(+), 0 deletions(-)
1413
+ create mode 100644 ChangeLog
1414
+
1415
+ commit 941493378f9884978c81d5f63ee4ed5c175d4bea
1416
+ Author: Naohisa Goto <ng@bioruby.org>
1417
+ Date: Mon Sep 12 20:28:28 2011 +0900
1418
+
1419
+ Rakefile: add new task :rechangelog to update ChangeLog using git log.
1420
+
1421
+ * Rakefile: add new task :rechangelog to update ChangeLog using
1422
+ git log. Note that the tag name (currently 1.4.2) is hardcoded
1423
+ in Rakefile.
1424
+
1425
+ Rakefile | 9 +++++++++
1426
+ 1 files changed, 9 insertions(+), 0 deletions(-)
1427
+
1428
+ commit 1c89e6546223c3c05ea79b8ade4b493580851efa
1429
+ Author: Naohisa Goto <ng@bioruby.org>
1430
+ Date: Mon Sep 12 20:24:49 2011 +0900
1431
+
1432
+ renamed ChangeLog to doc/ChangeLog-before-1.4.2
1433
+
1434
+ ChangeLog | 5013 --------------------------------------------
1435
+ doc/ChangeLog-before-1.4.2 | 5013 ++++++++++++++++++++++++++++++++++++++++++++
1436
+ 2 files changed, 5013 insertions(+), 5013 deletions(-)
1437
+ delete mode 100644 ChangeLog
1438
+ create mode 100644 doc/ChangeLog-before-1.4.2
1439
+
1440
+ commit 2233fbada55034bd16fb5b9c642292b4b6ccca83
1441
+ Author: Naohisa Goto <ng@bioruby.org>
1442
+ Date: Mon Sep 12 20:22:49 2011 +0900
1443
+
1444
+ ChangeLog updated: add log about 1.4.2 release
1445
+
1446
+ ChangeLog | 9 +++++++++
1447
+ 1 files changed, 9 insertions(+), 0 deletions(-)
1448
+
1449
+ commit 1c02ab0488e4097a2cf5c16180c3179c78e3d572
1450
+ Author: Naohisa Goto <ng@bioruby.org>
1451
+ Date: Mon Sep 12 19:40:54 2011 +0900
1452
+
1453
+ New RELEASE_NOTES.rdoc for next release version.
1454
+
1455
+ RELEASE_NOTES.rdoc | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1456
+ 1 files changed, 47 insertions(+), 0 deletions(-)
1457
+ create mode 100644 RELEASE_NOTES.rdoc
1458
+
1459
+ commit 4e63e69e98c0c440ec476ef3407fcc8fd2411056
1460
+ Author: Naohisa Goto <ng@bioruby.org>
1461
+ Date: Mon Sep 12 19:32:48 2011 +0900
1462
+
1463
+ renamed RELEASE_NOTES.rdoc to doc/RELEASE_NOTES-1.4.2.rdoc
1464
+
1465
+ RELEASE_NOTES.rdoc | 132 ------------------------------------------
1466
+ doc/RELEASE_NOTES-1.4.2.rdoc | 132 ++++++++++++++++++++++++++++++++++++++++++
1467
+ 2 files changed, 132 insertions(+), 132 deletions(-)
1468
+ delete mode 100644 RELEASE_NOTES.rdoc
1469
+ create mode 100644 doc/RELEASE_NOTES-1.4.2.rdoc
1470
+
1471
+ commit 9c5c8cafc3ec372ef80aa20d01d13034f94d5af2
1472
+ Author: Naohisa Goto <ng@bioruby.org>
1473
+ Date: Fri Sep 2 12:02:41 2011 +0900
1474
+
1475
+ Bio::BIORUBY_EXTRA_VERSION set to ".5000" (unstable version).
1476
+
1477
+ lib/bio/version.rb | 2 +-
1478
+ 1 files changed, 1 insertions(+), 1 deletions(-)