ngoto-bio 1.2.9.9001 → 1.2.9.9501
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.
- data/ChangeLog +1178 -0
- data/KNOWN_ISSUES.rdoc +66 -0
- data/Rakefile +36 -2
- data/bioruby.gemspec +8 -2
- data/bioruby.gemspec.erb +8 -5
- data/doc/Changes-1.3.rdoc +27 -0
- data/lib/bio/appl/blast/remote.rb +2 -1
- data/lib/bio/shell/plugin/entry.rb +9 -3
- data/lib/bio/shell/plugin/ncbirest.rb +66 -0
- data/lib/bio/shell.rb +2 -1
- metadata +9 -1
data/ChangeLog
CHANGED
|
@@ -1,3 +1,1181 @@
|
|
|
1
|
+
2009-01-26 Naohisa Goto <ng@bioruby.org>
|
|
2
|
+
|
|
3
|
+
* KNOWN_ISSUES.rdoc
|
|
4
|
+
|
|
5
|
+
Newly added KNOWN_ISSUES.rdoc that describes known issues and
|
|
6
|
+
bugs in current BioRuby.
|
|
7
|
+
(commit 06b10262be0bf797a3b133e4697e9b0955408944)
|
|
8
|
+
|
|
9
|
+
* lib/bio/shell/plugin/ncbirest.rb, lib/bio/shell.rb
|
|
10
|
+
|
|
11
|
+
New shell plugin lib/bio/shell/plugin/ncbirest.rb, providing
|
|
12
|
+
"efetch", "einfo", "esearch", and "esearch_count" methods.
|
|
13
|
+
They act the same as those defined in Bio::NCBI::REST, except
|
|
14
|
+
that efetch automatically selects databases if no options
|
|
15
|
+
are given and only 1 id is given.
|
|
16
|
+
(commit c482e1864aa0dbca3727b1059d4fe3d0aefb3917)
|
|
17
|
+
|
|
18
|
+
* lib/bio/shell/plugin/entry.rb
|
|
19
|
+
|
|
20
|
+
A shell command "getobj" is changed to use "efetch" method
|
|
21
|
+
when "gb" or some variant is specified as the database.
|
|
22
|
+
(commit c482e1864aa0dbca3727b1059d4fe3d0aefb3917)
|
|
23
|
+
|
|
24
|
+
* bioruby.gemspec.erb, bioruby.gemspec
|
|
25
|
+
|
|
26
|
+
* Changed version to 1.2.9.9501.
|
|
27
|
+
* Changed to use "git ls-files" instead of "git-ls-files", and
|
|
28
|
+
changed not to redirect to /dev/null.
|
|
29
|
+
* Special treatment of bioruby.gemspec is removed.
|
|
30
|
+
* ChangeLog is included to RDoc.
|
|
31
|
+
* Set RDoc title to "BioRuby API documentation".
|
|
32
|
+
* Set "--line-numbers" and "--inline-source" to rdoc_options.
|
|
33
|
+
(commit f014685090c38eeb64219603f2c7e90574849431)
|
|
34
|
+
* added KNOWN_ISSUES.rdoc to files for no-git environment.
|
|
35
|
+
(commit 06b10262be0bf797a3b133e4697e9b0955408944)
|
|
36
|
+
* Ruby 1.9 support: command execution with shell can raise
|
|
37
|
+
an error.
|
|
38
|
+
(commit 3179de32f1dc746c8de975917b1718a523800d69)
|
|
39
|
+
* bioruby.gemspec is generated from bioruby.gemspec.erb.
|
|
40
|
+
(commit 4e1cd3bfb8207b357d5b71cc0fc8366f06491130)
|
|
41
|
+
(commit 06b10262be0bf797a3b133e4697e9b0955408944)
|
|
42
|
+
|
|
43
|
+
2009-01-21 Naohisa Goto <ng@bioruby.org>
|
|
44
|
+
|
|
45
|
+
* ChangeLog
|
|
46
|
+
|
|
47
|
+
Added recent changes and fixed typo for recent changes.
|
|
48
|
+
|
|
49
|
+
2009-01-20 Naohisa Goto <ng@bioruby.org>
|
|
50
|
+
|
|
51
|
+
* ChangeLog, doc/Changes-1.3.rdoc
|
|
52
|
+
|
|
53
|
+
Added ChangeLog and doc/Changes-1.3.rdoc for recent changes.
|
|
54
|
+
(commit be2254ddea152fddf51a2476eeb20d804b1e3123)
|
|
55
|
+
|
|
56
|
+
* bioruby.gemspec
|
|
57
|
+
|
|
58
|
+
Added bioruby.gemspec created from bioruby.gemspec.erb.
|
|
59
|
+
(commit 4c54597eaf09107c34ad06bc5f5f9cead77a0198)
|
|
60
|
+
|
|
61
|
+
* lib/bio/appl/blast/wublast.rb
|
|
62
|
+
|
|
63
|
+
Bug fix: parsing of exit code failed when ignoring fatal errors
|
|
64
|
+
(commit 44ed958acebe4324a9a48e7292c4f0ad5c0fb685)
|
|
65
|
+
|
|
66
|
+
* Bug fix: could not get exit code in WU-BLAST results executed
|
|
67
|
+
with a command line option "-nonnegok", "-novalidctxok", or
|
|
68
|
+
"-shortqueryok".
|
|
69
|
+
* New methods Bio::Blast::WU::Report#exit_code_message and #notes.
|
|
70
|
+
|
|
71
|
+
* Rakefile
|
|
72
|
+
|
|
73
|
+
Added package tasks and changed to use ERB instead of eruby.
|
|
74
|
+
(commit 7b081c173d3b1cbc46034297ea802a4e06f85b2f)
|
|
75
|
+
|
|
76
|
+
* bioruby.gemspec.erb
|
|
77
|
+
|
|
78
|
+
Use git-ls-files command to obtain list of files when available.
|
|
79
|
+
(commit 5d5cb24fdd56601bc43ee78facc255ca484245c0)
|
|
80
|
+
|
|
81
|
+
2009-01-17 Naohisa Goto <ng@bioruby.org>
|
|
82
|
+
|
|
83
|
+
* Rakefile
|
|
84
|
+
|
|
85
|
+
Simple Rakefile for dynamic generation of bioruby.gemspec
|
|
86
|
+
(commit d5161d164f3520db25bed9aececb962428b9d6bc)
|
|
87
|
+
|
|
88
|
+
* bioruby.gemspec.erb
|
|
89
|
+
|
|
90
|
+
bioruby.gemspec is renamed to bioruby.gemspec.erb with modification.
|
|
91
|
+
(commit bef311668e4a3be30965ce94d41e7bde4a4e17f9)
|
|
92
|
+
|
|
93
|
+
To prevent the error "Insecure operation - glob" in GitHub,
|
|
94
|
+
bioruby.gemspec is renamed to bioruby.gemspec.erb, and modified
|
|
95
|
+
to generate the file list by using eruby.
|
|
96
|
+
|
|
97
|
+
2009-01-15 Naohisa Goto <ng@bioruby.org>
|
|
98
|
+
|
|
99
|
+
* doc/Changes-1.3.rdoc
|
|
100
|
+
|
|
101
|
+
Changes-1.3.rd is renamed to Changes-1.3.rdoc with format
|
|
102
|
+
conversion, and fixed typo.
|
|
103
|
+
(commit 1aef599650d14362ed233dcc9a7db8d3c1db1777)
|
|
104
|
+
|
|
105
|
+
Added details about newly added classes etc.
|
|
106
|
+
(commit eda9fd0abbb8e430810468d777d0b585e33c25d8)
|
|
107
|
+
|
|
108
|
+
2009-01-13 Naohisa Goto <ng@bioruby.org>
|
|
109
|
+
|
|
110
|
+
* bioruby.gemspec
|
|
111
|
+
|
|
112
|
+
Changed version to 1.2.9001, set has_rdoc = true and rdoc options.
|
|
113
|
+
(commit 1f63d3d5389dd3b0316e9f312b56e62371caa253)
|
|
114
|
+
|
|
115
|
+
* Gem version number changed to 1.2.9.9001 for testing gem.
|
|
116
|
+
* Changed to has_rdoc = true.
|
|
117
|
+
* README.rdoc and README_DEV.rdoc are now included to gem's rdoc,
|
|
118
|
+
and README.rdoc is set to the main page.
|
|
119
|
+
* *.yaml is now excluded from rdoc.
|
|
120
|
+
|
|
121
|
+
2009-01-13 Jan Aerts <jan.aerts@gmail.com>
|
|
122
|
+
|
|
123
|
+
* bioruby.gemspec
|
|
124
|
+
|
|
125
|
+
Renamed gemspec.rb to bioruby.gemspec because so github builds
|
|
126
|
+
the gem automatically
|
|
127
|
+
(commit 561ae16d20f73dcd6fc3d47c41c97c32f9aadb1a)
|
|
128
|
+
(committer: Naohisa Goto)
|
|
129
|
+
(original commit date: Wed Jun 25 11:01:03 2008 +0100)
|
|
130
|
+
|
|
131
|
+
Edited gemspec because github returned an error while building gem.
|
|
132
|
+
(commit f0d91e07550872c2f0d5835e496af1add7759d42)
|
|
133
|
+
(committer: Naohisa Goto)
|
|
134
|
+
(original commit date: Wed Jun 25 11:03:04 2008 +0100)
|
|
135
|
+
|
|
136
|
+
2009-01-13 Naohisa Goto <ng@bioruby.org>
|
|
137
|
+
|
|
138
|
+
* README.rdoc
|
|
139
|
+
|
|
140
|
+
Changed format from RD to RDoc with some additional URLs
|
|
141
|
+
(commit cb8781d701f22cbaf16575bb237a9e0cbf8cd407)
|
|
142
|
+
|
|
143
|
+
Clarified copyright of README.rdoc and BioRuby
|
|
144
|
+
(commit acd9e6d6e6046281c6c9c03cff1021449b8e780f)
|
|
145
|
+
|
|
146
|
+
Updated descriptions about RubyGems, and added Ruby 1.9 partial
|
|
147
|
+
support
|
|
148
|
+
(commit ff63658b255988bf0e7a9f5a2d1523d5104fe588)
|
|
149
|
+
|
|
150
|
+
2009-01-09 Naohisa Goto <ng@bioruby.org>
|
|
151
|
+
|
|
152
|
+
* test/runner,rb
|
|
153
|
+
|
|
154
|
+
Ruby 1.9.1 support: using alternatives if no Test::Unit::AutoRunner
|
|
155
|
+
(commit 5df2a9dc0642d4f1e9a4398d6af908780d622a6e)
|
|
156
|
+
|
|
157
|
+
2009-01-05 Naohisa Goto <ng@bioruby.org>
|
|
158
|
+
|
|
159
|
+
* lib/bio/db/fantom.rb
|
|
160
|
+
|
|
161
|
+
Bug fix: incomplete cgi parameter escaping, and suppressing warnings.
|
|
162
|
+
(commit 754d8815255a0f0db20df9dd74f9f146605d430e)
|
|
163
|
+
|
|
164
|
+
* Bug fix: incomplete cgi parameter escaping for ID string in
|
|
165
|
+
Bio::FANTOM.get_by_id (and Bio::FANTOM.query which internally
|
|
166
|
+
calls the get_by_id method).
|
|
167
|
+
* Warning message "Net::HTTP v1.1 style assignment found" when
|
|
168
|
+
$VERBOSE=true is suppressed.
|
|
169
|
+
* Removed obsolete "rescue LoadError" when require 'rexml/document'.
|
|
170
|
+
|
|
171
|
+
* lib/bio/io/fetch.rb
|
|
172
|
+
|
|
173
|
+
Bug fix: possible incomplete form key/value escaping.
|
|
174
|
+
(commit ecaf2c66261e4ce19ab35f73e305468e1da412ed)
|
|
175
|
+
|
|
176
|
+
* Bug fix: possible incomplete form key/value escaping
|
|
177
|
+
* Refactoring: changed to use private methods _get and _get_single
|
|
178
|
+
to access remote site.
|
|
179
|
+
|
|
180
|
+
* lib/bio/io/pubmed.rb
|
|
181
|
+
|
|
182
|
+
Bug fix: possible incomplete escaping of parameters, and
|
|
183
|
+
suppressing warnings
|
|
184
|
+
(commit 93daccabb1a82bb20e92798c1810182dfb836ba7)
|
|
185
|
+
|
|
186
|
+
* Bug fix: possible incomplete string escaping of REST parameters
|
|
187
|
+
in Bio::PubMed#query and #pmfetch.
|
|
188
|
+
* Warning message "Net::HTTP v1.1 style assignment found" when
|
|
189
|
+
$VERBOSE=true is suppressed.
|
|
190
|
+
* Removed obsolete "unless defined?(CGI)".
|
|
191
|
+
|
|
192
|
+
* lib/bio/command.rb, test/unit/bio/test_command.rb
|
|
193
|
+
|
|
194
|
+
Bug fix: incomplete escaping in Bio::Command.make_cgi_params etc.
|
|
195
|
+
(commit 17c8f947e5d94012921f9252f71460e9d8f593e3)
|
|
196
|
+
|
|
197
|
+
* Buf fix: in Bio::Command.make_cgi_params and
|
|
198
|
+
make_cgi_params_key_value, string escaping of form keys and values
|
|
199
|
+
is incomplete.
|
|
200
|
+
* Warning message "useless use of :: in void context" is suppressed
|
|
201
|
+
when running test/unit/bio/test_command.rb with $VERBOSE=true.
|
|
202
|
+
* Unit tests are added.
|
|
203
|
+
|
|
204
|
+
* lib/bio/appl/, lib/bio/io/ (9 files)
|
|
205
|
+
|
|
206
|
+
Suppress warning message "Net::HTTP v1.1 style assignment found"
|
|
207
|
+
when $VERBOSE = true.
|
|
208
|
+
(commit a2985eb1f3aed383f1b1b391f2184317c7fd21c7)
|
|
209
|
+
|
|
210
|
+
2009-01-02 Naohisa Goto <ng@bioruby.org>
|
|
211
|
+
|
|
212
|
+
* README.rdoc
|
|
213
|
+
|
|
214
|
+
Changing optional requirements, recommended Ruby version, and
|
|
215
|
+
setup.rb credit.
|
|
216
|
+
(commit a5462ab4bd403d2d833e5d6db26ae98ca763513c)
|
|
217
|
+
|
|
218
|
+
2008-12-30 Naohisa Goto <ng@bioruby.org>
|
|
219
|
+
|
|
220
|
+
* README.rdoc
|
|
221
|
+
|
|
222
|
+
Fixed grammar and spelling in README.rdoc, indicated by
|
|
223
|
+
Andrew Grimm at git://github.com/agrimm/bioruby.git
|
|
224
|
+
in Sun Sep 21 19:59:03 2008 +1000.
|
|
225
|
+
(commit 446918037bff392b9c6bc6828720c585733a8f4b)
|
|
226
|
+
|
|
227
|
+
2008-12-30 Naohisa Goto <ng@bioruby.org>
|
|
228
|
+
|
|
229
|
+
* lib/bio.rb
|
|
230
|
+
|
|
231
|
+
Changed BIORUBY_VERSION to 1.3.0, which will be the next BioRuby
|
|
232
|
+
release version number.
|
|
233
|
+
(commit b000b1c4a5a136ab287b517b8b8c66e54f99a8a8).
|
|
234
|
+
|
|
235
|
+
* doc/Changes-1.3.rd
|
|
236
|
+
|
|
237
|
+
Added documents about changed points for 1.3.0 release.
|
|
238
|
+
(commit 028e323e784eb60b18f941cce1e3752abff1433c)
|
|
239
|
+
|
|
240
|
+
* lib/bio/appl/blast/format8.rb
|
|
241
|
+
|
|
242
|
+
Ruby 1.9 support: String#each_line instead of String#each
|
|
243
|
+
(commit 1bc59708137fd46911d5892e4712cc49c71fa031)
|
|
244
|
+
|
|
245
|
+
* lib/bio/io/flatfile/splitter.rb
|
|
246
|
+
|
|
247
|
+
Checks for undefined constants are added for running without
|
|
248
|
+
"require 'bio'" in unit tests.
|
|
249
|
+
(commit 311176d4d390e5948348f623ff3632454136a03f)
|
|
250
|
+
|
|
251
|
+
* lib/bio/appl/blast.rb, lib/bio/appl/blast/report.rb,
|
|
252
|
+
test/unit/bio/appl/test_blast.rb
|
|
253
|
+
|
|
254
|
+
Support for default (-m 0) and tabular (-m 8) formats in
|
|
255
|
+
Bio::Blast.reports.
|
|
256
|
+
|
|
257
|
+
* Added support for default (-m 0) and tabular (-m 8) formats in
|
|
258
|
+
Bio::Blast.reports method. For the purpose, Bio::Blast::Report_tab
|
|
259
|
+
is added to read tabular format by using Bio::FlatFile.
|
|
260
|
+
* Unit tests are added.
|
|
261
|
+
|
|
262
|
+
2008-12-26 Naohisa Goto <ng@bioruby.org>
|
|
263
|
+
|
|
264
|
+
* lib/bio/appl/paml/codeml/rates.rb
|
|
265
|
+
|
|
266
|
+
Ruby 1.9 support: String#each_line instead of String#each
|
|
267
|
+
(commit 1789a3975c4c82d3b45f545893be8f2a7bf47a01)
|
|
268
|
+
|
|
269
|
+
2008-12-26 Naohisa Goto <ng@bioruby.org>
|
|
270
|
+
|
|
271
|
+
* lib/bio/command.rb, lib/bio/appl/fasta.rb,
|
|
272
|
+
lib/bio/appl/blast/genomenet.rb
|
|
273
|
+
|
|
274
|
+
Refactoring and following the change of the remote site
|
|
275
|
+
fasta.genome.jp.
|
|
276
|
+
(commit 671092dff67890fc48dd7ff2f606c4cedc2eb02c)
|
|
277
|
+
|
|
278
|
+
* New method Bio::Command.http_post_form.
|
|
279
|
+
* Bio::Blast::Remote::GenomeNet#exec_genomenet and
|
|
280
|
+
Bio::Fasta#exec_genomenet are changed to use the new method.
|
|
281
|
+
* Changed a regexp. in Bio::Fasta#exec_genomenet is changed
|
|
282
|
+
following the change of the remote GenomeNet (fasta.genome.jp).
|
|
283
|
+
|
|
284
|
+
2008-12-24 Naohisa Goto <ng@bioruby.org>
|
|
285
|
+
|
|
286
|
+
* lib/bio/location.rb, test/unit/bio/test_location.rb
|
|
287
|
+
|
|
288
|
+
New method Bio::Locations#to_s with bug fix, etc.
|
|
289
|
+
(commit 115b09456881e1d03730d0b9e7a61a65abf6a1fe)
|
|
290
|
+
|
|
291
|
+
* New method Bio::Locations#to_s is added.
|
|
292
|
+
* New attributes Bio::Locations#operator and Bio::Location#carat.
|
|
293
|
+
* Changed not to substitute from "order(...)" or "group(...)" to
|
|
294
|
+
"join(...)".
|
|
295
|
+
* Bug fix: Bio::Locations.new(str) changes the argument string
|
|
296
|
+
when the string contains whitespaces.
|
|
297
|
+
* Unit tests for Bio::Locations#to_s are added.
|
|
298
|
+
|
|
299
|
+
2008-12-20 Naohisa Goto <ng@bioruby.org>
|
|
300
|
+
|
|
301
|
+
* test/functional/bio/appl/test_pts1.rb,
|
|
302
|
+
test/unit/bio/appl/test_pts1.rb
|
|
303
|
+
|
|
304
|
+
Moved part of test_pts1.rb using network from test/unit to
|
|
305
|
+
test/functional.
|
|
306
|
+
(commit 933ff3e7d615fe6521934f137519ea84b3b517f2)
|
|
307
|
+
|
|
308
|
+
2008-12-18 Naohisa Goto <ng@bioruby.org>
|
|
309
|
+
|
|
310
|
+
* test/unit/bio/io/test_soapwsdl.rb
|
|
311
|
+
|
|
312
|
+
Ruby 1.9 support: following the change of Object#instance_methods
|
|
313
|
+
(commit 008cf5f43786f6143f74889e0ec53d1c8a452aa2)
|
|
314
|
+
|
|
315
|
+
Note that SOAP/WSDL library is no longer bundled with Ruby 1.9,
|
|
316
|
+
and tests in test_soapwsdl.rb may fail.
|
|
317
|
+
|
|
318
|
+
* test/unit/bio/io/test_ddbjxml.rb
|
|
319
|
+
|
|
320
|
+
Ruby 1.9 support: following the change of Module::constants
|
|
321
|
+
(commit ed1ad96e7ed9d6c7d67e5413a22ba935a3b36efa)
|
|
322
|
+
|
|
323
|
+
* lib/bio/util/restriction_enzyme/single_strand.rb
|
|
324
|
+
|
|
325
|
+
Ruby 1.9 support: changed Array#to_s to join, Symbol#to_i to __id__,
|
|
326
|
+
etc.
|
|
327
|
+
(commit a29debb8c03244c1ce61317d6df0a2c5d066de3d)
|
|
328
|
+
|
|
329
|
+
* Ruby 1.9 support: in pattern method, changed to use Array#join
|
|
330
|
+
instead of Array#to_s.
|
|
331
|
+
* Ruby 1.9 support: in self.once method, changed to use
|
|
332
|
+
Object#__id__ instead of Symbol#to_i.
|
|
333
|
+
* self.once is changed to be a private class method.
|
|
334
|
+
|
|
335
|
+
2008-12-18 Naohisa Goto <ng@bioruby.org>
|
|
336
|
+
|
|
337
|
+
* lib/bio/db/rebase.rb
|
|
338
|
+
|
|
339
|
+
Ruby 1.9 support: changed not to use String#each, etc.
|
|
340
|
+
(commit 47ba6e9fcf864f5881211e766f2e47b60dde178a)
|
|
341
|
+
|
|
342
|
+
* Ruby 1.9 support: In parse_enzymes, parse_references, and
|
|
343
|
+
parse_suppliers methods, String#each is changed to each_line.
|
|
344
|
+
* Changed to use require instead of autoload, to reduce support cost.
|
|
345
|
+
|
|
346
|
+
2008-12-16 Moses Hohman <moses@moseshohman.com>
|
|
347
|
+
|
|
348
|
+
* lib/bio/db/medline.rb, test/unit/bio/db/test_medline.rb
|
|
349
|
+
|
|
350
|
+
fix medline parsing of author last names that are all caps
|
|
351
|
+
(commit 5f37d566fc2efa4878efbd19e83f909a58c4cb00)
|
|
352
|
+
|
|
353
|
+
2008-12-15 Mitsuteru Nakao <n@bioruby.org>
|
|
354
|
+
|
|
355
|
+
* lib/bio/db/kegg/glycan.rb
|
|
356
|
+
|
|
357
|
+
Bug fix in Bio::KEGG::GLYCAN#mass.
|
|
358
|
+
Thanks to a reporter.
|
|
359
|
+
(commit cb8f1acc4caebf1f04d4a6c141dd4477fcb5394b)
|
|
360
|
+
(committer: Naohisa Goto)
|
|
361
|
+
|
|
362
|
+
2008-12-15 Naohisa Goto <ng@bioruby.org>
|
|
363
|
+
|
|
364
|
+
* lib/bio/pathway.rb, test/unit/bio/test_pathway.rb
|
|
365
|
+
|
|
366
|
+
Fixed pending bugs described in unit test, and Ruby 1.9 support
|
|
367
|
+
(commit 97b3cd4cf78eff8aede16369298aaacf1c319b68)
|
|
368
|
+
|
|
369
|
+
* Pending bugs described in test/unit/bio/test_pathway.rb are fixed.
|
|
370
|
+
Fixed a bug in subgraph: does not include nodes w/o edges.
|
|
371
|
+
A bug in cliquishness depending on the subgraph bug is also fixed.
|
|
372
|
+
* Bio::Pathway#cliquishness is changed to calculate cliquishness
|
|
373
|
+
(clustering coefficient) for not only undirected graphs but also
|
|
374
|
+
directed graphs. Note that pending proposed specification changes
|
|
375
|
+
previously written in test_pathway.rb (raises error for directed
|
|
376
|
+
graphs, and return 1 for a node that has only one neighbor node)
|
|
377
|
+
are rejected.
|
|
378
|
+
* Ruby 1.9 support: To avoid dependency to the order of objects
|
|
379
|
+
in Hash#each (and each_keys, etc.), Bio::Pathway#index is used
|
|
380
|
+
to specify preferences of nodes in a graph. Affected methods
|
|
381
|
+
are: to_matrix, dump_matrix, dump_list, depth_first_search.
|
|
382
|
+
* Bug fix in the libpath magic in test/unit/bio/test_pathway.rb.
|
|
383
|
+
|
|
384
|
+
2008-12-09 Naohisa Goto <ng@bioruby.org>
|
|
385
|
+
|
|
386
|
+
* lib/bio/db/newick.rb, lib/bio/tree.rb
|
|
387
|
+
|
|
388
|
+
Ruby 1.9 support: suppressing "warning: shadowing outer local
|
|
389
|
+
variable".
|
|
390
|
+
(commit 6fe31f0a42a87631bdee3796cff65afb053b2add)
|
|
391
|
+
|
|
392
|
+
2008-12-05 Naohisa Goto <ng@bioruby.org>
|
|
393
|
+
|
|
394
|
+
* test/unit/bio/io/test_fastacmd.rb
|
|
395
|
+
|
|
396
|
+
Ruby 1.9 support: changed to use respond_to?, etc.
|
|
397
|
+
(commit 5d6c92c752c00f07ed856fd209c8078ef9fdf57a)
|
|
398
|
+
|
|
399
|
+
* Following the change of Module#methods in Ruby 1.9, changed
|
|
400
|
+
to use respond_to?().
|
|
401
|
+
* The test path '/tmp/test' is replaced with '/dev/null'
|
|
402
|
+
|
|
403
|
+
* lib/bio/db/gff.rb
|
|
404
|
+
|
|
405
|
+
Ruby 1.9 support: changes following the change of String#[]
|
|
406
|
+
(commit c25cc506bffcf1f2397ac2210153cfbfbbcb4942)
|
|
407
|
+
|
|
408
|
+
* lib/bio/reference.rb
|
|
409
|
+
|
|
410
|
+
Ruby 1.9 support: using enumerator instead of String#collect
|
|
411
|
+
(commit ea99242570fc8b2e2a869db84b7daaa7737f23e0)
|
|
412
|
+
|
|
413
|
+
* test/unit/bio/test_location.rb
|
|
414
|
+
|
|
415
|
+
Test bug fix: wrong number in libpath magic
|
|
416
|
+
(commit aa45101246bc42f78a21ee110bc58e59f532e24a)
|
|
417
|
+
|
|
418
|
+
* test/unit/bio/db/test_nexus.rb
|
|
419
|
+
|
|
420
|
+
Test bug fix: missing libpath magic
|
|
421
|
+
(commit d54eed426461f3a3148953fda1f7b428e74051c6)
|
|
422
|
+
|
|
423
|
+
Thanks to Anthony Underwood who reports the bug in his Github
|
|
424
|
+
repository.
|
|
425
|
+
|
|
426
|
+
* test/unit/bio/db/pdb/test_pdb.rb
|
|
427
|
+
|
|
428
|
+
Test bug fix: wrong number in libpath magic
|
|
429
|
+
(commit b53d703a8dd72608ab5ea03457c2828470069f2f)
|
|
430
|
+
|
|
431
|
+
2008-12-04 Naohisa Goto <ng@bioruby.org>
|
|
432
|
+
|
|
433
|
+
* test/unit/bio/db/embl/test_embl_to_bioseq.rb
|
|
434
|
+
|
|
435
|
+
Test bug fix: typing error (found by using Ruby 1.9)
|
|
436
|
+
(commit fa52f99406ddd42221be354346f67245b3572510)
|
|
437
|
+
|
|
438
|
+
* test/unit/bio/db/embl/test_common.rb
|
|
439
|
+
|
|
440
|
+
Ruby 1.9 support: following the change of Module#instance_methods
|
|
441
|
+
(commit d18fa7c1c3660cf04ec2a8a42d543a20a77cee2c)
|
|
442
|
+
|
|
443
|
+
In Ruby 1.9, Module#instance_methods returns Array containing
|
|
444
|
+
Symbol objects instead of String. To support both 1.8 and 1.9,
|
|
445
|
+
"to_s" is added to every affected test method.
|
|
446
|
+
|
|
447
|
+
* lib/bio/appl/tmhmm/report.rb
|
|
448
|
+
|
|
449
|
+
Ruby 1.9 support: using enumerator if the entry is a string
|
|
450
|
+
(commit 36968122b64b722e230e3e1b52d78221c0b60884)
|
|
451
|
+
|
|
452
|
+
* lib/bio/appl/pts1.rb
|
|
453
|
+
|
|
454
|
+
Ruby 1.9 support: String#each to each_line and Array#to_s to join('')
|
|
455
|
+
(commit c4c251d5e94167512a0b8a38073a09b72994c08f)
|
|
456
|
+
|
|
457
|
+
* test/unit/bio/appl/test_fasta.rb
|
|
458
|
+
|
|
459
|
+
Ruby 1.9 support: changed to use Array#join instead of Array#to_s
|
|
460
|
+
(commit bf8823014488166c6e1227dd26bdca344c9f07b7)
|
|
461
|
+
|
|
462
|
+
* lib/bio/appl/blast.rb
|
|
463
|
+
|
|
464
|
+
Ruby 1.9 support: String#each is changed to String#each_line
|
|
465
|
+
(commit 3e177b9aecf6b54a5112fd81fc02386d18fc14b9)
|
|
466
|
+
|
|
467
|
+
* lib/bio/appl/hmmer/report.rb
|
|
468
|
+
|
|
469
|
+
Ruby 1.9 support: String#each is changed to String#each_line
|
|
470
|
+
(commit 63bdb3a098bc447e7bd272b3be8f809b4b56d451)
|
|
471
|
+
|
|
472
|
+
* lib/bio/appl/genscan/report.rb
|
|
473
|
+
|
|
474
|
+
Ruby 1.9 support: String#each is changed to String#each_line
|
|
475
|
+
(commit 082250786756de2b4171b3a00e0c4faaa816fc8f)
|
|
476
|
+
|
|
477
|
+
* test/functional/bio/io/test_ensembl.rb
|
|
478
|
+
|
|
479
|
+
Using jul2008.archive.ensembl.org for workaround of test failure.
|
|
480
|
+
(commit 1d286f222cdc51cf1323d57c1c79e6943d574829)
|
|
481
|
+
|
|
482
|
+
Due to the renewal of Ensembl web site, lib/bio/io/ensembl.rb
|
|
483
|
+
does not work for the latest Ensembl. For a workaround of
|
|
484
|
+
the failure of tests in test/functional/bio/io/test_ensembl.rb,
|
|
485
|
+
tests for Ensembl#exportview are changed using Ensembl archive
|
|
486
|
+
(http://jul2008.archive.ensembl.org/).
|
|
487
|
+
|
|
488
|
+
2008-12-03 Naohisa Goto <ng@bioruby.org>
|
|
489
|
+
|
|
490
|
+
* sample/demo_sequence.rb
|
|
491
|
+
|
|
492
|
+
sample/demo_sequence.rb, example of sequence manipulation.
|
|
493
|
+
(commit b7f52b47dbcc7d32f4eb7377d2b1510eb1991fd5)
|
|
494
|
+
|
|
495
|
+
The content of this file is moved from previous version of
|
|
496
|
+
lib/bio/sequence.rb (inside the "if __FILE__ == $0").
|
|
497
|
+
|
|
498
|
+
2008-12-02 Naohisa Goto <ng@bioruby.org>
|
|
499
|
+
|
|
500
|
+
* lib/bio/appl/paml/baseml.rb, etc. (17 files)
|
|
501
|
+
|
|
502
|
+
Support for baseml and yn00 (still under construction), and
|
|
503
|
+
incompatible changes to Bio::PAML::Codeml.
|
|
504
|
+
(commit d2571013409661b4d7be8c5c9db14dbe9a9daaaf)
|
|
505
|
+
|
|
506
|
+
* Security fix: To prevent possible shell command injection,
|
|
507
|
+
changed to use Bio::Command.query_command instead of %x.
|
|
508
|
+
* Bug fix with incompatible changes: Using Tempfile.new.path
|
|
509
|
+
as default values are removed because this can cause
|
|
510
|
+
unexpected file loss during garbage collection.
|
|
511
|
+
* Change of method/file names: The term "config file" is changed
|
|
512
|
+
to "control file" because the term "config file" is never used
|
|
513
|
+
in PAML documents. The term "options" is changed to "parameters"
|
|
514
|
+
because the "options" have been used for command-line arguments
|
|
515
|
+
in other wrappers (e.g. Bio::Blast, Bio::ClustalW). The term
|
|
516
|
+
"parameters" is also used in BioPerl's
|
|
517
|
+
Bio::Tools::Run::Phylo::PAML.
|
|
518
|
+
* Bio::PAML::Codeml.create_config_file, create_control_file,
|
|
519
|
+
Bio::PAML::Codeml#options, and #options= are now deprecated.
|
|
520
|
+
They will be removed in the future.
|
|
521
|
+
* New class Bio::PAML::Common, basic wrapper common to PAML programs.
|
|
522
|
+
Bio::PAML::Codeml is changed to inherit the Common class.
|
|
523
|
+
* New classes Bio::PAML::Baseml and Bio::PAML::Yn00, wrappers for
|
|
524
|
+
baseml and yn00.
|
|
525
|
+
* New classes Bio::PAML::Common::Report, Bio::PAML::Baseml::Report
|
|
526
|
+
and Bio::PAML::Yn00::Report, but still under construction.
|
|
527
|
+
* New methods Bio::PAML::Codeml#query(alignment, tree), etc.
|
|
528
|
+
* test/data/paml/codeml/dummy_binary is removed because
|
|
529
|
+
the default of Bio::PAML::Codeml.new is changed to use
|
|
530
|
+
"codeml" command in PATH.
|
|
531
|
+
* test/data/paml/codeml/config.missing_tree.txt is removed
|
|
532
|
+
because treefile can be optional parameter depending on runmode.
|
|
533
|
+
test/data/paml/codeml/config.missing_align.txt is also removed
|
|
534
|
+
because test is changed to use normal control file parameters.
|
|
535
|
+
|
|
536
|
+
* lib/bio/command.rb, test/functional/bio/test_command.rb
|
|
537
|
+
|
|
538
|
+
Improvement of Bio::Command.query_command, call_command, etc.
|
|
539
|
+
(commit e68ee45589f8063e5a648ab235d6c8bbc2c6e5ff)
|
|
540
|
+
|
|
541
|
+
* Improvement of Bio::Command.query_command, call_command,
|
|
542
|
+
query_command_popen, query_command_fork, call_command_popen,
|
|
543
|
+
and call_command_fork: they can get an option :chdir => "path",
|
|
544
|
+
specifying working directory of the child process.
|
|
545
|
+
* New method Bio::Command.mktmpdir backported from Ruby 1.9.0.
|
|
546
|
+
* New method Bio::Command.remove_entry_secure that simply calls
|
|
547
|
+
FileUtils.remove_entry_secure or prints warning messages.
|
|
548
|
+
* Tests are added in test/functional/bio/test_command.rb.
|
|
549
|
+
* Ruby 1.9 followup: FuncTestCommandQuery#test_query_command_open3
|
|
550
|
+
failed in ruby 1.9 due to the change of Array#to_s.
|
|
551
|
+
|
|
552
|
+
2008-11-19 Naohisa Goto <ng@bioruby.org>
|
|
553
|
+
|
|
554
|
+
* test/data/paml/codeml/
|
|
555
|
+
|
|
556
|
+
Removed some files in test/data/paml/codeml/ because of potential
|
|
557
|
+
copyright problem, because they are completely identical with
|
|
558
|
+
those distributed in PAML 4.1.
|
|
559
|
+
(commit 086b83d3e54f69d2b9e71af3f9647518768353b0)
|
|
560
|
+
|
|
561
|
+
2008-10-21 Naohisa Goto <ng@bioruby.org>
|
|
562
|
+
|
|
563
|
+
* lib/bio/sequence/compat.rb
|
|
564
|
+
|
|
565
|
+
Bug fix: TypeError is raised in Bio::Sequence#to_s before
|
|
566
|
+
Sequence#seq is called.
|
|
567
|
+
(commit ea8e068a5b7f670ce62bc0d3d4b21639e3ca2714)
|
|
568
|
+
|
|
569
|
+
Thanks to Anthony Underwood who reported the bug and sent the patch.
|
|
570
|
+
|
|
571
|
+
2008-10-19 Naohisa Goto <ng@bioruby.org>
|
|
572
|
+
|
|
573
|
+
* setup.rb, README.rdoc
|
|
574
|
+
|
|
575
|
+
install.rb is replaced by new setup.rb.
|
|
576
|
+
(commit 9def7df5b81340c49534ff0bb932de62402a1c8d)
|
|
577
|
+
|
|
578
|
+
* install.rb is replaced by the latest version of setup.rb taken
|
|
579
|
+
from the original author's svn repository (svn r2637, newer than
|
|
580
|
+
version 3.4.1, latest release version.
|
|
581
|
+
$ svn co http://i.loveruby.net/svn/public/setup/trunk setup).
|
|
582
|
+
* README.rdoc is modified to follow the rename of install.rb to
|
|
583
|
+
setup.rb.
|
|
584
|
+
|
|
585
|
+
2008-10-18 Toshiaki Katayama <k@bioruby.org>
|
|
586
|
+
|
|
587
|
+
* lib/bio/io/ncbirest.rb
|
|
588
|
+
|
|
589
|
+
* New methods: Bio::NCBI::REST#einfo, #esearch_count, etc.
|
|
590
|
+
* New classes: Bio::NCBI::REST::ESearch, Bio::NCBI::REST::EFetch.
|
|
591
|
+
(commit 637f97deefd6cc113ef18fe18ab628eb619f3dc1)
|
|
592
|
+
(committer: Naohisa Goto)
|
|
593
|
+
|
|
594
|
+
2008-10-14 Naohisa Goto <ng@bioruby.org>
|
|
595
|
+
|
|
596
|
+
* lib/bio/sequence/common.rb, test/unit/bio/sequence/test_common.rb,
|
|
597
|
+
test/unit/bio/sequence/test_compat.rb,
|
|
598
|
+
test/unit/bio/sequence/test_na.rb
|
|
599
|
+
|
|
600
|
+
Bug fix: Bio::Sequence::Common#randomize severely biased.
|
|
601
|
+
(commit 02de70cbf036b41a50d770954f3b16ba2beca880)
|
|
602
|
+
|
|
603
|
+
* Bug fix: Bio::Sequence::Common#randomize was severely biased.
|
|
604
|
+
To fix the bug, it is changed to used Fisher-Yates shuffle,
|
|
605
|
+
as suggested by Anders Jacobsen.
|
|
606
|
+
([BioRuby] Biased Bio::Sequence randomize())
|
|
607
|
+
* The module method Bio::Sequence::Common.randomize is removed
|
|
608
|
+
because it is not used anymore.
|
|
609
|
+
* Unit tests for Bio::Sequence::Common#randomize are added.
|
|
610
|
+
* To avoid possible test class name conflicts, class/module
|
|
611
|
+
names are changed in test_na.rb, test_compat.rb, and
|
|
612
|
+
test_common.rb.
|
|
613
|
+
|
|
614
|
+
2008-10-14 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
|
|
615
|
+
|
|
616
|
+
* lib/bio/io/sql.rb
|
|
617
|
+
|
|
618
|
+
Changed the demonstration code in the "if __FILE__ == $0".
|
|
619
|
+
(commit 9942105920182c809564554bb0d1dba33fe4caab)
|
|
620
|
+
|
|
621
|
+
* lib/bio/db/biosql/sequence.rb
|
|
622
|
+
|
|
623
|
+
Fix: typing error
|
|
624
|
+
(commit 67fbbb93adaa8b4b91de3703a235bc75eaef842a)
|
|
625
|
+
|
|
626
|
+
2008-10-14 Naohisa Goto <ng@bioruby.org>
|
|
627
|
+
|
|
628
|
+
* lib/bio/db/biosql/sequence.rb, lib/bio/io/sql.rb
|
|
629
|
+
|
|
630
|
+
Merging patches by Raoul in commit
|
|
631
|
+
496561a70784d3a1a82bf3117b2d267c7625afac which are ignored
|
|
632
|
+
when rebasing, probably because of manually editing during merge.
|
|
633
|
+
(commit c699253d53510c0e76188a72004651a4635088b3)
|
|
634
|
+
|
|
635
|
+
2008-10-10 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
|
|
636
|
+
|
|
637
|
+
* lib/bio/db/biosql/sequence.rb
|
|
638
|
+
|
|
639
|
+
Fix: check on nil objects (to_biosql)
|
|
640
|
+
(commit f701e9a71f524ee4373c94ee1bd345e87f16f6ce)
|
|
641
|
+
|
|
642
|
+
BugFix: ex. /focus="true" in output was /focus="t",
|
|
643
|
+
qualifier.value.to_s fix the bug
|
|
644
|
+
(commit f6e1530f3372c87031b551e5c76e24f264891e64)
|
|
645
|
+
|
|
646
|
+
* lib/bio/io/biosql/seqfeature.rb
|
|
647
|
+
|
|
648
|
+
BugFix: seqfeature_qualifier_value returned ordered only by rank
|
|
649
|
+
(commit fb74009393eeca6743f78b7b45cb66858c41d733)
|
|
650
|
+
|
|
651
|
+
* lib/bio/io/biosql/bioentry.rb
|
|
652
|
+
|
|
653
|
+
BugFix: seqfeatures returned ordered by rank
|
|
654
|
+
(commit 25a249d87d23bd9cb4e671053019675836fcd38c)
|
|
655
|
+
|
|
656
|
+
* lib/bio/db/biosql/sequence.rb
|
|
657
|
+
|
|
658
|
+
Fixed to suppress warnings: Bio::Features is obsoleted.
|
|
659
|
+
(commit 198a1e893dd4515d61276c9cce8905f02130e721)
|
|
660
|
+
|
|
661
|
+
* lib/bio/db/biosql/biosql_to_biosequence.rb
|
|
662
|
+
|
|
663
|
+
Removed alias comment.
|
|
664
|
+
(commit c037ec565987634b354ff6d77dbbe7c9d83a9e7c)
|
|
665
|
+
|
|
666
|
+
* lib/bio/db/biosql/sequence.rb
|
|
667
|
+
|
|
668
|
+
Implemented Entry's comments and reference's comments.
|
|
669
|
+
Fixed species common name.
|
|
670
|
+
(commit bd3b24ea53ebd9b0ec9dd9f15c27091fe6143e28)
|
|
671
|
+
|
|
672
|
+
* lib/bio/io/biosql/bioentry.rb
|
|
673
|
+
|
|
674
|
+
Cleaned, deleted pk and seq reference
|
|
675
|
+
(commit 14bcf90334ec3c3f1c1784977b329ae641e9e106)
|
|
676
|
+
|
|
677
|
+
* lib/bio/io/biosql/comment.rb
|
|
678
|
+
|
|
679
|
+
cleaned codes
|
|
680
|
+
(commit 54976693350ab0512cecf946999c2868b9e88007)
|
|
681
|
+
|
|
682
|
+
* lib/bio/db/biosql/biosql_to_biosequence.rb
|
|
683
|
+
|
|
684
|
+
Added comments, comment adapter.
|
|
685
|
+
(commit 5394ecea34778c9f571eb35cfc16e3b1a6cb6d1b)
|
|
686
|
+
|
|
687
|
+
2008-10-09 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
|
|
688
|
+
|
|
689
|
+
* lib/bio/io/sql.rb
|
|
690
|
+
|
|
691
|
+
Changed the demonstration code in the "if __FILE__ == $0".
|
|
692
|
+
(commit efb61d7c21d229e882c6706838c284404343fa9c)
|
|
693
|
+
|
|
694
|
+
* lib/bio/db/biosql/sequence.rb
|
|
695
|
+
|
|
696
|
+
Added support for reference. ToDo: handling comments.
|
|
697
|
+
(commit 29211059ee04214d7879f900ec563c0708d8c9d6)
|
|
698
|
+
|
|
699
|
+
* lib/bio/io/biosql/bioentry_reference.rb
|
|
700
|
+
|
|
701
|
+
Fix: compisite primary keys :bioentry_id, :reference_id, :rank
|
|
702
|
+
(commit eba61ba670c591f58866b37ababc4acac0cc7883)
|
|
703
|
+
|
|
704
|
+
* lib/bio/io/biosql/dbxref.rb
|
|
705
|
+
|
|
706
|
+
removed explicit pk and seq
|
|
707
|
+
(commit e149f94484469fb3dfd881b45b14be7093b67e0d)
|
|
708
|
+
|
|
709
|
+
2008-10-09 Naohisa Goto <ng@bioruby.org>
|
|
710
|
+
|
|
711
|
+
* test/functional/bio/test_command.rb,
|
|
712
|
+
test/data/command/echoarg2.bat
|
|
713
|
+
|
|
714
|
+
Bug fix: tests in FuncTestCommandCall are failed on mswin32,
|
|
715
|
+
and URL changed.
|
|
716
|
+
(commit 921292f1188d85994742ce4aa156b39d6e720aad)
|
|
717
|
+
|
|
718
|
+
* Bug fix: tests in FuncTestCommandCall were failed on mswin32.
|
|
719
|
+
To fix the test bug, a batch file test/data/command/echoarg2.bat
|
|
720
|
+
is newly added. This file is only used on mswin32 or bccwin32.
|
|
721
|
+
* URL for test to fetch a web page is changed to
|
|
722
|
+
http://bioruby.open-bio.org/.
|
|
723
|
+
|
|
724
|
+
2008-10-07 Naohisa Goto <ng@bioruby.org>
|
|
725
|
+
|
|
726
|
+
* test/unit/bio/appl/paml/test_codeml.rb
|
|
727
|
+
|
|
728
|
+
Bug fix: error on mswin32 in
|
|
729
|
+
test_expected_options_set_in_config_file.
|
|
730
|
+
(commit 16b8f321c653502ef801d801383a019bc45f67de)
|
|
731
|
+
|
|
732
|
+
Bug fix: On mswin32, test_expected_options_set_in_config_file
|
|
733
|
+
in Bio::TestCodemlConfigGeneration failed with the error
|
|
734
|
+
"Errno::EACCESS: Permission denied" because it attempts to remove
|
|
735
|
+
the temporary file that is previously opened but not explicitly
|
|
736
|
+
closed, and, in Windows, the opend file is automatically locked
|
|
737
|
+
and protected from being removed.
|
|
738
|
+
|
|
739
|
+
* lib/bio/command.rb, test/functional/bio/test_command.rb,
|
|
740
|
+
test/unit/bio/test_command.rb
|
|
741
|
+
|
|
742
|
+
Bio::Command improved, and added functional tests.
|
|
743
|
+
(commit bb618cdfbfb56c40249aff81b6ef84742465851c)
|
|
744
|
+
|
|
745
|
+
* In Bio::Command.call_command_* and Bio::Command.query_command_*,
|
|
746
|
+
when giving command-line array with size 1, the command might
|
|
747
|
+
passed to shell. To prevent this, changed to call a new method
|
|
748
|
+
Bio::Command#safe_command_line_array internally.
|
|
749
|
+
* Added test/functional/bio/test_command.rb, contains unit tests
|
|
750
|
+
to call external commands and to access external web sites.
|
|
751
|
+
|
|
752
|
+
2008-10-06 Naohisa Goto <ng@bioruby.org>
|
|
753
|
+
|
|
754
|
+
* lib/bio/db/biosql/sequence.rb
|
|
755
|
+
|
|
756
|
+
Bio::Sequence::SQL::Sequence#seq is changed to return a
|
|
757
|
+
Bio::Sequence::Generic object, because of avoiding to create
|
|
758
|
+
nested Bio::Sequence object in #to_biosequence and because
|
|
759
|
+
Bio::FastaFormat#seq also returns a Bio::Sequence::Generic object.
|
|
760
|
+
(commit 8fb944c964ab5e1ca8905e6c4ce8e68479952935)
|
|
761
|
+
|
|
762
|
+
2008-10-03 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
|
|
763
|
+
|
|
764
|
+
* lib/bio/io/biosql/taxon.rb
|
|
765
|
+
|
|
766
|
+
Added has_one :taxon_genbank_common_name,
|
|
767
|
+
:class_name => "TaxonName",
|
|
768
|
+
:conditions => "name_class = 'genbank common name'"
|
|
769
|
+
(commit dc7a18b17cad8e603e0d3c20a5a80bc2a6f0899c)
|
|
770
|
+
|
|
771
|
+
* lib/bio/db/biosql/sequence.rb
|
|
772
|
+
|
|
773
|
+
Fix taxon identification by splitting scientific name and genbank
|
|
774
|
+
common name. Fix organism/source's name composed by scientific
|
|
775
|
+
name and genbank common name.
|
|
776
|
+
(commit 5d6abcc0dcd05d7083622360489a5f4c361e0cc7)
|
|
777
|
+
|
|
778
|
+
* lib/bio/io/sql.rb
|
|
779
|
+
|
|
780
|
+
Working on tests about format import/export.
|
|
781
|
+
(commit d28a343e4bab3cc0c04ac65dce677cfee0f81a46)
|
|
782
|
+
|
|
783
|
+
* lib/bio/io/biosql/term.rb
|
|
784
|
+
|
|
785
|
+
Fix foreign keys
|
|
786
|
+
(commit c19c8766c7c0bec7561727abf2ef1bdf47d4e032)
|
|
787
|
+
|
|
788
|
+
* lib/bio/io/biosql/seqfeature_qualifier_value.rb
|
|
789
|
+
|
|
790
|
+
added composite primary keys :seqfeature_id, :term_id, :rank
|
|
791
|
+
(commit cdd6a3bfc1ab748acb0c0d9161ebeb3dc7a76544)
|
|
792
|
+
|
|
793
|
+
* lib/bio/io/biosql/ontology.rb
|
|
794
|
+
|
|
795
|
+
class cleaned.
|
|
796
|
+
(commit 81eb2c246d01790db72f0b08929bec5d862c959e)
|
|
797
|
+
|
|
798
|
+
* lib/bio/io/biosql/biodatabase.rb
|
|
799
|
+
|
|
800
|
+
class cleaned.
|
|
801
|
+
(commit 4aede5c5fee92c2f8cdf151a3e038025b6c7fd74)
|
|
802
|
+
|
|
803
|
+
* lib/bio/db/biosql/sequence.rb
|
|
804
|
+
|
|
805
|
+
to_biosequence: removed not adapter comments.
|
|
806
|
+
(commit 591fda23464c7b7031db09a8ca85deca320a5c87)
|
|
807
|
+
|
|
808
|
+
Removed main garbage comments.
|
|
809
|
+
(commit c46d7a2b4e188a0592d5b49def17b9e6fd598268)
|
|
810
|
+
|
|
811
|
+
feature= Fix creation of Ontology and Term.
|
|
812
|
+
(commit 95fe6d1a65e94da502529e597b137d12c3fe2fc2)
|
|
813
|
+
|
|
814
|
+
* lib/bio/db/biosql/biosql_to_biosequence.rb
|
|
815
|
+
|
|
816
|
+
:seq cleaned.
|
|
817
|
+
(commit d6f719693286b74c1a0ea8a42c09a12f775b74dc)
|
|
818
|
+
|
|
819
|
+
2008-10-01 Naohisa Goto <ng@bioruby.org>
|
|
820
|
+
|
|
821
|
+
* test/functional/bio/io/test_ensembl.rb
|
|
822
|
+
|
|
823
|
+
Bug fix: 3 failures occurred in test_ensembl.rb because of recent
|
|
824
|
+
changes in Ensembl database (the gene ENSG00000206158 used as
|
|
825
|
+
an example in this file was removed from the Ensembl database).
|
|
826
|
+
To fix this, the example gene is changed to ENSG00000172146
|
|
827
|
+
(OR1A1, olfactory receptor 1A1).
|
|
828
|
+
(commit e20c86d2cd7d4fd1723762e8a5acc3bc311a5c1b)
|
|
829
|
+
|
|
830
|
+
* lib/bio/db/embl/sptr.rb, test/unit/bio/db/embl/test_sptr.rb
|
|
831
|
+
|
|
832
|
+
Ruby 1.9 support: in Bio::SPTR, avoid using String#each and
|
|
833
|
+
Array#to_s.
|
|
834
|
+
(commit 5ff56653cd7cc2520c2c04acbc9ce2bf2a0fae9a)
|
|
835
|
+
|
|
836
|
+
* In Bio::SPTR#gn_uniprot_parser, String#each (which is removed
|
|
837
|
+
in Ruby 1.9) is changed to each_line.
|
|
838
|
+
* In Bio::SPTR#cc and cc_* (private) methods, Array#to_s (whose
|
|
839
|
+
behavior is changed in Ruby 1.9) is changed to join('').
|
|
840
|
+
* Unit test for Bio::STPR#dr method is added and changed.
|
|
841
|
+
|
|
842
|
+
2008-09-30 Naohisa Goto <ng@bioruby.org>
|
|
843
|
+
|
|
844
|
+
* lib/bio/db/embl/sptr.rb, test/unit/bio/db/embl/test_sptr.rb
|
|
845
|
+
|
|
846
|
+
Bug fix in Bio::SPTR#dr: raised error when asked it to return
|
|
847
|
+
a DR key that didn't exist in the uniprot entry. Thanks to
|
|
848
|
+
Ben Woodcroft who reports the bug and send a patch.
|
|
849
|
+
([BioRuby] Bio::SPTR bug and fix).
|
|
850
|
+
(commit 3147683c0b41e3f9418e26b481bf8b3e9ce63b8c)
|
|
851
|
+
|
|
852
|
+
* lib/bio.rb
|
|
853
|
+
|
|
854
|
+
Added autoload of Bio::NCBI::REST, and BIORUBY_VERSION incremented.
|
|
855
|
+
(commit d6a37b0fcf1fb2f6e134dcdb8e29e79ec2a8fea7)
|
|
856
|
+
|
|
857
|
+
* Added autoload of Bio::NCBI::REST.
|
|
858
|
+
* Added comments for autoloading Bio::Sequence and Bio::Blast.
|
|
859
|
+
* BIORUBY_VERSION is temporary incremented to 1.2.2, though
|
|
860
|
+
the version number will not be used in upcoming release.
|
|
861
|
+
Upcoming release will probably be using larger version number.
|
|
862
|
+
|
|
863
|
+
2008-09-25 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
|
|
864
|
+
|
|
865
|
+
* lib/bio/db/biosql/sequence.rb
|
|
866
|
+
|
|
867
|
+
Updated with adapter. Problem saving big sequences.
|
|
868
|
+
(commit 82d87fbaf70f9a46c40dded0b2db510a40964e62)
|
|
869
|
+
|
|
870
|
+
* lib/bio/io/biosql/* (25 files)
|
|
871
|
+
|
|
872
|
+
AR: explicit class and foreign_key reference.
|
|
873
|
+
(commit 70327998186c2f943addb5d46b4bda8007ed5444)
|
|
874
|
+
|
|
875
|
+
2008-09-24 Naohisa Goto <ng@bioruby.org>
|
|
876
|
+
|
|
877
|
+
* lib/bio/db/gff.rb, test/unit/bio/db/test_gff.rb
|
|
878
|
+
|
|
879
|
+
Bug fix and incompatible changes in GFF2 and GFF3 attributes.
|
|
880
|
+
(commit 7b174bb842d9dcf9fd7f4b59e8f3b13ebc0ff3d4)
|
|
881
|
+
|
|
882
|
+
* Bug fix: GFF2 attributes parser misunderstand semicolons.
|
|
883
|
+
* Incompatible change in Bio::GFF::GFF2::Record#attributes
|
|
884
|
+
and Bio::GFF::GFF3::Record#attributes. Now, instead of Hash,
|
|
885
|
+
the method is changed to return a nested Array, containing
|
|
886
|
+
[ tag, value ] pairs, because of supporting multiple tags
|
|
887
|
+
in same name. If you want to get a Hash, use
|
|
888
|
+
Record#attributes_to_hash method, though some tag-value pairs
|
|
889
|
+
in same tag name may not be included.
|
|
890
|
+
* Bio::GFF::Record#attribute still returns a Hash for compatibility.
|
|
891
|
+
* New methods for getting, setting and manipulating attributes:
|
|
892
|
+
Bio::GFF::GFF2::Record#attribute, #get_attribute, #get_attributes,
|
|
893
|
+
#set_attribute, #replace_attributes, #add_attribute,
|
|
894
|
+
#delete_attribute, #delete_attributes, and #sort_attributes_by_tag!
|
|
895
|
+
(These are also added to Bio::GFF::GFF3::Record).
|
|
896
|
+
It is recommended to use these methods instead of directly
|
|
897
|
+
manipulating the array returned by Record#attributes.
|
|
898
|
+
* Incompatible change in GFF2 attributes parser: the priority
|
|
899
|
+
of '"' (double quote) is greater than ';' (semicolon).
|
|
900
|
+
Special treatment of '\;' in GFF2 is now removed.
|
|
901
|
+
Unlike GFF2, in Bio::GFF, the '\;' can still be used for
|
|
902
|
+
backward compatibility.
|
|
903
|
+
* Incompatible changes in attribute values in Bio::GFF::GFF2.
|
|
904
|
+
Now, GFF2 attribute values are automatically unescaped.
|
|
905
|
+
In addition, if a value of an attribute is consisted of two
|
|
906
|
+
or more tokens delimited by spaces, an object of the new class
|
|
907
|
+
Bio::GFF::GFF2::Record::Value is returned instead of String.
|
|
908
|
+
The new class Bio::GFF::GFF2::Record::Value aims to store
|
|
909
|
+
a parsed value of an attribute. If you really want to get
|
|
910
|
+
unparsed string, Value#to_s can be used.
|
|
911
|
+
* Incompatible changes about data type in GFF2 columns:
|
|
912
|
+
Bio::GFF::GFF2::Record#start, #end, and #frame return
|
|
913
|
+
Integer or nil, and #score returns Float or nil.
|
|
914
|
+
* Incompatible changes about the metadata in GFF2.
|
|
915
|
+
The "##gff-version" line is parsed and the version string
|
|
916
|
+
is stored to Bio::GFF::GFF2#gff_version. Other metadata
|
|
917
|
+
lines are stored in an array obtained with a new method
|
|
918
|
+
Bio::GFF::GFF2#metadata. Each metadata is parsed to
|
|
919
|
+
Bio::GFF::GFF2::MetaData object.
|
|
920
|
+
* Bio::GFF::Record#comments is renamed to #comment, and
|
|
921
|
+
#comments= is renamed to #comment=, because they only allow
|
|
922
|
+
a single String (or nil) and the plural form "comments"
|
|
923
|
+
may be confusable. The "comments" and "comments=" methods
|
|
924
|
+
can still be used, but warning messages will be shown
|
|
925
|
+
when using in GFF2::Record and GFF3::Record objects.
|
|
926
|
+
* New methods Bio::GFF::GFF2#to_s, Bio::GFF::GFF2::Record#to_s.
|
|
927
|
+
* New methods Bio::GFF::GFF2::Record#comment_only?
|
|
928
|
+
(also added in Bio::GFF::GFF3::Record).
|
|
929
|
+
* Unit tests are added and modified.
|
|
930
|
+
|
|
931
|
+
2008-09-18 Naohisa Goto <ng@bioruby.org>
|
|
932
|
+
|
|
933
|
+
* lib/bio/appl/blast/rpsblast.rb, lib/bio/appl/blast/format0.rb,
|
|
934
|
+
lib/bio/io/flatfile/autodetection.rb,
|
|
935
|
+
test/unit/bio/appl/blast/test_rpsblast.rb,
|
|
936
|
+
test/data/rpsblast/misc.rpsblast
|
|
937
|
+
|
|
938
|
+
Improved support for RPS-BLAST results from multi-fasta query
|
|
939
|
+
sequences.
|
|
940
|
+
(commit 11f1787cf93c046c06d4a33a554210d56866274e)
|
|
941
|
+
|
|
942
|
+
* By using Bio::FlatFile (e.g. Bio::FlatFile.open), a rpsblast
|
|
943
|
+
result generated from multiple query sequences is automatically
|
|
944
|
+
split into multiple Bio::Blast::RPSBlast::Report objects
|
|
945
|
+
corresponding to query sequences. For the purpose, new
|
|
946
|
+
flatfile splitter class Bio::Blast::RPSBlast::RPSBlastSplitter
|
|
947
|
+
is added.
|
|
948
|
+
* File format autodetection for RPS-BLAST default report is added.
|
|
949
|
+
* Bug fix: Bio::Blast::RPSBlast::Report#program returns incorrect
|
|
950
|
+
value. To fix the bug, regular expression in
|
|
951
|
+
Bio::Blast::Default::Report#format0_parse_header (private method)
|
|
952
|
+
is changed.
|
|
953
|
+
* Unit tests are added for Bio::Blast::RPSBlast.
|
|
954
|
+
|
|
955
|
+
2008-09-17 Naohisa Goto <ng@bioruby.org>
|
|
956
|
+
|
|
957
|
+
* lib/bio/io/flatfile/buffer.rb,
|
|
958
|
+
test/unit/bio/io/flatfile/test_buffer.rb
|
|
959
|
+
|
|
960
|
+
Bug fix in Bio::FlatFile::BufferedInputStream#gets.
|
|
961
|
+
(commit e15012e2a94d05308d139cb010749a1829d5c57f)
|
|
962
|
+
|
|
963
|
+
* Bug fix: Bio::FlatFile::BufferedInputStream#gets('') might not
|
|
964
|
+
work correctly. Now, BufferedInputStream#gets is refactored.
|
|
965
|
+
Note that when rs = '' (paragraph mode), the behavior may still
|
|
966
|
+
differ from that of IO#gets('').
|
|
967
|
+
* Test methods are added to test_buffer.rb.
|
|
968
|
+
|
|
969
|
+
2008-09-16 Naohisa Goto <ng@bioruby.org>
|
|
970
|
+
|
|
971
|
+
* lib/bio/appl/blast/wublast.rb
|
|
972
|
+
|
|
973
|
+
Bug fix: parse error or infinite loop for WU-BLAST reports.
|
|
974
|
+
(commit 07d1554c945400f9202d7b856055743e11860752)
|
|
975
|
+
|
|
976
|
+
* Bug fix in Bio::Blast::WU::Report: fixed parse errors
|
|
977
|
+
(errors, infinite loop, and wrong results could be generated)
|
|
978
|
+
when parsing WU-BLAST reports generated by recent version of
|
|
979
|
+
WU-BLAST.
|
|
980
|
+
* New methods Bio::Blast::WU::Report#query_record_number,
|
|
981
|
+
#exit_code, and #fatal_errors.
|
|
982
|
+
|
|
983
|
+
2008-09-03 Naohisa Goto <ng@bioruby.org>
|
|
984
|
+
|
|
985
|
+
* lib/bio/appl/blat/report.rb
|
|
986
|
+
|
|
987
|
+
Bug fix: headers were parsed incorrectly with warning.
|
|
988
|
+
(commit 3ff940988b76bdff75679cdf0af4c836f76fa3a1)
|
|
989
|
+
|
|
990
|
+
* lib/bio/io/flatfile/splitter.rb
|
|
991
|
+
|
|
992
|
+
To suppress warning messages "warning: private attribute?",
|
|
993
|
+
private attributes are explicitly specified by using "private".
|
|
994
|
+
(commit 1440b766202a2b66ac7386b9b46928834a9c9873)
|
|
995
|
+
|
|
996
|
+
2008-09-01 Michael Barton <mail@michaelbarton.me.uk>
|
|
997
|
+
|
|
998
|
+
* lib/bio/appl/paml/codeml/report.rb
|
|
999
|
+
|
|
1000
|
+
Added code to pull estimated tree from codeml report.
|
|
1001
|
+
(commit 64cc5ef6f2d949cc9193b08dfc3fde6b221950d7)
|
|
1002
|
+
|
|
1003
|
+
2008-09-01 Naohisa Goto <ng@bioruby.org>
|
|
1004
|
+
|
|
1005
|
+
* test/unit/bio/db/embl/test_embl_rel89.rb
|
|
1006
|
+
|
|
1007
|
+
Changed test class name because of name conflict of Bio::TestEMBL.
|
|
1008
|
+
(commit 536cdf903a3c3908c117efd554d33117d91452f4)
|
|
1009
|
+
|
|
1010
|
+
* test/unit/bio/util/restriction_enzyme/
|
|
1011
|
+
|
|
1012
|
+
To prevent possible test class name conflicts about restriction
|
|
1013
|
+
enzyme.
|
|
1014
|
+
(commit 0fe1e7d3ed02185632f4a34d8efe1f21f755b289)
|
|
1015
|
+
|
|
1016
|
+
* Tests about restriction enzyme are moved under a new module
|
|
1017
|
+
Bio::TestRestrictionEnzyme to prevent possible name conflict.
|
|
1018
|
+
* Conflicted test class names are changed.
|
|
1019
|
+
|
|
1020
|
+
2008-08-31 Naohisa Goto <ng@bioruby.org>
|
|
1021
|
+
|
|
1022
|
+
* test/unit/bio/db/test_prosite.rb
|
|
1023
|
+
|
|
1024
|
+
Fixed failed test due to the change of hash algorithm in Ruby 1.8.7.
|
|
1025
|
+
(Probably also affected in Ruby 1.9.0).
|
|
1026
|
+
(commit e86f8d757c45805389e154f06ccde5a3d9e8a557)
|
|
1027
|
+
|
|
1028
|
+
2008-08-29 Naohisa Goto <ng@bioruby.org>
|
|
1029
|
+
|
|
1030
|
+
* lib/bio/appl/blast.rb
|
|
1031
|
+
|
|
1032
|
+
Bio::Blast.reports is changed to support new BLAST XML format.
|
|
1033
|
+
(commit 02cc0695b85f18e8254aefed78a912812fc896d6)
|
|
1034
|
+
|
|
1035
|
+
* Bio::Blast.reports is changed to support new BLAST XML format.
|
|
1036
|
+
* Removed unused require.
|
|
1037
|
+
|
|
1038
|
+
2008-08-28 Naohisa Goto <ng@bioruby.org>
|
|
1039
|
+
|
|
1040
|
+
* lib/bio/appl/blast/report.rb, lib/bio/appl/blast/rexml.rb,
|
|
1041
|
+
lib/bio/appl/blast/xmlparser.rb,
|
|
1042
|
+
test/unit/bio/appl/blast/test_report.rb
|
|
1043
|
+
|
|
1044
|
+
Support for BLAST XML format with multiple queries after blastall
|
|
1045
|
+
2.2.14.
|
|
1046
|
+
(commit de7897b5690279aae14d9bded5e682458bc61f9c)
|
|
1047
|
+
|
|
1048
|
+
* BLAST XML format with multiple query sequences generated by
|
|
1049
|
+
blastall 2.2.14 or later is now supported.
|
|
1050
|
+
* New methods Bio::Blast::Report#reports, stores Bio::Blast::Report
|
|
1051
|
+
objects corresponding to the multiple query sequences.
|
|
1052
|
+
* New methods Bio::Blast::Report::Iteration#query_id, query_def,
|
|
1053
|
+
and query_len, which are available only for the new format.
|
|
1054
|
+
* New class Bio::Blast::Report::BlastXmlSplitter, flatfile splitter
|
|
1055
|
+
for Bio::FlatFile system.
|
|
1056
|
+
* Bug fix: Bio::Blast::Report#expect returned incorrect value.
|
|
1057
|
+
* Fixed typo and added tests in
|
|
1058
|
+
test/unit/bio/appl/blast/test_report.rb.
|
|
1059
|
+
* Some RDoc documents are added/modified.
|
|
1060
|
+
|
|
1061
|
+
2008-08-19 Michael Barton <mail@michaelbarton.me.uk>
|
|
1062
|
+
|
|
1063
|
+
* lib/bio/appl/paml/codeml/rates.rb
|
|
1064
|
+
|
|
1065
|
+
Updated regex for rates parser to include columns that have a '*'
|
|
1066
|
+
character.
|
|
1067
|
+
|
|
1068
|
+
* test/unit/bio/appl/paml/codeml/test_rates.rb
|
|
1069
|
+
|
|
1070
|
+
Updated testing for new rates file with * characters.
|
|
1071
|
+
|
|
1072
|
+
* test/data/paml/codeml/rates
|
|
1073
|
+
|
|
1074
|
+
Added rates file that includes positions with * characters.
|
|
1075
|
+
|
|
1076
|
+
2008-08-18 Naohisa Goto <ng@bioruby.org>
|
|
1077
|
+
|
|
1078
|
+
* test/unit/bio/io/test_ddbjxml.rb
|
|
1079
|
+
|
|
1080
|
+
Changed a failed test, and added a test for
|
|
1081
|
+
Bio::DDBJ::XML::RequestManager.
|
|
1082
|
+
|
|
1083
|
+
2008-08-16 Michael Barton <mail@michaelbarton.me.uk>
|
|
1084
|
+
|
|
1085
|
+
* lib/bio/appl/paml/, test/unit/bio/appl/paml/, test/data/paml/
|
|
1086
|
+
|
|
1087
|
+
Wrapper and parser for PAML Codeml program is added
|
|
1088
|
+
(merged from git://github.com/michaelbarton/bioruby).
|
|
1089
|
+
After merging, some changes were made by Naohisa Goto.
|
|
1090
|
+
See git log for details.
|
|
1091
|
+
|
|
1092
|
+
2008-08-15 Naohisa Goto <ng@bioruby.org>
|
|
1093
|
+
|
|
1094
|
+
* lib/bio/appl/blast.rb, lib/bio/appl/blast/genomenet.rb
|
|
1095
|
+
|
|
1096
|
+
"-m 0" (BLAST's default) format support is improved, and fixed
|
|
1097
|
+
wrong example in the RDoc of Bio::Blast#query.
|
|
1098
|
+
|
|
1099
|
+
* Added support for "-m 0" (BLAST's default) format to the Bio::Blast
|
|
1100
|
+
factory. For the purpose, Bio::Blast#parse_result (private method)
|
|
1101
|
+
is changed.
|
|
1102
|
+
* Added support for "-m 0" (default) format to the GenomeNet BLAST
|
|
1103
|
+
factory (in Bio::Blast::Remote::GenomeNet).
|
|
1104
|
+
* Bug fix: wrong example in the RDoc in Bio::Blast#query is changed.
|
|
1105
|
+
* Bio::Blast#set_option (private method) is changed to determine
|
|
1106
|
+
format correctly.
|
|
1107
|
+
|
|
1108
|
+
* lib/bio/appl/blast/ddbj.rb, lib/bio/io/ddbjxml.rb
|
|
1109
|
+
|
|
1110
|
+
Changed always using REST version of RequestManager, and changed
|
|
1111
|
+
to raise error when busy.
|
|
1112
|
+
|
|
1113
|
+
* In Bio::Blast::Remote::DDBJ, changed always to use REST version
|
|
1114
|
+
for RequestManager, because of suppressing warning messages.
|
|
1115
|
+
* In Bio::DDBJ::XML::RequestManager, module REST_RequestManager is
|
|
1116
|
+
changed to class REST.
|
|
1117
|
+
* In Bio::Blast::Remote::DDBJ#exec_ddbj, changed to raise
|
|
1118
|
+
RuntimeError when "The search and analysis service by WWW is very
|
|
1119
|
+
busy now" message is returned from the server (which implies
|
|
1120
|
+
invalid options or queries may be given).
|
|
1121
|
+
|
|
1122
|
+
2008-08-14 Naohisa Goto <ng@bioruby.org>
|
|
1123
|
+
|
|
1124
|
+
* lib/bio/appl/blast.rb, lib/bio/appl/blast/genomenet.rb,
|
|
1125
|
+
lib/bio/appl/blast/remote.rb
|
|
1126
|
+
|
|
1127
|
+
Bio::Blast#exec_genomenet is moved to genomenet.rb, with bug fix.
|
|
1128
|
+
|
|
1129
|
+
* Bio::Blast#exec_genomenet is moved to
|
|
1130
|
+
lib/bio/appl/blast/genomenet.rb.
|
|
1131
|
+
* Incompatible change: Bio::Blast#exec_* is changed to return
|
|
1132
|
+
String. Parsing the string is now processed in query method.
|
|
1133
|
+
* New module Bio::Blast::Remote, to store remote BLAST factories.
|
|
1134
|
+
* New module Bio::Blast::Remote::GenomeNet (and Genomenet for
|
|
1135
|
+
lazy including), to store exec_genomenet and other methods.
|
|
1136
|
+
In the future, it might be a standalone class (or something else).
|
|
1137
|
+
* New module methods Bio::Blast::Remote::GenomeNet.databases,
|
|
1138
|
+
nucleotide_databases, protein_databases, and database_description,
|
|
1139
|
+
to provide information of available databases.
|
|
1140
|
+
* Bug fix: remote BLAST on GenomeNet with long query sequences
|
|
1141
|
+
fails because of the change of the behavior of the remote site.
|
|
1142
|
+
* Incompatible change: Bio::Blast#options= can change program,
|
|
1143
|
+
db, format, matrix, and filter instance variables.
|
|
1144
|
+
* Bio::Blast#format= is added.
|
|
1145
|
+
* Bio::Blast.local changed to accept 4th argument: full path to
|
|
1146
|
+
the blastall command.
|
|
1147
|
+
|
|
1148
|
+
* lib/bio/appl/blast/ddbj.rb, lib/bio/io/ddbjxml.rb,
|
|
1149
|
+
lib/bio/appl/blast/genomenet.rb, lib/bio/appl/blast/remote.rb,
|
|
1150
|
+
lib/bio/appl/blast.rb
|
|
1151
|
+
|
|
1152
|
+
New module Bio::Blast::Remote::DDBJ, remote BLAST on DDBJ.
|
|
1153
|
+
|
|
1154
|
+
* New module Bio::Blast::Remote::DDBJ, remote BLAST routine using
|
|
1155
|
+
DDBJ Web API for Biology (WABI). Now, Bio::Blast.new(program,
|
|
1156
|
+
db, options, 'ddbj') works.
|
|
1157
|
+
* New class Bio::DDBJ::XML::RequestManager. In this class,
|
|
1158
|
+
workaround for Ruby 1.8.5's bundled SOAP4R is made.
|
|
1159
|
+
* Some common codes are moved from
|
|
1160
|
+
Bio::Blast::Remote::GenomeNet::Information to
|
|
1161
|
+
Bio::Blast::Remote::Information.
|
|
1162
|
+
|
|
1163
|
+
* lib/bio/io/ddbjxml.rb
|
|
1164
|
+
|
|
1165
|
+
Changed to use DDBJ REST interface for a workaround instead of
|
|
1166
|
+
editing WSDL. (commit a64c8da5df5076c5f55b54b7f134d22a2e8d281c)
|
|
1167
|
+
|
|
1168
|
+
2008-08-09 Naohisa Goto <ng@bioruby.org>
|
|
1169
|
+
|
|
1170
|
+
* lib/bio/appl/blast.rb
|
|
1171
|
+
|
|
1172
|
+
* Bug fix: Bio::Blast raises TypeError without "-m" option,
|
|
1173
|
+
reported by Natapol Pornputapong.
|
|
1174
|
+
* New class Bio::Blast::NCBIOptions to treat command-line options
|
|
1175
|
+
for blastall (and for other NCBI tools, e.g. formatdb).
|
|
1176
|
+
* Changed not to overwrite @filter, @matrix or @format unless
|
|
1177
|
+
'-F', '-M', or '-m' option is given, respectively.
|
|
1178
|
+
|
|
1
1179
|
2008-07-30 BioHackathon2008 participants from BioRuby project
|
|
2
1180
|
|
|
3
1181
|
* Branch 'biohackathon2008' is merged.
|