bio 1.5.0 → 1.5.1
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.
- checksums.yaml +4 -4
- data/ChangeLog +385 -305
- data/RELEASE_NOTES.rdoc +28 -2
- data/bioruby.gemspec +1 -1
- data/lib/bio/command.rb +40 -2
- data/lib/bio/io/ncbirest.rb +26 -24
- data/lib/bio/version.rb +2 -2
- data/test/network/bio/test_command.rb +17 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80755db93233bba90ac5bf3da9de5605cefc795f
|
4
|
+
data.tar.gz: 5f7e09d705f5b67e377821681c4b7518814c6b32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f122387efc4ede94b1130e62fbab6986e6c96c408214da22d93baa4dd818628947896a788dd1a90601ed7c7702079cd9f02b4a72a965e215a67a75d4fa68e9d8
|
7
|
+
data.tar.gz: df2fd7b45726998d69d75325dc01685d45715d28dd754c7b8c2c985c4c164ea8d913fb994dc3f68cc627e9f120e2a570b1a4759a0e5cadf60096787f74d3ffb3
|
data/ChangeLog
CHANGED
@@ -1,10 +1,90 @@
|
|
1
|
+
commit 917fe0d0e9910267cd54bf48c2caabe89875a299
|
2
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
3
|
+
Date: Wed Sep 7 22:00:56 2016 +0900
|
4
|
+
|
5
|
+
regenerate bioruby.gemspec with rake regemspec
|
6
|
+
|
7
|
+
bioruby.gemspec | 2 +-
|
8
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
9
|
+
|
10
|
+
commit 1cfa823572742ea46f14420481c10f05fdbce862
|
11
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
12
|
+
Date: Wed Sep 7 21:51:28 2016 +0900
|
13
|
+
|
14
|
+
Bio::BIORUBY_EXTRA_VERSION set to nil (Release version)
|
15
|
+
|
16
|
+
lib/bio/version.rb | 2 +-
|
17
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
18
|
+
|
19
|
+
commit 8c27599ef5b8ee33cd074feadd089de01a8fa8e6
|
20
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
21
|
+
Date: Wed Sep 7 21:49:20 2016 +0900
|
22
|
+
|
23
|
+
Added release notes for 1.5.1 release
|
24
|
+
|
25
|
+
RELEASE_NOTES.rdoc | 26 ++++++++++++++++++++++++++
|
26
|
+
1 file changed, 26 insertions(+)
|
27
|
+
|
28
|
+
commit 47ada241ad6f3632dbbd77542befb82500b7195e
|
29
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
30
|
+
Date: Sat Aug 13 08:22:22 2016 +0900
|
31
|
+
|
32
|
+
Update URLs and use https for NCBI REST web services
|
33
|
+
|
34
|
+
lib/bio/io/ncbirest.rb | 50 ++++++++++++++++++++++++++------------------------
|
35
|
+
1 file changed, 26 insertions(+), 24 deletions(-)
|
36
|
+
|
37
|
+
commit 018c2aff1c7813e7b07362ecc8a25db334c0ae95
|
38
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
39
|
+
Date: Sat Aug 13 08:12:08 2016 +0900
|
40
|
+
|
41
|
+
New method Bio::Command#start_http_uri(uri) with tests
|
42
|
+
|
43
|
+
* lib/bio/command.rb: New method Bio::Command#start_http_uri(uri)
|
44
|
+
that supports HTTPS. Note that this method is intended to be
|
45
|
+
called only from BioRuby internals.
|
46
|
+
* lib/bio/command.rb: Bio::Command#post and #post_form are changed
|
47
|
+
to use the start_http_uri().
|
48
|
+
* test/network/bio/test_command.rb: tests for start_http_uri().
|
49
|
+
|
50
|
+
lib/bio/command.rb | 42 ++++++++++++++++++++++++++++++++++++++--
|
51
|
+
test/network/bio/test_command.rb | 17 ++++++++++++++++
|
52
|
+
2 files changed, 57 insertions(+), 2 deletions(-)
|
53
|
+
|
54
|
+
commit 7a5d897ebc45d9ec5357918a42eb2980decf01e4
|
55
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
56
|
+
Date: Thu Jul 2 21:52:17 2015 +0900
|
57
|
+
|
58
|
+
version changed to 1.5.1-dev (pre-release version of 1.5.1)
|
59
|
+
|
60
|
+
lib/bio/version.rb | 4 ++--
|
61
|
+
1 file changed, 2 insertions(+), 2 deletions(-)
|
62
|
+
|
63
|
+
commit 8fc4d6c64f6958a352c36b171b00d1f1ff2a2354
|
64
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
65
|
+
Date: Thu Jul 2 21:47:28 2015 +0900
|
66
|
+
|
67
|
+
fix English syntax and unexpected word insertion
|
68
|
+
|
69
|
+
RELEASE_NOTES.rdoc | 4 ++--
|
70
|
+
1 file changed, 2 insertions(+), 2 deletions(-)
|
71
|
+
|
72
|
+
commit 1d165c5def88fdeb8f3beeba1f9e6ab0ce71c2a1
|
73
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
74
|
+
Date: Wed Jul 1 17:28:17 2015 +0900
|
75
|
+
|
76
|
+
BioRuby 1.5.0 is released
|
77
|
+
|
78
|
+
ChangeLog | 9 +++++++++
|
79
|
+
1 file changed, 9 insertions(+)
|
80
|
+
|
1
81
|
commit 01ac93ca3b341716c85c571f1194834db0a68e52
|
2
82
|
Author: Naohisa Goto <ng@bioruby.org>
|
3
83
|
Date: Wed Jul 1 02:21:26 2015 +0900
|
4
84
|
|
5
85
|
update ChangeLog by rake rechangelog
|
6
86
|
|
7
|
-
ChangeLog |
|
87
|
+
ChangeLog | 28 ++++++++++++++++++++++++++++
|
8
88
|
1 file changed, 28 insertions(+)
|
9
89
|
|
10
90
|
commit cac63ff501df6a71afead77175db9fb491c2985b
|
@@ -13,7 +93,7 @@ Date: Wed Jul 1 01:31:21 2015 +0900
|
|
13
93
|
|
14
94
|
.travis.yml: use Ruby 2.1.6 for tar and gem integration tests
|
15
95
|
|
16
|
-
.travis.yml |
|
96
|
+
.travis.yml | 8 ++++----
|
17
97
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
18
98
|
|
19
99
|
commit 5318c99249f34dacc788b82c658ea0e256770db0
|
@@ -22,8 +102,8 @@ Date: Wed Jul 1 00:43:39 2015 +0900
|
|
22
102
|
|
23
103
|
known issues added about new BLAST XML format and BLAST+ text format
|
24
104
|
|
25
|
-
KNOWN_ISSUES.rdoc |
|
26
|
-
RELEASE_NOTES.rdoc |
|
105
|
+
KNOWN_ISSUES.rdoc | 11 +++++++++++
|
106
|
+
RELEASE_NOTES.rdoc | 11 +++++++++++
|
27
107
|
2 files changed, 22 insertions(+)
|
28
108
|
|
29
109
|
commit b61d8df0300ef366539e1154c9a2dac2f1f4ff18
|
@@ -32,7 +112,7 @@ Date: Tue Jun 30 23:57:01 2015 +0900
|
|
32
112
|
|
33
113
|
update ChangeLog with rake rechangelog
|
34
114
|
|
35
|
-
ChangeLog |
|
115
|
+
ChangeLog | 47 +++++++++++++++++++++++++++++++++++++++++++++++
|
36
116
|
1 file changed, 47 insertions(+)
|
37
117
|
|
38
118
|
commit 75cf6c31c57239b2e39a171e536ad5dddcaec94a
|
@@ -41,7 +121,7 @@ Date: Tue Jun 30 23:56:08 2015 +0900
|
|
41
121
|
|
42
122
|
regenerate bioruby.gemspec with rake regemspec
|
43
123
|
|
44
|
-
bioruby.gemspec |
|
124
|
+
bioruby.gemspec | 1 +
|
45
125
|
1 file changed, 1 insertion(+)
|
46
126
|
|
47
127
|
commit 608850beb33f3f7333f05307202b766adb350eb9
|
@@ -50,7 +130,7 @@ Date: Tue Jun 30 23:54:59 2015 +0900
|
|
50
130
|
|
51
131
|
description about updating of Ruby's License
|
52
132
|
|
53
|
-
RELEASE_NOTES.rdoc |
|
133
|
+
RELEASE_NOTES.rdoc | 9 +++++++++
|
54
134
|
1 file changed, 9 insertions(+)
|
55
135
|
|
56
136
|
commit f54bcfc20d20935db4e342e5988c0b7f59c131b3
|
@@ -59,7 +139,7 @@ Date: Tue Jun 30 23:16:51 2015 +0900
|
|
59
139
|
|
60
140
|
BSDL is referred in COPYING and COPYING.ja
|
61
141
|
|
62
|
-
BSDL |
|
142
|
+
BSDL | 22 ++++++++++++++++++++++
|
63
143
|
1 file changed, 22 insertions(+)
|
64
144
|
create mode 100644 BSDL
|
65
145
|
|
@@ -69,8 +149,8 @@ Date: Tue Jun 30 23:14:42 2015 +0900
|
|
69
149
|
|
70
150
|
changes of Ruby's License is reflected.
|
71
151
|
|
72
|
-
COPYING |
|
73
|
-
COPYING.ja |
|
152
|
+
COPYING | 4 ++--
|
153
|
+
COPYING.ja | 72 +++++++++++++++++++++++++++++++-------------------------------
|
74
154
|
2 files changed, 38 insertions(+), 38 deletions(-)
|
75
155
|
|
76
156
|
commit 2d9de9a0e2abe7fa9f193e54af0cbfc24bf2c37b
|
@@ -88,7 +168,7 @@ Date: Tue Jun 30 22:49:55 2015 +0900
|
|
88
168
|
|
89
169
|
KNOWN_ISSUES.rdoc: change ruby versions and add descriptions
|
90
170
|
|
91
|
-
KNOWN_ISSUES.rdoc |
|
171
|
+
KNOWN_ISSUES.rdoc | 14 +++++++++-----
|
92
172
|
1 file changed, 9 insertions(+), 5 deletions(-)
|
93
173
|
|
94
174
|
commit 1054106f93b973b5a92f993c5b83b1444f96fffe
|
@@ -97,8 +177,8 @@ Date: Tue Jun 30 22:48:51 2015 +0900
|
|
97
177
|
|
98
178
|
prepare to release BioRuby 1.5.0
|
99
179
|
|
100
|
-
bioruby.gemspec |
|
101
|
-
lib/bio/version.rb |
|
180
|
+
bioruby.gemspec | 2 +-
|
181
|
+
lib/bio/version.rb | 2 +-
|
102
182
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
103
183
|
|
104
184
|
commit 0f150586904f7e423455615313992ccf77d7e123
|
@@ -107,7 +187,7 @@ Date: Tue Jun 30 22:44:58 2015 +0900
|
|
107
187
|
|
108
188
|
RELEASE_NOTES.rdoc: update many
|
109
189
|
|
110
|
-
RELEASE_NOTES.rdoc |
|
190
|
+
RELEASE_NOTES.rdoc | 151 ++++++++++++++++++++++++++++++++++++++++++++++-------
|
111
191
|
1 file changed, 132 insertions(+), 19 deletions(-)
|
112
192
|
|
113
193
|
commit 2924ca0b977da13d42f232f880fd2df0b2995677
|
@@ -121,7 +201,7 @@ Date: Tue Jun 30 21:55:52 2015 +0900
|
|
121
201
|
Thanks to Jose Irizarry who reports and sends suggested fix.
|
122
202
|
(https://github.com/bioruby/bioruby/pull/83 )
|
123
203
|
|
124
|
-
lib/bio/db/embl/uniprotkb.rb |
|
204
|
+
lib/bio/db/embl/uniprotkb.rb | 2 +-
|
125
205
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
126
206
|
|
127
207
|
commit 9bf9022007a0ff31a870b1ea08e423aebc487c17
|
@@ -130,7 +210,7 @@ Date: Tue Jun 30 18:45:51 2015 +0900
|
|
130
210
|
|
131
211
|
regenerate bioruby.gemspec with rake regemspec
|
132
212
|
|
133
|
-
bioruby.gemspec |
|
213
|
+
bioruby.gemspec | 1 +
|
134
214
|
1 file changed, 1 insertion(+)
|
135
215
|
|
136
216
|
commit a151e51a44b3dd93e5d075d71954f639eaec339e
|
@@ -139,7 +219,7 @@ Date: Tue Jun 30 18:10:55 2015 +0900
|
|
139
219
|
|
140
220
|
update docs; change recommended Ruby versions
|
141
221
|
|
142
|
-
README.rdoc |
|
222
|
+
README.rdoc | 9 ++++++---
|
143
223
|
1 file changed, 6 insertions(+), 3 deletions(-)
|
144
224
|
|
145
225
|
commit e86e745c8a6c666c446fe2f9f47818140999e2db
|
@@ -148,7 +228,7 @@ Date: Tue Jun 30 18:08:53 2015 +0900
|
|
148
228
|
|
149
229
|
delete description about SOAP4R
|
150
230
|
|
151
|
-
README.rdoc |
|
231
|
+
README.rdoc | 5 -----
|
152
232
|
1 file changed, 5 deletions(-)
|
153
233
|
|
154
234
|
commit 7e4bfb6b3757872691487b080bfd87363a4f9480
|
@@ -161,8 +241,8 @@ Date: Tue Jun 30 03:22:35 2015 +0900
|
|
161
241
|
that include 'gem "test-unit"' line because test/unit have been
|
162
242
|
provided by bundled gem since Ruby 2.2.
|
163
243
|
|
164
|
-
.travis.yml |
|
165
|
-
gemfiles/Gemfile.travis-ruby2.2 |
|
244
|
+
.travis.yml | 7 ++++---
|
245
|
+
gemfiles/Gemfile.travis-ruby2.2 | 9 +++++++++
|
166
246
|
2 files changed, 13 insertions(+), 3 deletions(-)
|
167
247
|
create mode 100644 gemfiles/Gemfile.travis-ruby2.2
|
168
248
|
|
@@ -176,9 +256,9 @@ Date: Tue Jun 30 02:51:16 2015 +0900
|
|
176
256
|
* Simplify the versioning rules.
|
177
257
|
* We will adopt the Semantic Versioning since BioRuby 1.5.1.
|
178
258
|
|
179
|
-
bioruby.gemspec |
|
180
|
-
bioruby.gemspec.erb |
|
181
|
-
lib/bio/version.rb |
|
259
|
+
bioruby.gemspec | 2 +-
|
260
|
+
bioruby.gemspec.erb | 21 ++++-----------------
|
261
|
+
lib/bio/version.rb | 17 ++++++++---------
|
182
262
|
3 files changed, 13 insertions(+), 27 deletions(-)
|
183
263
|
|
184
264
|
commit 1a24fb6840932499be833b5ec3bb36184b1334a1
|
@@ -190,7 +270,7 @@ Date: Tue Jun 30 02:14:01 2015 +0900
|
|
190
270
|
* Bug fix: update Bio::Hinv::BASE_URI to follow the server URI change.
|
191
271
|
* Update official documentation URL.
|
192
272
|
|
193
|
-
lib/bio/io/hinv.rb |
|
273
|
+
lib/bio/io/hinv.rb | 4 ++--
|
194
274
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
195
275
|
|
196
276
|
commit a9a12fff70ca287aa098d1331a3146e2899cb709
|
@@ -199,7 +279,7 @@ Date: Tue Jun 30 02:08:40 2015 +0900
|
|
199
279
|
|
200
280
|
delete $Id:$ line
|
201
281
|
|
202
|
-
lib/bio/io/hinv.rb |
|
282
|
+
lib/bio/io/hinv.rb | 1 -
|
203
283
|
1 file changed, 1 deletion(-)
|
204
284
|
|
205
285
|
commit 2bfa0f41969003f17c4b894b5279347616c8f187
|
@@ -208,7 +288,7 @@ Date: Tue Jun 30 01:58:01 2015 +0900
|
|
208
288
|
|
209
289
|
delete sections about SOAP4R issues
|
210
290
|
|
211
|
-
KNOWN_ISSUES.rdoc |
|
291
|
+
KNOWN_ISSUES.rdoc | 12 ------------
|
212
292
|
1 file changed, 12 deletions(-)
|
213
293
|
|
214
294
|
commit 9dbd83aa00acc5f78b5da68f000c305da9f31b66
|
@@ -217,9 +297,9 @@ Date: Tue Jun 30 01:54:16 2015 +0900
|
|
217
297
|
|
218
298
|
remove commented-out lines of soap4r-ruby1.9
|
219
299
|
|
220
|
-
gemfiles/Gemfile.travis-jruby1.9 |
|
221
|
-
gemfiles/Gemfile.travis-rbx |
|
222
|
-
gemfiles/Gemfile.travis-ruby1.9 |
|
300
|
+
gemfiles/Gemfile.travis-jruby1.9 | 3 ---
|
301
|
+
gemfiles/Gemfile.travis-rbx | 3 ---
|
302
|
+
gemfiles/Gemfile.travis-ruby1.9 | 3 ---
|
223
303
|
3 files changed, 9 deletions(-)
|
224
304
|
|
225
305
|
commit 14d2f3e2fa15f94faeff4d28c957f581461eac82
|
@@ -228,7 +308,7 @@ Date: Tue Jun 30 01:50:30 2015 +0900
|
|
228
308
|
|
229
309
|
.travis.yml: update ruby versions, remove ruby 1.9.2
|
230
310
|
|
231
|
-
.travis.yml |
|
311
|
+
.travis.yml | 8 ++++----
|
232
312
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
233
313
|
|
234
314
|
commit 89f9b1fe2332584b5d63b1539b8e470d853478a3
|
@@ -237,7 +317,7 @@ Date: Tue Jun 30 00:36:42 2015 +0900
|
|
237
317
|
|
238
318
|
about removal of Bio::SOAPWSDL, Bio::EBI::SOAP, Bio::HGC::HiGet
|
239
319
|
|
240
|
-
RELEASE_NOTES.rdoc |
|
320
|
+
RELEASE_NOTES.rdoc | 20 ++++++++++++++++++++
|
241
321
|
1 file changed, 20 insertions(+)
|
242
322
|
|
243
323
|
commit 29516d3d6d2f907f65822bcf4146e95785773a3a
|
@@ -246,7 +326,7 @@ Date: Tue Jun 30 00:50:47 2015 +0900
|
|
246
326
|
|
247
327
|
regenerate bioruby.gemspec with rake regemspec
|
248
328
|
|
249
|
-
bioruby.gemspec |
|
329
|
+
bioruby.gemspec | 6 ------
|
250
330
|
1 file changed, 6 deletions(-)
|
251
331
|
|
252
332
|
commit 357a1afc5ef457326179142c163968aa5cd94864
|
@@ -255,7 +335,7 @@ Date: Tue Jun 30 00:49:42 2015 +0900
|
|
255
335
|
|
256
336
|
not to load deleted file lib/bio/shell/plugin/soap.rb
|
257
337
|
|
258
|
-
lib/bio/shell.rb |
|
338
|
+
lib/bio/shell.rb | 1 -
|
259
339
|
1 file changed, 1 deletion(-)
|
260
340
|
|
261
341
|
commit 956e475da52ea17f1022493f589489a3e7c06f93
|
@@ -267,7 +347,7 @@ Date: Mon Jun 29 23:43:24 2015 +0900
|
|
267
347
|
* deleted lib/bio/shell/plugin/soap.rb because Bio::SOAPWSDL and
|
268
348
|
all SOAP client classes in BioRuby are removed.
|
269
349
|
|
270
|
-
lib/bio/shell/plugin/soap.rb |
|
350
|
+
lib/bio/shell/plugin/soap.rb | 50 --------------------------------------------
|
271
351
|
1 file changed, 50 deletions(-)
|
272
352
|
delete mode 100644 lib/bio/shell/plugin/soap.rb
|
273
353
|
|
@@ -277,7 +357,7 @@ Date: Mon Jun 29 23:41:20 2015 +0900
|
|
277
357
|
|
278
358
|
not to load removed Bio::EBI::SOAP from lib/bio/io/ebisoap.rb
|
279
359
|
|
280
|
-
lib/bio.rb |
|
360
|
+
lib/bio.rb | 4 ----
|
281
361
|
1 file changed, 4 deletions(-)
|
282
362
|
|
283
363
|
commit d4844b38b5ddaec7ec15b56ef66f6930f0e6cfc0
|
@@ -289,7 +369,7 @@ Date: Mon Jun 29 23:38:26 2015 +0900
|
|
289
369
|
* Bio::EBI::SOAP (lib/bio/io/ebisoap.rb) is removed because
|
290
370
|
Bio::SOAPWSDL is removed.
|
291
371
|
|
292
|
-
lib/bio/io/ebisoap.rb |
|
372
|
+
lib/bio/io/ebisoap.rb | 158 --------------------------------------------------
|
293
373
|
1 file changed, 158 deletions(-)
|
294
374
|
delete mode 100644 lib/bio/io/ebisoap.rb
|
295
375
|
|
@@ -299,7 +379,7 @@ Date: Tue Jun 30 00:12:36 2015 +0900
|
|
299
379
|
|
300
380
|
not to load removed Bio::SOAPWSDL from lib/bio/io/soapwsdl.rb
|
301
381
|
|
302
|
-
lib/bio.rb |
|
382
|
+
lib/bio.rb | 1 -
|
303
383
|
1 file changed, 1 deletion(-)
|
304
384
|
|
305
385
|
commit 03ced6a70973557532517c70dac183775bd11fa7
|
@@ -314,9 +394,9 @@ Date: Mon Jun 29 23:59:28 2015 +0900
|
|
314
394
|
well-maintained. Moreover, many SOAP servers have been retired
|
315
395
|
(see previous commits). So, we give up maintaining Bio::SOAPWSDL.
|
316
396
|
|
317
|
-
lib/bio/io/soapwsdl.rb |
|
318
|
-
test/network/bio/io/test_soapwsdl.rb |
|
319
|
-
test/unit/bio/io/test_soapwsdl.rb |
|
397
|
+
lib/bio/io/soapwsdl.rb | 119 -----------------------------------
|
398
|
+
test/network/bio/io/test_soapwsdl.rb | 53 ----------------
|
399
|
+
test/unit/bio/io/test_soapwsdl.rb | 33 ----------
|
320
400
|
3 files changed, 205 deletions(-)
|
321
401
|
delete mode 100644 lib/bio/io/soapwsdl.rb
|
322
402
|
delete mode 100644 test/network/bio/io/test_soapwsdl.rb
|
@@ -328,7 +408,7 @@ Date: Mon Jun 29 23:35:38 2015 +0900
|
|
328
408
|
|
329
409
|
delete old comment-out lines about Bio::DDBJ::XML
|
330
410
|
|
331
|
-
lib/bio.rb |
|
411
|
+
lib/bio.rb | 5 -----
|
332
412
|
1 file changed, 5 deletions(-)
|
333
413
|
|
334
414
|
commit b995251bf96b8983def36e77bc94d6f0c0f2c78c
|
@@ -337,7 +417,7 @@ Date: Mon Jun 29 23:29:47 2015 +0900
|
|
337
417
|
|
338
418
|
do not load Bio::HGC::HiGet from deleted lib/bio/io/higet.rb
|
339
419
|
|
340
|
-
lib/bio.rb |
|
420
|
+
lib/bio.rb | 4 ----
|
341
421
|
1 file changed, 4 deletions(-)
|
342
422
|
|
343
423
|
commit 6191020ed1e150f9e70de687375528a899fcf8ef
|
@@ -346,7 +426,7 @@ Date: Mon Jun 29 23:27:41 2015 +0900
|
|
346
426
|
|
347
427
|
remove lib/bio/io/higet.rb because of the server down for a long time
|
348
428
|
|
349
|
-
lib/bio/io/higet.rb |
|
429
|
+
lib/bio/io/higet.rb | 73 -----------------------------------------------------
|
350
430
|
1 file changed, 73 deletions(-)
|
351
431
|
delete mode 100644 lib/bio/io/higet.rb
|
352
432
|
|
@@ -356,7 +436,7 @@ Date: Sat Jun 27 02:33:46 2015 +0900
|
|
356
436
|
|
357
437
|
add/modify about removed features and incompatible changes
|
358
438
|
|
359
|
-
RELEASE_NOTES.rdoc |
|
439
|
+
RELEASE_NOTES.rdoc | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++---
|
360
440
|
1 file changed, 67 insertions(+), 4 deletions(-)
|
361
441
|
|
362
442
|
commit 1886314d2b8dd7d4b3e86c7b93134facd881127a
|
@@ -365,7 +445,7 @@ Date: Sat Jun 27 01:24:36 2015 +0900
|
|
365
445
|
|
366
446
|
regenerate bioruby.gemspec with rake regemspec
|
367
447
|
|
368
|
-
bioruby.gemspec |
|
448
|
+
bioruby.gemspec | 1 -
|
369
449
|
1 file changed, 1 deletion(-)
|
370
450
|
|
371
451
|
commit 724e9c1c039dcc7fa19fb15de0313218a87f9868
|
@@ -379,7 +459,7 @@ Date: Thu Jun 25 23:34:44 2015 +0900
|
|
379
459
|
usually used only for building native extensions. Use gem or
|
380
460
|
setup.rb to install BioRuby.
|
381
461
|
|
382
|
-
extconf.rb |
|
462
|
+
extconf.rb | 2 --
|
383
463
|
1 file changed, 2 deletions(-)
|
384
464
|
delete mode 100644 extconf.rb
|
385
465
|
|
@@ -389,7 +469,7 @@ Date: Wed Jun 24 22:29:28 2015 +0900
|
|
389
469
|
|
390
470
|
Ruby 2.3 support: IO#close to closed IO object is allowed without error.
|
391
471
|
|
392
|
-
test/unit/bio/io/flatfile/test_buffer.rb |
|
472
|
+
test/unit/bio/io/flatfile/test_buffer.rb | 8 +++++++-
|
393
473
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
394
474
|
|
395
475
|
commit 5ea39188ac3cc2609397b2d8864a2019ea6b93d2
|
@@ -402,8 +482,8 @@ Date: Fri May 1 23:42:39 2015 +0900
|
|
402
482
|
Thanks to Peter Cock who reports a patch.
|
403
483
|
(https://github.com/bioruby/bioruby/issues/101 )
|
404
484
|
|
405
|
-
bioruby.gemspec |
|
406
|
-
bioruby.gemspec.erb |
|
485
|
+
bioruby.gemspec | 1 +
|
486
|
+
bioruby.gemspec.erb | 1 +
|
407
487
|
2 files changed, 2 insertions(+)
|
408
488
|
|
409
489
|
commit 2b18ae005a592ea4ae7b632f7e658d4bbf153fd8
|
@@ -412,8 +492,8 @@ Date: Fri May 1 23:39:36 2015 +0900
|
|
412
492
|
|
413
493
|
remove deprecated Gem::Specification#rubyforge_project
|
414
494
|
|
415
|
-
bioruby.gemspec |
|
416
|
-
bioruby.gemspec.erb |
|
495
|
+
bioruby.gemspec | 2 +-
|
496
|
+
bioruby.gemspec.erb | 2 +-
|
417
497
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
418
498
|
|
419
499
|
commit 3a1d89bde9af44793c850b1cde950e3e3042fb8d
|
@@ -422,7 +502,7 @@ Date: Sat Mar 28 01:52:31 2015 +0900
|
|
422
502
|
|
423
503
|
delete obsolete $Id:$ line
|
424
504
|
|
425
|
-
lib/bio/db/gff.rb |
|
505
|
+
lib/bio/db/gff.rb | 1 -
|
426
506
|
1 file changed, 1 deletion(-)
|
427
507
|
|
428
508
|
commit 165ebf29ba192c7a7e7f1633809d34966c2aeed1
|
@@ -431,7 +511,7 @@ Date: Sat Mar 28 01:51:47 2015 +0900
|
|
431
511
|
|
432
512
|
suppress "character class has duplicated range" warnings
|
433
513
|
|
434
|
-
lib/bio/db/gff.rb |
|
514
|
+
lib/bio/db/gff.rb | 4 ++--
|
435
515
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
436
516
|
|
437
517
|
commit 715ee5aa3a797737d390365b2c202cc9a0effea5
|
@@ -440,7 +520,7 @@ Date: Sat Mar 28 01:37:35 2015 +0900
|
|
440
520
|
|
441
521
|
delete obsolete $Id:$ line
|
442
522
|
|
443
|
-
lib/bio/appl/sosui/report.rb |
|
523
|
+
lib/bio/appl/sosui/report.rb | 1 -
|
444
524
|
1 file changed, 1 deletion(-)
|
445
525
|
|
446
526
|
commit 71e34938f1228911657ebf00720712a17bc89ea9
|
@@ -449,7 +529,7 @@ Date: Sat Mar 28 01:36:44 2015 +0900
|
|
449
529
|
|
450
530
|
comment out a line to suppress warning: assigned but unused variable - tmh
|
451
531
|
|
452
|
-
lib/bio/appl/sosui/report.rb |
|
532
|
+
lib/bio/appl/sosui/report.rb | 2 +-
|
453
533
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
454
534
|
|
455
535
|
commit fc518f3826bf60d70ebdbd70acdba512f1462c6f
|
@@ -458,7 +538,7 @@ Date: Sat Mar 28 01:34:22 2015 +0900
|
|
458
538
|
|
459
539
|
delete obsolete $Id:$ line
|
460
540
|
|
461
|
-
lib/bio/db/sanger_chromatogram/chromatogram.rb |
|
541
|
+
lib/bio/db/sanger_chromatogram/chromatogram.rb | 1 -
|
462
542
|
1 file changed, 1 deletion(-)
|
463
543
|
|
464
544
|
commit 516c467dfb245d99c4f7f77e251c77ffc5d274ca
|
@@ -467,7 +547,7 @@ Date: Sat Mar 28 01:33:19 2015 +0900
|
|
467
547
|
|
468
548
|
suppress warning: instance variable @aqual not initialized
|
469
549
|
|
470
|
-
lib/bio/db/sanger_chromatogram/chromatogram.rb |
|
550
|
+
lib/bio/db/sanger_chromatogram/chromatogram.rb | 2 +-
|
471
551
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
472
552
|
|
473
553
|
commit 56d2e472196ba03ba6aa2a2bdf8d3de81272fa15
|
@@ -476,7 +556,7 @@ Date: Sat Mar 28 01:30:26 2015 +0900
|
|
476
556
|
|
477
557
|
delete obsolete $Id:$ line
|
478
558
|
|
479
|
-
lib/bio/db/kegg/module.rb |
|
559
|
+
lib/bio/db/kegg/module.rb | 1 -
|
480
560
|
1 file changed, 1 deletion(-)
|
481
561
|
|
482
562
|
commit fb6b9b6578d08a87c1974e58f6d1f231b4ad52c0
|
@@ -485,7 +565,7 @@ Date: Sat Mar 28 01:28:05 2015 +0900
|
|
485
565
|
|
486
566
|
suppress "instance variable @XXX not initialized" warnings
|
487
567
|
|
488
|
-
lib/bio/db/kegg/module.rb |
|
568
|
+
lib/bio/db/kegg/module.rb | 8 ++++----
|
489
569
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
490
570
|
|
491
571
|
commit 9f70b8d54abd9adbd50d46a3176f23f51af01cc7
|
@@ -494,7 +574,7 @@ Date: Sat Mar 28 01:25:50 2015 +0900
|
|
494
574
|
|
495
575
|
delete obsolete $Id:$ line
|
496
576
|
|
497
|
-
lib/bio/db/kegg/pathway.rb |
|
577
|
+
lib/bio/db/kegg/pathway.rb | 1 -
|
498
578
|
1 file changed, 1 deletion(-)
|
499
579
|
|
500
580
|
commit 3844b9bb69e1f657c9b85bb20a4d209828b78b12
|
@@ -503,7 +583,7 @@ Date: Sat Mar 28 01:25:03 2015 +0900
|
|
503
583
|
|
504
584
|
suppress "instance variable @XXX not initialized" warnings
|
505
585
|
|
506
|
-
lib/bio/db/kegg/pathway.rb |
|
586
|
+
lib/bio/db/kegg/pathway.rb | 8 ++++----
|
507
587
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
508
588
|
|
509
589
|
commit 8d857e246eacb6c9f8fbbceaa2fba7f1211e2b86
|
@@ -512,7 +592,7 @@ Date: Sat Mar 28 01:20:13 2015 +0900
|
|
512
592
|
|
513
593
|
delete obsolete $Id:$ line
|
514
594
|
|
515
|
-
lib/bio/db/fasta/defline.rb |
|
595
|
+
lib/bio/db/fasta/defline.rb | 1 -
|
516
596
|
1 file changed, 1 deletion(-)
|
517
597
|
|
518
598
|
commit aadf285bc9e618b7813b42fd39e0b1966a04385c
|
@@ -521,7 +601,7 @@ Date: Sat Mar 28 01:18:43 2015 +0900
|
|
521
601
|
|
522
602
|
suppress defline.rb:393: warning: character class has duplicated range
|
523
603
|
|
524
|
-
lib/bio/db/fasta/defline.rb |
|
604
|
+
lib/bio/db/fasta/defline.rb | 2 +-
|
525
605
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
526
606
|
|
527
607
|
commit 5297db11eb165885c4f15b914c2132c4122ae5a9
|
@@ -530,7 +610,7 @@ Date: Sat Mar 28 01:11:43 2015 +0900
|
|
530
610
|
|
531
611
|
delete obsolete $Id:$ line
|
532
612
|
|
533
|
-
test/unit/bio/test_db.rb |
|
613
|
+
test/unit/bio/test_db.rb | 1 -
|
534
614
|
1 file changed, 1 deletion(-)
|
535
615
|
|
536
616
|
commit 20381ad45c674c0844a92891cb8ae71edaa6e333
|
@@ -543,7 +623,7 @@ Date: Sat Mar 28 01:08:04 2015 +0900
|
|
543
623
|
@tagsize not initialized" when executing Bio::TestDB#test_fetch,
|
544
624
|
@tagsize is set in setup.
|
545
625
|
|
546
|
-
test/unit/bio/test_db.rb |
|
626
|
+
test/unit/bio/test_db.rb | 5 ++++-
|
547
627
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
548
628
|
|
549
629
|
commit d194edfc68bc10fde11f2cf014a59113ddc63b24
|
@@ -552,7 +632,7 @@ Date: Sat Mar 28 00:59:21 2015 +0900
|
|
552
632
|
|
553
633
|
delete obsolete $Id:$ line
|
554
634
|
|
555
|
-
lib/bio/data/codontable.rb |
|
635
|
+
lib/bio/data/codontable.rb | 1 -
|
556
636
|
1 file changed, 1 deletion(-)
|
557
637
|
|
558
638
|
commit fac51f540dc7b33cd3ec51f97b5cb1ea587a461e
|
@@ -561,7 +641,7 @@ Date: Sat Mar 28 00:57:28 2015 +0900
|
|
561
641
|
|
562
642
|
suppress warning: instance variable @reverse not initialized
|
563
643
|
|
564
|
-
lib/bio/data/codontable.rb |
|
644
|
+
lib/bio/data/codontable.rb | 2 +-
|
565
645
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
566
646
|
|
567
647
|
commit 4e85315f03e374157f832c8435d0d2f43cd969af
|
@@ -570,7 +650,7 @@ Date: Sat Mar 28 00:55:25 2015 +0900
|
|
570
650
|
|
571
651
|
delete obsolete $Id:$ line
|
572
652
|
|
573
|
-
lib/bio/appl/iprscan/report.rb |
|
653
|
+
lib/bio/appl/iprscan/report.rb | 1 -
|
574
654
|
1 file changed, 1 deletion(-)
|
575
655
|
|
576
656
|
commit dafa7ce62378ff1605a295f8c620eb3a0a4a3c57
|
@@ -579,7 +659,7 @@ Date: Sat Mar 28 00:54:37 2015 +0900
|
|
579
659
|
|
580
660
|
suppress warning: instance variable @ipr_ids not initialized
|
581
661
|
|
582
|
-
lib/bio/appl/iprscan/report.rb |
|
662
|
+
lib/bio/appl/iprscan/report.rb | 2 +-
|
583
663
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
584
664
|
|
585
665
|
commit 52b6073997c1b26fea9d4aae3154b37575944d4d
|
@@ -588,7 +668,7 @@ Date: Sat Mar 28 00:50:43 2015 +0900
|
|
588
668
|
|
589
669
|
suppress "method redefined" warnings and fill RDoc for some methods
|
590
670
|
|
591
|
-
lib/bio/db/phyloxml/phyloxml_elements.rb |
|
671
|
+
lib/bio/db/phyloxml/phyloxml_elements.rb | 46 ++++++++++++++++++++++++--------
|
592
672
|
1 file changed, 35 insertions(+), 11 deletions(-)
|
593
673
|
|
594
674
|
commit 3d2e99fe993d76d5ece5bdbcd2e9541fa098c4dd
|
@@ -597,7 +677,7 @@ Date: Sat Mar 28 00:36:51 2015 +0900
|
|
597
677
|
|
598
678
|
suppress "instance variable @XXX not initialized" warnings
|
599
679
|
|
600
|
-
lib/bio/db/phyloxml/phyloxml_elements.rb |
|
680
|
+
lib/bio/db/phyloxml/phyloxml_elements.rb | 88 ++++++++++++++++----------------
|
601
681
|
1 file changed, 44 insertions(+), 44 deletions(-)
|
602
682
|
|
603
683
|
commit 02d4f98eae3934d8ad9c950b41132eb14653fe27
|
@@ -606,7 +686,7 @@ Date: Thu Mar 26 20:33:35 2015 +0900
|
|
606
686
|
|
607
687
|
suppress warning: instance variable @uri not initialized
|
608
688
|
|
609
|
-
lib/bio/db/phyloxml/phyloxml_elements.rb |
|
689
|
+
lib/bio/db/phyloxml/phyloxml_elements.rb | 2 +-
|
610
690
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
611
691
|
|
612
692
|
commit 94277712e9dd000c2d9bf5b6ebfd84d0f2fc3b59
|
@@ -615,7 +695,7 @@ Date: Thu Mar 26 01:47:45 2015 +0900
|
|
615
695
|
|
616
696
|
suppress warning: instance variable @format not initialized
|
617
697
|
|
618
|
-
lib/bio/db/fastq.rb |
|
698
|
+
lib/bio/db/fastq.rb | 2 +-
|
619
699
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
620
700
|
|
621
701
|
commit e61e1071e4bb7dd9ee995c3a7f864c2ef4384edd
|
@@ -630,7 +710,7 @@ Date: Thu Mar 26 01:40:33 2015 +0900
|
|
630
710
|
* suppress warning: instance variable @hit_frame not initialized
|
631
711
|
* suppress warning: instance variable @query_frame not initialized
|
632
712
|
|
633
|
-
lib/bio/appl/blast/format0.rb |
|
713
|
+
lib/bio/appl/blast/format0.rb | 13 ++++++++++---
|
634
714
|
1 file changed, 10 insertions(+), 3 deletions(-)
|
635
715
|
|
636
716
|
commit 08c458c74a7a34e340e09053cbc0f9c071e27395
|
@@ -639,7 +719,7 @@ Date: Thu Mar 26 01:09:16 2015 +0900
|
|
639
719
|
|
640
720
|
suppress warning: instance variable @pattern not initialized
|
641
721
|
|
642
|
-
lib/bio/appl/blast/format0.rb |
|
722
|
+
lib/bio/appl/blast/format0.rb | 8 ++++++--
|
643
723
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
644
724
|
|
645
725
|
commit 33d7eed180fd601972724f4b992f1a17c689ef62
|
@@ -648,7 +728,7 @@ Date: Thu Mar 26 00:57:02 2015 +0900
|
|
648
728
|
|
649
729
|
Test bug fix: fix typo of test target method
|
650
730
|
|
651
|
-
test/network/bio/test_command.rb |
|
731
|
+
test/network/bio/test_command.rb | 2 +-
|
652
732
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
653
733
|
|
654
734
|
commit 76a98bce1affac03483c08f803d4314b42a0a3d3
|
@@ -662,8 +742,8 @@ Date: Thu Mar 26 00:32:25 2015 +0900
|
|
662
742
|
as String objects. This change also affects Bio::Command.post_form
|
663
743
|
and Bio::Command.http_post_form which internally use this method.
|
664
744
|
|
665
|
-
lib/bio/command.rb |
|
666
|
-
test/unit/bio/test_command.rb |
|
745
|
+
lib/bio/command.rb | 2 +-
|
746
|
+
test/unit/bio/test_command.rb | 9 +++++----
|
667
747
|
2 files changed, 6 insertions(+), 5 deletions(-)
|
668
748
|
|
669
749
|
commit b1612545a7516befd850a6d5925aa73bbaa4b4b0
|
@@ -672,7 +752,7 @@ Date: Wed Mar 25 02:36:41 2015 +0900
|
|
672
752
|
|
673
753
|
delete obsolete $Id:$ line
|
674
754
|
|
675
|
-
lib/bio/io/togows.rb |
|
755
|
+
lib/bio/io/togows.rb | 1 -
|
676
756
|
1 file changed, 1 deletion(-)
|
677
757
|
|
678
758
|
commit 4d5a419cc78ff2a79cff2812adc6f16f286204e8
|
@@ -681,7 +761,7 @@ Date: Wed Mar 25 02:35:45 2015 +0900
|
|
681
761
|
|
682
762
|
delete obsolete $Id:$ line
|
683
763
|
|
684
|
-
test/network/bio/io/test_togows.rb |
|
764
|
+
test/network/bio/io/test_togows.rb | 1 -
|
685
765
|
1 file changed, 1 deletion(-)
|
686
766
|
|
687
767
|
commit a8d2c4cac665b4bb8140df329a9cc1d6e5e2d02d
|
@@ -690,7 +770,7 @@ Date: Wed Mar 25 02:35:03 2015 +0900
|
|
690
770
|
|
691
771
|
delete obsolete $Id:$ line
|
692
772
|
|
693
|
-
test/unit/bio/io/test_togows.rb |
|
773
|
+
test/unit/bio/io/test_togows.rb | 1 -
|
694
774
|
1 file changed, 1 deletion(-)
|
695
775
|
|
696
776
|
commit dd0967db3743789ea5aa48623df8d97f93062694
|
@@ -699,7 +779,7 @@ Date: Wed Mar 25 02:33:49 2015 +0900
|
|
699
779
|
|
700
780
|
test_make_path: add test data using Symbol objects
|
701
781
|
|
702
|
-
test/unit/bio/io/test_togows.rb |
|
782
|
+
test/unit/bio/io/test_togows.rb | 4 +++-
|
703
783
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
704
784
|
|
705
785
|
commit e07158a60ca666b5d625408bcf8fa602fd8114a8
|
@@ -708,7 +788,7 @@ Date: Wed Mar 25 02:22:31 2015 +0900
|
|
708
788
|
|
709
789
|
Bio::TogoWS::REST#entry: comma between IDs should NOT be escaped to %2C
|
710
790
|
|
711
|
-
lib/bio/io/togows.rb |
|
791
|
+
lib/bio/io/togows.rb | 11 +++++++++--
|
712
792
|
1 file changed, 9 insertions(+), 2 deletions(-)
|
713
793
|
|
714
794
|
commit 98546289b2f2da2dc7f9586fd5e2942da4d8f3a8
|
@@ -723,7 +803,7 @@ Date: Wed Mar 25 02:00:17 2015 +0900
|
|
723
803
|
http://togows.org/search/nuccore/Milnesium+tardigradum/2%2C3 fails,
|
724
804
|
http://togows.org/search/nuccore/Milnesium+tardigradum/2,3 works fine.
|
725
805
|
|
726
|
-
lib/bio/io/togows.rb |
|
806
|
+
lib/bio/io/togows.rb | 24 +++++++++++++++++++++---
|
727
807
|
1 file changed, 21 insertions(+), 3 deletions(-)
|
728
808
|
|
729
809
|
commit 7097f80e315a0a6332e7a76a5bb261649e8dcc1a
|
@@ -735,7 +815,7 @@ Date: Wed Mar 25 01:33:26 2015 +0900
|
|
735
815
|
* lib/bio/io/togows.rb: Bug fix: Bio::TogoWS::REST#convert did not work
|
736
816
|
because of the spec change of TogoWS REST API.
|
737
817
|
|
738
|
-
lib/bio/io/togows.rb |
|
818
|
+
lib/bio/io/togows.rb | 7 +++----
|
739
819
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
740
820
|
|
741
821
|
commit 1a9b1063af4c0b32cd287d4a2c2466343aeddb98
|
@@ -744,7 +824,7 @@ Date: Wed Mar 25 01:30:34 2015 +0900
|
|
744
824
|
|
745
825
|
improve tests for bio/command.rb for methods using http protocol
|
746
826
|
|
747
|
-
test/network/bio/test_command.rb |
|
827
|
+
test/network/bio/test_command.rb | 67 ++++++++++++++++++++++++++++++++++++++--
|
748
828
|
1 file changed, 65 insertions(+), 2 deletions(-)
|
749
829
|
|
750
830
|
commit c63920e4d8569e3eaef201d4d60fcddfa15f1f34
|
@@ -753,7 +833,7 @@ Date: Wed Mar 25 01:30:06 2015 +0900
|
|
753
833
|
|
754
834
|
delete obsolete $Id:$ line
|
755
835
|
|
756
|
-
lib/bio/command.rb |
|
836
|
+
lib/bio/command.rb | 1 -
|
757
837
|
1 file changed, 1 deletion(-)
|
758
838
|
|
759
839
|
commit 1683edac0e9ecbf819ffcd332a6db2d25c2d596a
|
@@ -762,7 +842,7 @@ Date: Wed Mar 25 01:28:28 2015 +0900
|
|
762
842
|
|
763
843
|
new methods Bio::Command.http_post and Bio::Command.post to post raw data
|
764
844
|
|
765
|
-
lib/bio/command.rb |
|
845
|
+
lib/bio/command.rb | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
766
846
|
1 file changed, 61 insertions(+)
|
767
847
|
|
768
848
|
commit a40157205282e148bf3a2e43aed1e08d713fb598
|
@@ -771,7 +851,7 @@ Date: Tue Mar 24 00:46:23 2015 +0900
|
|
771
851
|
|
772
852
|
suppress warnings "instance variable @circular not initialized"
|
773
853
|
|
774
|
-
lib/bio/util/restriction_enzyme/range/sequence_range.rb |
|
854
|
+
lib/bio/util/restriction_enzyme/range/sequence_range.rb | 4 ++--
|
775
855
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
776
856
|
|
777
857
|
commit abcac8de85c9606f6a1879fe9d2ae559911708c9
|
@@ -780,7 +860,7 @@ Date: Tue Mar 24 00:29:42 2015 +0900
|
|
780
860
|
|
781
861
|
delete obsolete $Id:$ line
|
782
862
|
|
783
|
-
test/unit/bio/io/flatfile/test_autodetection.rb |
|
863
|
+
test/unit/bio/io/flatfile/test_autodetection.rb | 1 -
|
784
864
|
1 file changed, 1 deletion(-)
|
785
865
|
|
786
866
|
commit 1b5bf586af238b712a9f640087421fd299376c2d
|
@@ -789,7 +869,7 @@ Date: Tue Mar 24 00:28:38 2015 +0900
|
|
789
869
|
|
790
870
|
suppress warning: assigned but unused variable - length
|
791
871
|
|
792
|
-
test/unit/bio/io/flatfile/test_autodetection.rb |
|
872
|
+
test/unit/bio/io/flatfile/test_autodetection.rb | 2 +-
|
793
873
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
794
874
|
|
795
875
|
commit 5497068d17c2794ab2b6ef1e603e5478a86537c6
|
@@ -798,7 +878,7 @@ Date: Tue Mar 24 00:22:54 2015 +0900
|
|
798
878
|
|
799
879
|
add/modify assertions to suppress "unused variable" warnings
|
800
880
|
|
801
|
-
test/unit/bio/db/genbank/test_genbank.rb |
|
881
|
+
test/unit/bio/db/genbank/test_genbank.rb | 12 +++++++++---
|
802
882
|
1 file changed, 9 insertions(+), 3 deletions(-)
|
803
883
|
|
804
884
|
commit d5bafd8b7ee28ab0418b09fd6dd47abcb9eb1ee5
|
@@ -807,7 +887,7 @@ Date: Mon Mar 23 23:57:56 2015 +0900
|
|
807
887
|
|
808
888
|
delete obsolete $Id:$ line
|
809
889
|
|
810
|
-
lib/bio/appl/blast.rb |
|
890
|
+
lib/bio/appl/blast.rb | 1 -
|
811
891
|
1 file changed, 1 deletion(-)
|
812
892
|
|
813
893
|
commit bbd60d1aae7c894f914b7265d2de22fea5eb3faf
|
@@ -816,7 +896,7 @@ Date: Mon Mar 23 23:56:42 2015 +0900
|
|
816
896
|
|
817
897
|
suppress warning: assigned but unused variable - dummy
|
818
898
|
|
819
|
-
lib/bio/appl/blast.rb |
|
899
|
+
lib/bio/appl/blast.rb | 2 +-
|
820
900
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
821
901
|
|
822
902
|
commit 4a91502ccf14ab8655645144120aa97d0c8313a5
|
@@ -825,7 +905,7 @@ Date: Mon Mar 23 20:32:59 2015 +0900
|
|
825
905
|
|
826
906
|
delete obsolete $Id:$ line
|
827
907
|
|
828
|
-
lib/bio/shell/setup.rb |
|
908
|
+
lib/bio/shell/setup.rb | 1 -
|
829
909
|
1 file changed, 1 deletion(-)
|
830
910
|
|
831
911
|
commit c437a4078ff8e2869b9c1ab3543022db373a93c3
|
@@ -834,7 +914,7 @@ Date: Mon Mar 23 20:32:20 2015 +0900
|
|
834
914
|
|
835
915
|
suppress warning: instance variable @mode not initialized
|
836
916
|
|
837
|
-
lib/bio/shell/setup.rb |
|
917
|
+
lib/bio/shell/setup.rb | 2 +-
|
838
918
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
839
919
|
|
840
920
|
commit 8967cf280d5ca8491d57a11e4f3ffab7369c4ea8
|
@@ -843,7 +923,7 @@ Date: Mon Mar 23 20:28:50 2015 +0900
|
|
843
923
|
|
844
924
|
delete obsolete $Id:$ line
|
845
925
|
|
846
|
-
lib/bio/shell/irb.rb |
|
926
|
+
lib/bio/shell/irb.rb | 1 -
|
847
927
|
1 file changed, 1 deletion(-)
|
848
928
|
|
849
929
|
commit 42b5f030067be4bc9c53ccb4c06ccfc5e8d9df03
|
@@ -852,7 +932,7 @@ Date: Mon Mar 23 20:28:27 2015 +0900
|
|
852
932
|
|
853
933
|
change deprecated method File.exists? to File.exist?
|
854
934
|
|
855
|
-
lib/bio/shell/irb.rb |
|
935
|
+
lib/bio/shell/irb.rb | 2 +-
|
856
936
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
857
937
|
|
858
938
|
commit 389ad2f311f161f235db2373aeb2f5500b1ea65f
|
@@ -861,7 +941,7 @@ Date: Mon Mar 23 20:27:01 2015 +0900
|
|
861
941
|
|
862
942
|
delete obsolete $Id:$ line
|
863
943
|
|
864
|
-
lib/bio/shell/interface.rb |
|
944
|
+
lib/bio/shell/interface.rb | 1 -
|
865
945
|
1 file changed, 1 deletion(-)
|
866
946
|
|
867
947
|
commit de5949798d66c16d2b5e2cf8ba7192049ec99c5b
|
@@ -870,7 +950,7 @@ Date: Mon Mar 23 20:26:37 2015 +0900
|
|
870
950
|
|
871
951
|
change deprecated method File.exists? to File.exist?
|
872
952
|
|
873
|
-
lib/bio/shell/interface.rb |
|
953
|
+
lib/bio/shell/interface.rb | 6 +++---
|
874
954
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
875
955
|
|
876
956
|
commit c8907059a716a8778e333755c8fb53bb2a0c7158
|
@@ -879,7 +959,7 @@ Date: Mon Mar 23 20:24:58 2015 +0900
|
|
879
959
|
|
880
960
|
delete obsolete $Id:$ line
|
881
961
|
|
882
|
-
lib/bio/shell/core.rb |
|
962
|
+
lib/bio/shell/core.rb | 1 -
|
883
963
|
1 file changed, 1 deletion(-)
|
884
964
|
|
885
965
|
commit 1fe5903f8acd8045d203465a099a45218e7e3891
|
@@ -888,7 +968,7 @@ Date: Mon Mar 23 20:24:25 2015 +0900
|
|
888
968
|
|
889
969
|
change deprecated method File.exists? to File.exist?
|
890
970
|
|
891
|
-
lib/bio/shell/core.rb |
|
971
|
+
lib/bio/shell/core.rb | 10 +++++-----
|
892
972
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
893
973
|
|
894
974
|
commit 929207c6f186c81f076fab9b1bbbd23c4b966f4e
|
@@ -897,7 +977,7 @@ Date: Mon Mar 23 20:20:05 2015 +0900
|
|
897
977
|
|
898
978
|
delete obsolete $Id:$ line
|
899
979
|
|
900
|
-
test/unit/bio/db/pdb/test_pdb.rb |
|
980
|
+
test/unit/bio/db/pdb/test_pdb.rb | 1 -
|
901
981
|
1 file changed, 1 deletion(-)
|
902
982
|
|
903
983
|
commit e75c57fcd7abc56ba6fcbf1996e491aca890f5b1
|
@@ -906,7 +986,7 @@ Date: Mon Mar 23 20:19:30 2015 +0900
|
|
906
986
|
|
907
987
|
suppress "assigned but unused variable" warnings
|
908
988
|
|
909
|
-
test/unit/bio/db/pdb/test_pdb.rb |
|
989
|
+
test/unit/bio/db/pdb/test_pdb.rb | 21 ++++++++++++++-------
|
910
990
|
1 file changed, 14 insertions(+), 7 deletions(-)
|
911
991
|
|
912
992
|
commit b458301f47322c265fce27efd0ed71443c17d9d7
|
@@ -915,7 +995,7 @@ Date: Mon Mar 23 18:34:12 2015 +0900
|
|
915
995
|
|
916
996
|
delete obsolete $Id:$ line
|
917
997
|
|
918
|
-
lib/bio/shell/plugin/entry.rb |
|
998
|
+
lib/bio/shell/plugin/entry.rb | 1 -
|
919
999
|
1 file changed, 1 deletion(-)
|
920
1000
|
|
921
1001
|
commit c3f909fe06b82b3cbd4bdcbcdef668fc0727be9d
|
@@ -924,7 +1004,7 @@ Date: Mon Mar 23 18:33:30 2015 +0900
|
|
924
1004
|
|
925
1005
|
change deprecated method File.exists? to File.exist?
|
926
1006
|
|
927
|
-
lib/bio/shell/plugin/entry.rb |
|
1007
|
+
lib/bio/shell/plugin/entry.rb | 4 ++--
|
928
1008
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
929
1009
|
|
930
1010
|
commit 7ba6349c2446aa03b843a2a8fb49505c8f63c6ca
|
@@ -933,7 +1013,7 @@ Date: Mon Mar 23 18:20:44 2015 +0900
|
|
933
1013
|
|
934
1014
|
change deprecated method File.exists? to File.exist?
|
935
1015
|
|
936
|
-
lib/bio/appl/meme/mast.rb |
|
1016
|
+
lib/bio/appl/meme/mast.rb | 8 ++++----
|
937
1017
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
938
1018
|
|
939
1019
|
commit e7f78ea3c3fb1b78adcc6ae13f450cf2cda361cd
|
@@ -942,7 +1022,7 @@ Date: Mon Mar 23 18:10:27 2015 +0900
|
|
942
1022
|
|
943
1023
|
delete obsolete $Id:$ line
|
944
1024
|
|
945
|
-
lib/bio/db/phyloxml/phyloxml_writer.rb |
|
1025
|
+
lib/bio/db/phyloxml/phyloxml_writer.rb | 1 -
|
946
1026
|
1 file changed, 1 deletion(-)
|
947
1027
|
|
948
1028
|
commit b32eae0050a73bd5a2931c17a6694f494ad00bb2
|
@@ -951,7 +1031,7 @@ Date: Mon Mar 23 18:07:54 2015 +0900
|
|
951
1031
|
|
952
1032
|
suppress warning: mismatched indentations at 'end' with 'def' at 166
|
953
1033
|
|
954
|
-
lib/bio/db/phyloxml/phyloxml_writer.rb |
|
1034
|
+
lib/bio/db/phyloxml/phyloxml_writer.rb | 2 +-
|
955
1035
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
956
1036
|
|
957
1037
|
commit bd735347283ce5d332245d0349186f300800a43f
|
@@ -960,7 +1040,7 @@ Date: Sat Mar 21 12:57:03 2015 +0900
|
|
960
1040
|
|
961
1041
|
remove duplicated line and suppress Ruby 2.2 warning
|
962
1042
|
|
963
|
-
setup.rb |
|
1043
|
+
setup.rb | 1 -
|
964
1044
|
1 file changed, 1 deletion(-)
|
965
1045
|
|
966
1046
|
commit 68ad10e178594691c77ba4b97c2449fecf0ac9de
|
@@ -969,7 +1049,7 @@ Date: Sat Mar 21 12:50:46 2015 +0900
|
|
969
1049
|
|
970
1050
|
Ruby 1.9 support: suppress "shadowing outer local variable" warnings
|
971
1051
|
|
972
|
-
setup.rb |
|
1052
|
+
setup.rb | 10 +++++-----
|
973
1053
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
974
1054
|
|
975
1055
|
commit 2343482078aec8373f7a2eb8ed4d7c44119f809c
|
@@ -978,7 +1058,7 @@ Date: Sat Mar 21 12:16:45 2015 +0900
|
|
978
1058
|
|
979
1059
|
Ruby 2.2 support: Config was renamed to RbConfig
|
980
1060
|
|
981
|
-
setup.rb |
|
1061
|
+
setup.rb | 2 +-
|
982
1062
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
983
1063
|
|
984
1064
|
commit d512712745142d6c6ebe9a6ef51c8c4773bd7c2c
|
@@ -987,7 +1067,7 @@ Date: Sat Mar 21 11:52:47 2015 +0900
|
|
987
1067
|
|
988
1068
|
Ruby 1.9 support: suppress "shadowing outer local variable" warnings
|
989
1069
|
|
990
|
-
lib/bio/db/embl/format_embl.rb |
|
1070
|
+
lib/bio/db/embl/format_embl.rb | 6 +++---
|
991
1071
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
992
1072
|
|
993
1073
|
commit bfa75df9047ab6855c931558f6bf9fdbb1c3c288
|
@@ -996,7 +1076,7 @@ Date: Sat Mar 21 11:36:01 2015 +0900
|
|
996
1076
|
|
997
1077
|
delete obsolete $Id:$ line
|
998
1078
|
|
999
|
-
lib/bio/io/flatfile/buffer.rb |
|
1079
|
+
lib/bio/io/flatfile/buffer.rb | 1 -
|
1000
1080
|
1 file changed, 1 deletion(-)
|
1001
1081
|
|
1002
1082
|
commit d6fbaa0c555117ebadd46e284ae357586856102d
|
@@ -1005,7 +1085,7 @@ Date: Sat Mar 21 11:35:07 2015 +0900
|
|
1005
1085
|
|
1006
1086
|
Ruby 1.9 support: suppress warning: shadowing outer local variable - fobj
|
1007
1087
|
|
1008
|
-
lib/bio/io/flatfile/buffer.rb |
|
1088
|
+
lib/bio/io/flatfile/buffer.rb | 8 ++++----
|
1009
1089
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
1010
1090
|
|
1011
1091
|
commit 0083d3284ec181f4bcc3144f76b12f9d52e3eff6
|
@@ -1014,7 +1094,7 @@ Date: Sat Mar 21 11:29:39 2015 +0900
|
|
1014
1094
|
|
1015
1095
|
delete obsolete $Id:$ line
|
1016
1096
|
|
1017
|
-
lib/bio/io/fastacmd.rb |
|
1097
|
+
lib/bio/io/fastacmd.rb | 1 -
|
1018
1098
|
1 file changed, 1 deletion(-)
|
1019
1099
|
|
1020
1100
|
commit d4909c0e80e572a639edba07388e430c7f5d6ce8
|
@@ -1023,7 +1103,7 @@ Date: Sat Mar 21 11:29:01 2015 +0900
|
|
1023
1103
|
|
1024
1104
|
remove old sample script in "if $0 == __FILE__" block
|
1025
1105
|
|
1026
|
-
lib/bio/io/fastacmd.rb |
|
1106
|
+
lib/bio/io/fastacmd.rb | 15 ---------------
|
1027
1107
|
1 file changed, 15 deletions(-)
|
1028
1108
|
|
1029
1109
|
commit 8171162d0a3991d5f0d9a8bccee57250248d6d3d
|
@@ -1032,7 +1112,7 @@ Date: Sat Mar 21 11:15:10 2015 +0900
|
|
1032
1112
|
|
1033
1113
|
delete obsolete $Id:$ line
|
1034
1114
|
|
1035
|
-
lib/bio/db/go.rb |
|
1115
|
+
lib/bio/db/go.rb | 1 -
|
1036
1116
|
1 file changed, 1 deletion(-)
|
1037
1117
|
|
1038
1118
|
commit ed7c9a5335ef59399f3098311f47b8dec519281a
|
@@ -1041,7 +1121,7 @@ Date: Sat Mar 21 11:14:19 2015 +0900
|
|
1041
1121
|
|
1042
1122
|
Ruby 1.9 support: suppress warnings: "shadowing outer local variable - goid"
|
1043
1123
|
|
1044
|
-
lib/bio/db/go.rb |
|
1124
|
+
lib/bio/db/go.rb | 4 ++--
|
1045
1125
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
1046
1126
|
|
1047
1127
|
commit dd543068b046c9a0c2a40159c830c92b680244f1
|
@@ -1050,7 +1130,7 @@ Date: Sat Mar 21 11:03:08 2015 +0900
|
|
1050
1130
|
|
1051
1131
|
delete obsolete $Id:$ line
|
1052
1132
|
|
1053
|
-
lib/bio/db/phyloxml/phyloxml_elements.rb |
|
1133
|
+
lib/bio/db/phyloxml/phyloxml_elements.rb | 1 -
|
1054
1134
|
1 file changed, 1 deletion(-)
|
1055
1135
|
|
1056
1136
|
commit 4c74a6e3aeca30820b0be61e867c9201445542ec
|
@@ -1059,7 +1139,7 @@ Date: Sat Mar 21 10:24:40 2015 +0900
|
|
1059
1139
|
|
1060
1140
|
suppress warning: mismatched indentations at 'end' with 'class'
|
1061
1141
|
|
1062
|
-
lib/bio/db/phyloxml/phyloxml_elements.rb |
|
1142
|
+
lib/bio/db/phyloxml/phyloxml_elements.rb | 4 ++--
|
1063
1143
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
1064
1144
|
|
1065
1145
|
commit ee4ffdc748c1f9f45e97ff7f0da8350c5468c333
|
@@ -1068,7 +1148,7 @@ Date: Sat Mar 21 10:08:30 2015 +0900
|
|
1068
1148
|
|
1069
1149
|
delete obsolete $Id:$ line
|
1070
1150
|
|
1071
|
-
lib/bio/db/phyloxml/phyloxml_parser.rb |
|
1151
|
+
lib/bio/db/phyloxml/phyloxml_parser.rb | 1 -
|
1072
1152
|
1 file changed, 1 deletion(-)
|
1073
1153
|
|
1074
1154
|
commit 46a4edc8729ff836ae28d11f1503c9923275b9f6
|
@@ -1077,7 +1157,7 @@ Date: Sat Mar 21 10:00:04 2015 +0900
|
|
1077
1157
|
|
1078
1158
|
Ruby 1.9 support: suppress warning "shadowing outer local variable - flag"
|
1079
1159
|
|
1080
|
-
lib/bio/db/phyloxml/phyloxml_parser.rb |
|
1160
|
+
lib/bio/db/phyloxml/phyloxml_parser.rb | 2 +-
|
1081
1161
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1082
1162
|
|
1083
1163
|
commit db3552c683edf79adbfa5ed897f5ef91e8417585
|
@@ -1090,7 +1170,7 @@ Date: Fri Mar 20 16:33:45 2015 +0900
|
|
1090
1170
|
return value when giving block.
|
1091
1171
|
* Suppress warning "assigned but unused variable - ret"
|
1092
1172
|
|
1093
|
-
lib/bio/db/phyloxml/phyloxml_parser.rb |
|
1173
|
+
lib/bio/db/phyloxml/phyloxml_parser.rb | 1 +
|
1094
1174
|
1 file changed, 1 insertion(+)
|
1095
1175
|
|
1096
1176
|
commit 84c2c4e94352cc9cef982d3b505b4f439617e01e
|
@@ -1099,7 +1179,7 @@ Date: Fri Mar 20 16:21:49 2015 +0900
|
|
1099
1179
|
|
1100
1180
|
delete obsolete $Id:$ line
|
1101
1181
|
|
1102
|
-
lib/bio/appl/genscan/report.rb |
|
1182
|
+
lib/bio/appl/genscan/report.rb | 1 -
|
1103
1183
|
1 file changed, 1 deletion(-)
|
1104
1184
|
|
1105
1185
|
commit 05c55d0aaf1dc130ac04155622ccebb3394fc3c0
|
@@ -1108,7 +1188,7 @@ Date: Fri Mar 20 16:21:06 2015 +0900
|
|
1108
1188
|
|
1109
1189
|
Ruby 1.9 support: suppress warning "shadowing outer local variable - i"
|
1110
1190
|
|
1111
|
-
lib/bio/appl/genscan/report.rb |
|
1191
|
+
lib/bio/appl/genscan/report.rb | 2 +-
|
1112
1192
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1113
1193
|
|
1114
1194
|
commit 5edcc1c97ca7c292fa6551509570daf68ac36837
|
@@ -1117,7 +1197,7 @@ Date: Fri Mar 20 16:13:57 2015 +0900
|
|
1117
1197
|
|
1118
1198
|
Ruby 1.9 support: suppress warning "shadowing outer local variable - y"
|
1119
1199
|
|
1120
|
-
lib/bio/appl/blast/format0.rb |
|
1200
|
+
lib/bio/appl/blast/format0.rb | 2 +-
|
1121
1201
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1122
1202
|
|
1123
1203
|
commit 813d53a06258244a47784697e8fc95f1f15db8da
|
@@ -1126,7 +1206,7 @@ Date: Fri Mar 20 16:03:19 2015 +0900
|
|
1126
1206
|
|
1127
1207
|
delete obsolete $Id:$ line
|
1128
1208
|
|
1129
|
-
lib/bio/io/das.rb |
|
1209
|
+
lib/bio/io/das.rb | 1 -
|
1130
1210
|
1 file changed, 1 deletion(-)
|
1131
1211
|
|
1132
1212
|
commit b6ae4a423dd763969c8e18ca6a578fd0600d6159
|
@@ -1135,7 +1215,7 @@ Date: Fri Mar 20 16:02:20 2015 +0900
|
|
1135
1215
|
|
1136
1216
|
Ruby 1.9 support: suppress "warning: shadowing outer local variable - e"
|
1137
1217
|
|
1138
|
-
lib/bio/io/das.rb |
|
1218
|
+
lib/bio/io/das.rb | 80 +++++++++++++++++++++++++++----------------------------
|
1139
1219
|
1 file changed, 40 insertions(+), 40 deletions(-)
|
1140
1220
|
|
1141
1221
|
commit 7fa75a644167dd8c189f681e29c1cf5f1bf2fe0b
|
@@ -1144,7 +1224,7 @@ Date: Fri Mar 20 15:36:00 2015 +0900
|
|
1144
1224
|
|
1145
1225
|
delete obsolete $Id:$ line
|
1146
1226
|
|
1147
|
-
lib/bio/shell/plugin/seq.rb |
|
1227
|
+
lib/bio/shell/plugin/seq.rb | 1 -
|
1148
1228
|
1 file changed, 1 deletion(-)
|
1149
1229
|
|
1150
1230
|
commit 051aba1519d71f1205363c4421feb6c06881ab0c
|
@@ -1158,7 +1238,7 @@ Date: Fri Mar 20 15:29:02 2015 +0900
|
|
1158
1238
|
the last part of the string due to a change from Ruby 1.8 to 1.9.
|
1159
1239
|
* Suppress warning message "shadowing outer local variable - i"
|
1160
1240
|
|
1161
|
-
lib/bio/shell/plugin/seq.rb |
|
1241
|
+
lib/bio/shell/plugin/seq.rb | 12 +++++++-----
|
1162
1242
|
1 file changed, 7 insertions(+), 5 deletions(-)
|
1163
1243
|
|
1164
1244
|
commit a9f2bff92de58c2ab4cefc67e721d3ad69e9de98
|
@@ -1167,7 +1247,7 @@ Date: Fri Mar 20 15:09:16 2015 +0900
|
|
1167
1247
|
|
1168
1248
|
Ruby 2.2 support: suppress a "shadowing outer local variable" warning
|
1169
1249
|
|
1170
|
-
lib/bio/alignment.rb |
|
1250
|
+
lib/bio/alignment.rb | 6 +++---
|
1171
1251
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
1172
1252
|
|
1173
1253
|
commit d0bcc8766d91eb7cacea2a6d5b32b3e0b3c5ce56
|
@@ -1176,7 +1256,7 @@ Date: Fri Mar 20 14:31:04 2015 +0900
|
|
1176
1256
|
|
1177
1257
|
delete obsolete $Id:$ line
|
1178
1258
|
|
1179
|
-
test/unit/bio/test_alignment.rb |
|
1259
|
+
test/unit/bio/test_alignment.rb | 1 -
|
1180
1260
|
1 file changed, 1 deletion(-)
|
1181
1261
|
|
1182
1262
|
commit 0c8fa8fd558088822a98e11b6fa4bec9b37ebec7
|
@@ -1188,7 +1268,7 @@ Date: Fri Mar 20 14:26:38 2015 +0900
|
|
1188
1268
|
* Ruby 2.2 support: test/unit/bio/test_alignment.rb:
|
1189
1269
|
Suppress warning: duplicated key at line 182 ignored: "t"
|
1190
1270
|
|
1191
|
-
test/unit/bio/test_alignment.rb |
|
1271
|
+
test/unit/bio/test_alignment.rb | 2 +-
|
1192
1272
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1193
1273
|
|
1194
1274
|
commit ab17c40e1ce492dc924205e8e2f90d31adae4464
|
@@ -1201,7 +1281,7 @@ Date: Fri Mar 20 14:18:08 2015 +0900
|
|
1201
1281
|
Support for test-unit gem bundled in Ruby 2.2.
|
1202
1282
|
See commit log b9488a64abb780c5e9b6cd28e8264bad399fa749 for details.
|
1203
1283
|
|
1204
|
-
test/unit/bio/db/test_fastq.rb |
|
1284
|
+
test/unit/bio/db/test_fastq.rb | 18 ++++++++++++++----
|
1205
1285
|
1 file changed, 14 insertions(+), 4 deletions(-)
|
1206
1286
|
|
1207
1287
|
commit ea668d73c18e3df33625cba4352ad5f6966e0eb4
|
@@ -1210,7 +1290,7 @@ Date: Fri Mar 20 14:03:43 2015 +0900
|
|
1210
1290
|
|
1211
1291
|
delete obsolete $Id:$ line
|
1212
1292
|
|
1213
|
-
test/unit/bio/appl/sim4/test_report.rb |
|
1293
|
+
test/unit/bio/appl/sim4/test_report.rb | 1 -
|
1214
1294
|
1 file changed, 1 deletion(-)
|
1215
1295
|
|
1216
1296
|
commit 1abb8d362a0f2443b48923bcccba3d7d0caa1f1d
|
@@ -1223,7 +1303,7 @@ Date: Fri Mar 20 13:57:33 2015 +0900
|
|
1223
1303
|
Support for test-unit gem bundled in Ruby 2.2.
|
1224
1304
|
See commit log b9488a64abb780c5e9b6cd28e8264bad399fa749 for details.
|
1225
1305
|
|
1226
|
-
test/unit/bio/appl/sim4/test_report.rb |
|
1306
|
+
test/unit/bio/appl/sim4/test_report.rb | 62 +++++++++++++++++++++++++---------
|
1227
1307
|
1 file changed, 46 insertions(+), 16 deletions(-)
|
1228
1308
|
|
1229
1309
|
commit b9488a64abb780c5e9b6cd28e8264bad399fa749
|
@@ -1239,7 +1319,7 @@ Date: Fri Mar 20 13:13:28 2015 +0900
|
|
1239
1319
|
are moved to modules and test classes are changed to include
|
1240
1320
|
the modules.
|
1241
1321
|
|
1242
|
-
test/unit/bio/appl/blast/test_report.rb |
|
1322
|
+
test/unit/bio/appl/blast/test_report.rb | 156 ++++++++++++++++++++++----------
|
1243
1323
|
1 file changed, 110 insertions(+), 46 deletions(-)
|
1244
1324
|
|
1245
1325
|
commit febe8bbf614e530f597d7306d33df5f5f4ee6699
|
@@ -1252,7 +1332,7 @@ Date: Thu Mar 19 00:55:09 2015 +0900
|
|
1252
1332
|
Without bio-old-biofetch-emulator, the program exits with error
|
1253
1333
|
message when default BioRuby BioFetch server is specified.
|
1254
1334
|
|
1255
|
-
bin/br_biofetch.rb |
|
1335
|
+
bin/br_biofetch.rb | 19 +++++++++++++++++++
|
1256
1336
|
1 file changed, 19 insertions(+)
|
1257
1337
|
|
1258
1338
|
commit 08450e0a35cbf5596dd30238d23aa7a7296c8f67
|
@@ -1261,7 +1341,7 @@ Date: Thu Mar 19 00:36:10 2015 +0900
|
|
1261
1341
|
|
1262
1342
|
do not repeat default_url and another_url
|
1263
1343
|
|
1264
|
-
bin/br_biofetch.rb |
|
1344
|
+
bin/br_biofetch.rb | 14 ++++++++++----
|
1265
1345
|
1 file changed, 10 insertions(+), 4 deletions(-)
|
1266
1346
|
|
1267
1347
|
commit 8e39d3411405b09cc6ea55ba31e5206536ebf59d
|
@@ -1274,7 +1354,7 @@ Date: Wed Mar 18 23:57:59 2015 +0900
|
|
1274
1354
|
because the old deprecated bioruby biofetch server can be emulated
|
1275
1355
|
by bio-old-biofetch-emulator gem package.
|
1276
1356
|
|
1277
|
-
bin/br_biofetch.rb |
|
1357
|
+
bin/br_biofetch.rb | 15 ++++++++-------
|
1278
1358
|
1 file changed, 8 insertions(+), 7 deletions(-)
|
1279
1359
|
|
1280
1360
|
commit 849c38931a64b7ff2ba7ec46a495e65a99a869fb
|
@@ -1283,8 +1363,8 @@ Date: Wed Aug 8 09:44:09 2012 +1000
|
|
1283
1363
|
|
1284
1364
|
add FastaFormat#first_name method
|
1285
1365
|
|
1286
|
-
lib/bio/db/fasta.rb |
|
1287
|
-
test/unit/bio/db/test_fasta.rb |
|
1366
|
+
lib/bio/db/fasta.rb | 17 +++++++++++++++++
|
1367
|
+
test/unit/bio/db/test_fasta.rb | 42 +++++++++++++++++++++++++++++++++++++++++-
|
1288
1368
|
2 files changed, 58 insertions(+), 1 deletion(-)
|
1289
1369
|
|
1290
1370
|
commit 888a70508c0392cae89021feba5c4a6a62228a11
|
@@ -1297,7 +1377,7 @@ Date: Fri Nov 14 15:08:35 2014 +0900
|
|
1297
1377
|
https://github.com/bioruby/bioruby/pull/93
|
1298
1378
|
(c4843d65447f6a434da523c9c313f34d025f36f8)
|
1299
1379
|
|
1300
|
-
lib/bio/sequence/compat.rb |
|
1380
|
+
lib/bio/sequence/compat.rb | 2 +-
|
1301
1381
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1302
1382
|
|
1303
1383
|
commit afc6df190109649e8eb11b2af1184ddfcf5327d3
|
@@ -1306,7 +1386,7 @@ Date: Fri Nov 14 14:29:42 2014 +0900
|
|
1306
1386
|
|
1307
1387
|
add documentation when gc_percent is not enough
|
1308
1388
|
|
1309
|
-
lib/bio/sequence/na.rb |
|
1389
|
+
lib/bio/sequence/na.rb | 8 ++++++++
|
1310
1390
|
1 file changed, 8 insertions(+)
|
1311
1391
|
|
1312
1392
|
commit bb63f67f2dfe6dba5c70ada033ca0cc1ecaa7783
|
@@ -1323,7 +1403,7 @@ Date: Thu Nov 13 21:43:00 2014 +0900
|
|
1323
1403
|
fix the issue https://github.com/bioruby/bioruby/issues/75.
|
1324
1404
|
Thanks to Paul Leader who reported the issue and the pull request.
|
1325
1405
|
|
1326
|
-
test/network/bio/io/test_pubmed.rb |
|
1406
|
+
test/network/bio/io/test_pubmed.rb | 49 ++++++++++++++++++++++++++++++++++++++
|
1327
1407
|
1 file changed, 49 insertions(+)
|
1328
1408
|
|
1329
1409
|
commit 74edba100da83c27f2edb7a9edc9ec98265a7cff
|
@@ -1338,7 +1418,7 @@ Date: Thu Nov 13 12:05:12 2014 +0900
|
|
1338
1418
|
excess traffic to NCBI.
|
1339
1419
|
* Update RDoc documentation
|
1340
1420
|
|
1341
|
-
lib/bio/io/ncbirest.rb |
|
1421
|
+
lib/bio/io/ncbirest.rb | 48 +++++++++++++++++++++++++++++++++++++++++++-----
|
1342
1422
|
1 file changed, 43 insertions(+), 5 deletions(-)
|
1343
1423
|
|
1344
1424
|
commit bfe4292c51bba5c4032027c36c35e98f28a9605a
|
@@ -1353,7 +1433,7 @@ Date: Thu Nov 13 11:54:53 2014 +0900
|
|
1353
1433
|
future. To indicate this, show warning message if $VERBOSE is true.
|
1354
1434
|
* Update RDoc documentation
|
1355
1435
|
|
1356
|
-
lib/bio/io/pubmed.rb |
|
1436
|
+
lib/bio/io/pubmed.rb | 157 +++++++++++++++++++++++++--------------------------
|
1357
1437
|
1 file changed, 76 insertions(+), 81 deletions(-)
|
1358
1438
|
|
1359
1439
|
commit d78173a6eb6d8177e733decc0b8137fac067aa82
|
@@ -1362,7 +1442,7 @@ Date: Tue Nov 11 17:41:32 2014 +0900
|
|
1362
1442
|
|
1363
1443
|
remove unused $Id:$ line
|
1364
1444
|
|
1365
|
-
bin/br_biofetch.rb |
|
1445
|
+
bin/br_biofetch.rb | 1 -
|
1366
1446
|
1 file changed, 1 deletion(-)
|
1367
1447
|
|
1368
1448
|
commit e29fc5fadbe0dae6528cf49637496dc2df3ec0dc
|
@@ -1377,7 +1457,7 @@ Date: Tue Nov 11 17:31:38 2014 +0900
|
|
1377
1457
|
exits with code 1 (abnormal exit).
|
1378
1458
|
* Usage message is also changed.
|
1379
1459
|
|
1380
|
-
bin/br_biofetch.rb |
|
1460
|
+
bin/br_biofetch.rb | 15 +++++++--------
|
1381
1461
|
1 file changed, 7 insertions(+), 8 deletions(-)
|
1382
1462
|
|
1383
1463
|
commit 94ecac33e87e444d9fe991340c2d8f3709bc6d90
|
@@ -1386,7 +1466,7 @@ Date: Tue Nov 11 17:19:30 2014 +0900
|
|
1386
1466
|
|
1387
1467
|
fix documentation reflecting recent changes of Bio::Fetch
|
1388
1468
|
|
1389
|
-
lib/bio/io/fetch.rb |
|
1469
|
+
lib/bio/io/fetch.rb | 33 ++++++++++++++++++++-------------
|
1390
1470
|
1 file changed, 20 insertions(+), 13 deletions(-)
|
1391
1471
|
|
1392
1472
|
commit 06a9db014614818ef35108928415ef18e8c8ae2c
|
@@ -1395,7 +1475,7 @@ Date: Tue Nov 11 16:41:26 2014 +0900
|
|
1395
1475
|
|
1396
1476
|
documentation about incompatible changes of Bio::Fetch
|
1397
1477
|
|
1398
|
-
RELEASE_NOTES.rdoc |
|
1478
|
+
RELEASE_NOTES.rdoc | 22 ++++++++++++++++++++++
|
1399
1479
|
1 file changed, 22 insertions(+)
|
1400
1480
|
|
1401
1481
|
commit 6d94e949b6d325f27b45b816a8305f828d049ec6
|
@@ -1409,7 +1489,7 @@ Date: Tue Nov 11 16:35:50 2014 +0900
|
|
1409
1489
|
* The BioRuby BioFetch server is deprecated. There is no hope to restart
|
1410
1490
|
the service again. EBI Dbfetch server is an alternative.
|
1411
1491
|
|
1412
|
-
KNOWN_ISSUES.rdoc |
|
1492
|
+
KNOWN_ISSUES.rdoc | 9 ---------
|
1413
1493
|
1 file changed, 9 deletions(-)
|
1414
1494
|
|
1415
1495
|
commit 699cd3ff136310a551d30e0ddd7fbe66e483b5be
|
@@ -1418,7 +1498,7 @@ Date: Tue Nov 11 15:27:11 2014 +0900
|
|
1418
1498
|
|
1419
1499
|
update RDoc documents for Bio::Fetch
|
1420
1500
|
|
1421
|
-
lib/bio/io/fetch.rb |
|
1501
|
+
lib/bio/io/fetch.rb | 61 +++++++++++++++++++++++++++++++++++------------------
|
1422
1502
|
1 file changed, 40 insertions(+), 21 deletions(-)
|
1423
1503
|
|
1424
1504
|
commit c7837f8e5ee2cc1c3085da74567a2b25280bbb8f
|
@@ -1433,7 +1513,7 @@ Date: Tue Nov 11 14:48:48 2014 +0900
|
|
1433
1513
|
* New class method: Bio::Fetch::EBI.query. This can be used as an
|
1434
1514
|
alternative method of deprecated Bio::Fetch.query method.
|
1435
1515
|
|
1436
|
-
lib/bio/io/fetch.rb |
|
1516
|
+
lib/bio/io/fetch.rb | 35 ++++++++++++++++++-----------------
|
1437
1517
|
1 file changed, 18 insertions(+), 17 deletions(-)
|
1438
1518
|
|
1439
1519
|
commit f9048684acaff0fcd00b458a946d5f692706325b
|
@@ -1450,7 +1530,7 @@ Date: Tue Nov 11 14:24:22 2014 +0900
|
|
1450
1530
|
Bio::Fetch.new(Bio::Fetch::EBI::URL) with default database name
|
1451
1531
|
"ena_sequence".
|
1452
1532
|
|
1453
|
-
lib/bio/io/fetch.rb |
|
1533
|
+
lib/bio/io/fetch.rb | 36 +++++++++++++++++++++++++++++++++---
|
1454
1534
|
1 file changed, 33 insertions(+), 3 deletions(-)
|
1455
1535
|
|
1456
1536
|
commit e8919f4f57fc545ca194bebb08c11159b36071cb
|
@@ -1459,7 +1539,7 @@ Date: Tue Nov 11 13:43:28 2014 +0900
|
|
1459
1539
|
|
1460
1540
|
removed unused variables
|
1461
1541
|
|
1462
|
-
lib/bio/io/fetch.rb |
|
1542
|
+
lib/bio/io/fetch.rb | 1 -
|
1463
1543
|
1 file changed, 1 deletion(-)
|
1464
1544
|
|
1465
1545
|
commit faec95656b846a7a17cd6a1dbc633dda63cb5b6e
|
@@ -1468,7 +1548,7 @@ Date: Tue Nov 11 11:44:00 2014 +0900
|
|
1468
1548
|
|
1469
1549
|
Updated URL of EMBL-EBI Dbfetch
|
1470
1550
|
|
1471
|
-
lib/bio/io/fetch.rb |
|
1551
|
+
lib/bio/io/fetch.rb | 2 +-
|
1472
1552
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1473
1553
|
|
1474
1554
|
commit 85be893655f68aafbf7e13badd20bf7f26cd7328
|
@@ -1479,7 +1559,7 @@ Date: Mon Dec 24 12:30:55 2012 -0400
|
|
1479
1559
|
|
1480
1560
|
Use EBI's dbfetch endpoint as default since BioRuby's endpoint has been disabled for a while now.
|
1481
1561
|
|
1482
|
-
lib/bio/io/fetch.rb |
|
1562
|
+
lib/bio/io/fetch.rb | 2 +-
|
1483
1563
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1484
1564
|
|
1485
1565
|
commit 163cc06547beed653e19b8c6e71e829d85f2f99c
|
@@ -1488,7 +1568,7 @@ Date: Tue Oct 21 16:42:30 2014 +0900
|
|
1488
1568
|
|
1489
1569
|
Doc bug fix: wrong sample code
|
1490
1570
|
|
1491
|
-
lib/bio/appl/paml/codeml.rb |
|
1571
|
+
lib/bio/appl/paml/codeml.rb | 4 ++--
|
1492
1572
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
1493
1573
|
|
1494
1574
|
commit 97143139d2d4a66366576a8e62518e93fa5afccf
|
@@ -1500,7 +1580,7 @@ Date: Tue Oct 21 15:47:52 2014 +0900
|
|
1500
1580
|
* Bio::Sequence::NA#gc_content, at_content, gc_skew, at_skew: Prevent to
|
1501
1581
|
repeat calculations of total bases.
|
1502
1582
|
|
1503
|
-
lib/bio/sequence/na.rb |
|
1583
|
+
lib/bio/sequence/na.rb | 20 ++++++++++++--------
|
1504
1584
|
1 file changed, 12 insertions(+), 8 deletions(-)
|
1505
1585
|
|
1506
1586
|
commit b5dbd882e000842fef65e10290b379bfafdddf06
|
@@ -1514,7 +1594,7 @@ Date: Tue Oct 21 15:41:13 2014 +0900
|
|
1514
1594
|
the treatment of "u" and to return 0.0 if there are no bases.
|
1515
1595
|
Reported by ctSkennerton (https://github.com/bioruby/bioruby/issues/73 ).
|
1516
1596
|
|
1517
|
-
lib/bio/sequence/na.rb |
|
1597
|
+
lib/bio/sequence/na.rb | 47 +++++++++++++++++++++++++++++++++++++++++++----
|
1518
1598
|
1 file changed, 43 insertions(+), 4 deletions(-)
|
1519
1599
|
|
1520
1600
|
commit 3ba98d52ce57488e604dd7ac388a874e5b40ae9d
|
@@ -1523,7 +1603,7 @@ Date: Tue Aug 12 00:58:38 2014 +0900
|
|
1523
1603
|
|
1524
1604
|
regenerate bioruby.gemspec with rake regemspec
|
1525
1605
|
|
1526
|
-
bioruby.gemspec |
|
1606
|
+
bioruby.gemspec | 14 ++++++--------
|
1527
1607
|
1 file changed, 6 insertions(+), 8 deletions(-)
|
1528
1608
|
|
1529
1609
|
commit a9724d339582952b40c928beccf91376d4e63315
|
@@ -1536,7 +1616,7 @@ Date: Tue Aug 5 19:20:42 2014 +0900
|
|
1536
1616
|
* Remove links to RubyForge and RAA which have already been closed.
|
1537
1617
|
* Add some words for Ruby 1.9 or later.
|
1538
1618
|
|
1539
|
-
README.rdoc |
|
1619
|
+
README.rdoc | 24 +++++++++++-------------
|
1540
1620
|
1 file changed, 11 insertions(+), 13 deletions(-)
|
1541
1621
|
|
1542
1622
|
commit 5f3569faaf89ebcd2b2cf9cbe6b3c1f0544b2679
|
@@ -1545,7 +1625,7 @@ Date: Wed Mar 5 02:11:07 2014 +0000
|
|
1545
1625
|
|
1546
1626
|
Refactor Bio::AminoAcid#weight: Early return clearer and idiomatic.
|
1547
1627
|
|
1548
|
-
lib/bio/data/aa.rb |
|
1628
|
+
lib/bio/data/aa.rb | 26 ++++++++++++--------------
|
1549
1629
|
1 file changed, 12 insertions(+), 14 deletions(-)
|
1550
1630
|
|
1551
1631
|
commit c229a20887fcb6df9a7ba49ad5a23e175056fa8d
|
@@ -1554,7 +1634,7 @@ Date: Wed Mar 5 02:02:45 2014 +0000
|
|
1554
1634
|
|
1555
1635
|
Fixed the stack level too deep errors by using Hash#invert.
|
1556
1636
|
|
1557
|
-
lib/bio/data/aa.rb |
|
1637
|
+
lib/bio/data/aa.rb | 18 +-----------------
|
1558
1638
|
1 file changed, 1 insertion(+), 17 deletions(-)
|
1559
1639
|
|
1560
1640
|
commit 08dd928df30f5b39c255f9f70dbed8410d395cdf
|
@@ -1563,7 +1643,7 @@ Date: Tue Mar 4 01:22:51 2014 +0000
|
|
1563
1643
|
|
1564
1644
|
Refactored to shorten, remove rescues, and clarify.
|
1565
1645
|
|
1566
|
-
lib/bio/alignment.rb |
|
1646
|
+
lib/bio/alignment.rb | 19 +++++++------------
|
1567
1647
|
1 file changed, 7 insertions(+), 12 deletions(-)
|
1568
1648
|
|
1569
1649
|
commit 112aa284cb1ebecc1d5de186edf2b385649a7268
|
@@ -1575,7 +1655,7 @@ Date: Wed Mar 19 14:48:32 2014 +0900
|
|
1575
1655
|
* Bug fix: SEQRES serNum digits were extended in PDB v3.2 (2008).
|
1576
1656
|
Thanks to a researcher who reports the patch via email.
|
1577
1657
|
|
1578
|
-
lib/bio/db/pdb/pdb.rb |
|
1658
|
+
lib/bio/db/pdb/pdb.rb | 4 ++--
|
1579
1659
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
1580
1660
|
|
1581
1661
|
commit ecd5e0c86b04aa918b71c859568425fa39ebbde5
|
@@ -1584,10 +1664,10 @@ Date: Sat Jan 18 04:22:51 2014 +0900
|
|
1584
1664
|
|
1585
1665
|
suppress "source :rubygems is deprecated" warning
|
1586
1666
|
|
1587
|
-
gemfiles/Gemfile.travis-jruby1.8 |
|
1588
|
-
gemfiles/Gemfile.travis-jruby1.9 |
|
1589
|
-
gemfiles/Gemfile.travis-ruby1.8 |
|
1590
|
-
gemfiles/Gemfile.travis-ruby1.9 |
|
1667
|
+
gemfiles/Gemfile.travis-jruby1.8 | 2 +-
|
1668
|
+
gemfiles/Gemfile.travis-jruby1.9 | 2 +-
|
1669
|
+
gemfiles/Gemfile.travis-ruby1.8 | 2 +-
|
1670
|
+
gemfiles/Gemfile.travis-ruby1.9 | 2 +-
|
1591
1671
|
4 files changed, 4 insertions(+), 4 deletions(-)
|
1592
1672
|
|
1593
1673
|
commit 4bda345fe3de9cf1b64c26f3dca1cb3727c946d0
|
@@ -1599,8 +1679,8 @@ Date: Sat Jan 18 04:22:03 2014 +0900
|
|
1599
1679
|
* gemfiles/Gemfile.travis-rbx: Gemfile for rbx (Rubinius) on Travis-ci
|
1600
1680
|
* .travis.yml is modified to use gemfile/Gemfile.travis-rbx for rbx.
|
1601
1681
|
|
1602
|
-
.travis.yml |
|
1603
|
-
gemfiles/Gemfile.travis-rbx |
|
1682
|
+
.travis.yml | 4 ++--
|
1683
|
+
gemfiles/Gemfile.travis-rbx | 16 ++++++++++++++++
|
1604
1684
|
2 files changed, 18 insertions(+), 2 deletions(-)
|
1605
1685
|
create mode 100644 gemfiles/Gemfile.travis-rbx
|
1606
1686
|
|
@@ -1610,7 +1690,7 @@ Date: Sat Jan 18 04:13:50 2014 +0900
|
|
1610
1690
|
|
1611
1691
|
.travis.yml: fix mistakes
|
1612
1692
|
|
1613
|
-
.travis.yml |
|
1693
|
+
.travis.yml | 8 +-------
|
1614
1694
|
1 file changed, 1 insertion(+), 7 deletions(-)
|
1615
1695
|
|
1616
1696
|
commit f0f67f295f05a5e1e30c479621c25498e2c8f6f2
|
@@ -1625,7 +1705,7 @@ Date: Sat Jan 18 03:56:54 2014 +0900
|
|
1625
1705
|
Note that the behavior change is also regarded as a bug in Ruby and
|
1626
1706
|
is fixed. (https://bugs.ruby-lang.org/issues/9340 )
|
1627
1707
|
|
1628
|
-
test/unit/bio/test_pathway.rb |
|
1708
|
+
test/unit/bio/test_pathway.rb | 35 +++++++++++++++++++++++++----------
|
1629
1709
|
1 file changed, 25 insertions(+), 10 deletions(-)
|
1630
1710
|
|
1631
1711
|
commit e92e09edf5904f51d3e73e61d13fce4159a543c5
|
@@ -1637,7 +1717,7 @@ Date: Sat Jan 18 03:32:05 2014 +0900
|
|
1637
1717
|
* workaround to avoid error in Ruby 1.8.7 and jruby-18mode
|
1638
1718
|
(reference: https://github.com/rubygems/rubygems/pull/763 )
|
1639
1719
|
|
1640
|
-
.travis.yml |
|
1720
|
+
.travis.yml | 2 ++
|
1641
1721
|
1 file changed, 2 insertions(+)
|
1642
1722
|
|
1643
1723
|
commit 655a675096962710896fb458afcac9b5deb1fa5f
|
@@ -1650,7 +1730,7 @@ Date: Sat Jan 18 03:22:44 2014 +0900
|
|
1650
1730
|
* add dependent gems for rbx platforms, described in
|
1651
1731
|
http://docs.travis-ci.com/user/languages/ruby/
|
1652
1732
|
|
1653
|
-
.travis.yml |
|
1733
|
+
.travis.yml | 7 ++++++-
|
1654
1734
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
1655
1735
|
|
1656
1736
|
commit d2f5b882d5e2acf35d0c783a56aa47533b9f2bd5
|
@@ -1664,7 +1744,7 @@ Date: Sat Jan 11 03:46:45 2014 +0900
|
|
1664
1744
|
* Add jruby-18mode
|
1665
1745
|
* Add rbx-2.1.1
|
1666
1746
|
|
1667
|
-
.travis.yml |
|
1747
|
+
.travis.yml | 32 ++++++++++++++++++++++----------
|
1668
1748
|
1 file changed, 22 insertions(+), 10 deletions(-)
|
1669
1749
|
|
1670
1750
|
commit 71991af394b937d35e2bbbc84a21e65ffba7714d
|
@@ -1681,7 +1761,7 @@ Date: Thu Jan 9 00:57:25 2014 +0900
|
|
1681
1761
|
* Remove "exclude" and simplify build matrix.
|
1682
1762
|
* Suggested by agrimm in https://github.com/bioruby/bioruby/pull/91
|
1683
1763
|
|
1684
|
-
.travis.yml |
|
1764
|
+
.travis.yml | 27 +++++----------------------
|
1685
1765
|
1 file changed, 5 insertions(+), 22 deletions(-)
|
1686
1766
|
|
1687
1767
|
commit 80966bc875cc6e01978b6c9272f6ddd8f344aa62
|
@@ -1693,7 +1773,7 @@ Date: Mon Dec 9 14:57:42 2013 +0100
|
|
1693
1773
|
* Bug fix: Only do gsub on bio_ref.reference.authors if it exists.
|
1694
1774
|
Fix https://github.com/bioruby/bioruby/issues/89
|
1695
1775
|
|
1696
|
-
lib/bio/db/biosql/sequence.rb |
|
1776
|
+
lib/bio/db/biosql/sequence.rb | 2 +-
|
1697
1777
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1698
1778
|
|
1699
1779
|
commit 3337bbd3be2affcef44202a0c924b3e22dafd856
|
@@ -1705,7 +1785,7 @@ Date: Mon Dec 9 14:55:24 2013 +0100
|
|
1705
1785
|
* Bug fix: Missing require when generating genbank output for BioSQL
|
1706
1786
|
sequence. Partly fix https://github.com/bioruby/bioruby/issues/89
|
1707
1787
|
|
1708
|
-
lib/bio/db/biosql/biosql_to_biosequence.rb |
|
1788
|
+
lib/bio/db/biosql/biosql_to_biosequence.rb | 1 +
|
1709
1789
|
1 file changed, 1 insertion(+)
|
1710
1790
|
|
1711
1791
|
commit 1f829ae8e8c89c5c24e7bc7aa8ed5fa25e8ef6c2
|
@@ -1717,7 +1797,7 @@ Date: Sat Nov 23 18:17:43 2013 +0900
|
|
1717
1797
|
* sample/benchmark_clustalw_report.rb: Benchmark parsing speed of
|
1718
1798
|
example1-seqnos.aln in addition to example1.aln.
|
1719
1799
|
|
1720
|
-
sample/benchmark_clustalw_report.rb |
|
1800
|
+
sample/benchmark_clustalw_report.rb | 28 ++++++++++++++++++++++------
|
1721
1801
|
1 file changed, 22 insertions(+), 6 deletions(-)
|
1722
1802
|
|
1723
1803
|
commit c5d3e761859fa72c18f9301d84c31070f35e733e
|
@@ -1726,7 +1806,7 @@ Date: Tue Sep 17 21:15:56 2013 +1000
|
|
1726
1806
|
|
1727
1807
|
Add benchmark script for Bio::ClustalW::Report.
|
1728
1808
|
|
1729
|
-
sample/benchmark_clustalw_report.rb |
|
1809
|
+
sample/benchmark_clustalw_report.rb | 31 +++++++++++++++++++++++++++++++
|
1730
1810
|
1 file changed, 31 insertions(+)
|
1731
1811
|
create mode 100644 sample/benchmark_clustalw_report.rb
|
1732
1812
|
|
@@ -1742,7 +1822,7 @@ Date: Sat Nov 23 17:49:54 2013 +0900
|
|
1742
1822
|
* "$" in the regular expression is changed to "\z". In this context,
|
1743
1823
|
the "$" was intended to be matched with only the end of the string.
|
1744
1824
|
|
1745
|
-
lib/bio/appl/clustalw/report.rb |
|
1825
|
+
lib/bio/appl/clustalw/report.rb | 4 +++-
|
1746
1826
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
1747
1827
|
|
1748
1828
|
commit 6a78028d4f595ecb5b4600d0f238b07a2d80bdd5
|
@@ -1756,8 +1836,8 @@ Date: Sat Nov 23 15:52:15 2013 +0900
|
|
1756
1836
|
* Bio::TestClustalWReport::TestClustalWReportSeqnos: new test class
|
1757
1837
|
that parses the above data.
|
1758
1838
|
|
1759
|
-
test/data/clustalw/example1-seqnos.aln |
|
1760
|
-
test/unit/bio/appl/clustalw/test_report.rb |
|
1839
|
+
test/data/clustalw/example1-seqnos.aln | 58 ++++++++++++++++++++++++++++++
|
1840
|
+
test/unit/bio/appl/clustalw/test_report.rb | 11 ++++++
|
1761
1841
|
2 files changed, 69 insertions(+)
|
1762
1842
|
create mode 100644 test/data/clustalw/example1-seqnos.aln
|
1763
1843
|
|
@@ -1771,7 +1851,7 @@ Date: Sat Nov 23 15:35:31 2013 +0900
|
|
1771
1851
|
filename path.
|
1772
1852
|
* Modify indentes and void lines.
|
1773
1853
|
|
1774
|
-
test/unit/bio/appl/clustalw/test_report.rb |
|
1854
|
+
test/unit/bio/appl/clustalw/test_report.rb | 10 +++-------
|
1775
1855
|
1 file changed, 3 insertions(+), 7 deletions(-)
|
1776
1856
|
|
1777
1857
|
commit 8f0bea1d3252d0de9e2d91dc31ef8a9552c2d758
|
@@ -1786,7 +1866,7 @@ Date: Sat Nov 23 15:21:38 2013 +0900
|
|
1786
1866
|
* The test_sequences method is split into two methods
|
1787
1867
|
CommonTestMethods#test_sequence0 and test_sequence1.
|
1788
1868
|
|
1789
|
-
test/unit/bio/appl/clustalw/test_report.rb |
|
1869
|
+
test/unit/bio/appl/clustalw/test_report.rb | 97 ++++++++++++++++--------------
|
1790
1870
|
1 file changed, 53 insertions(+), 44 deletions(-)
|
1791
1871
|
|
1792
1872
|
commit edda65b8fb32c2eee6b0652074981c31aa68b0eb
|
@@ -1799,7 +1879,7 @@ Date: Fri Aug 23 23:51:59 2013 +0900
|
|
1799
1879
|
error. Thanks to nieder (github.com/nieder) who reports the bug.
|
1800
1880
|
(https://github.com/bioruby/bioruby/issues/84)
|
1801
1881
|
|
1802
|
-
test/unit/bio/db/test_phyloxml.rb |
|
1882
|
+
test/unit/bio/db/test_phyloxml.rb | 2 +-
|
1803
1883
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1804
1884
|
|
1805
1885
|
commit 011d6fe5f016408891c5da3143c83e2564ccbf27
|
@@ -1814,8 +1894,8 @@ Date: Fri Apr 5 01:13:27 2013 +0900
|
|
1814
1894
|
* Returns 'false' for non-functional siRNA, as usual.
|
1815
1895
|
* Unit tests are modified to reflect these changes.
|
1816
1896
|
|
1817
|
-
lib/bio/util/sirna.rb |
|
1818
|
-
test/unit/bio/util/test_sirna.rb |
|
1897
|
+
lib/bio/util/sirna.rb | 92 +++++++++++++++++++++++++++++++++-------
|
1898
|
+
test/unit/bio/util/test_sirna.rb | 44 +++++++++----------
|
1819
1899
|
2 files changed, 98 insertions(+), 38 deletions(-)
|
1820
1900
|
|
1821
1901
|
commit b6e7953108ebf34d61bc79ee4bdae1092cfe339f
|
@@ -1827,7 +1907,7 @@ Date: Fri Jun 28 15:40:57 2013 +0900
|
|
1827
1907
|
* Use Bio::UniProtKB instead of Bio::UniProt.
|
1828
1908
|
* Test class names are also changed from UniProt to UniProtKB.
|
1829
1909
|
|
1830
|
-
test/unit/bio/db/embl/test_uniprotkb_new_part.rb |
|
1910
|
+
test/unit/bio/db/embl/test_uniprotkb_new_part.rb | 22 +++++++++++-----------
|
1831
1911
|
1 file changed, 11 insertions(+), 11 deletions(-)
|
1832
1912
|
|
1833
1913
|
commit cddd35cf8d64abfff8bd6a8372d019fc4c32848c
|
@@ -1836,8 +1916,8 @@ Date: Fri Jun 28 15:26:20 2013 +0900
|
|
1836
1916
|
|
1837
1917
|
rename test/unit/bio/db/embl/test_uniprot_new_part.rb to test_uniprotkb_new_part.rb
|
1838
1918
|
|
1839
|
-
test/unit/bio/db/embl/test_uniprot_new_part.rb |
|
1840
|
-
test/unit/bio/db/embl/test_uniprotkb_new_part.rb |
|
1919
|
+
test/unit/bio/db/embl/test_uniprot_new_part.rb | 208 -----------------------
|
1920
|
+
test/unit/bio/db/embl/test_uniprotkb_new_part.rb | 208 +++++++++++++++++++++++
|
1841
1921
|
2 files changed, 208 insertions(+), 208 deletions(-)
|
1842
1922
|
delete mode 100644 test/unit/bio/db/embl/test_uniprot_new_part.rb
|
1843
1923
|
create mode 100644 test/unit/bio/db/embl/test_uniprotkb_new_part.rb
|
@@ -1851,7 +1931,7 @@ Date: Fri Jun 28 15:21:36 2013 +0900
|
|
1851
1931
|
* Reflect the rename of Bio::UniProtKB from SPTR to UniProtKB.
|
1852
1932
|
* Test class names are also changed.
|
1853
1933
|
|
1854
|
-
test/unit/bio/db/embl/test_uniprotkb.rb |
|
1934
|
+
test/unit/bio/db/embl/test_uniprotkb.rb | 223 ++++++++++++++++----------------
|
1855
1935
|
1 file changed, 111 insertions(+), 112 deletions(-)
|
1856
1936
|
|
1857
1937
|
commit 68494aa862c3495def713e6cad6fc478f223416f
|
@@ -1872,7 +1952,7 @@ Date: Fri Jun 28 14:52:08 2013 +0900
|
|
1872
1952
|
|
1873
1953
|
Add autoload of Bio::UniProtKB, and modify comments of deprecated classes.
|
1874
1954
|
|
1875
|
-
lib/bio.rb |
|
1955
|
+
lib/bio.rb | 18 ++++++++++--------
|
1876
1956
|
1 file changed, 10 insertions(+), 8 deletions(-)
|
1877
1957
|
|
1878
1958
|
commit 7c78cb1b275a845e215f9a6da67026836efc5807
|
@@ -1884,8 +1964,8 @@ Date: Fri Jun 28 14:28:02 2013 +0900
|
|
1884
1964
|
* Bio::SwissProt and Bio::TrEMBL are deprecated.
|
1885
1965
|
* Show warning messages when using these classes.
|
1886
1966
|
|
1887
|
-
lib/bio/db/embl/swissprot.rb |
|
1888
|
-
lib/bio/db/embl/trembl.rb |
|
1967
|
+
lib/bio/db/embl/swissprot.rb | 41 ++++++++++++-----------------------------
|
1968
|
+
lib/bio/db/embl/trembl.rb | 43 +++++++++++++------------------------------
|
1889
1969
|
2 files changed, 25 insertions(+), 59 deletions(-)
|
1890
1970
|
|
1891
1971
|
commit b998ad13849ff7f1d69ed0c640a2e1bafe3fc957
|
@@ -1894,7 +1974,7 @@ Date: Fri Jun 28 14:27:36 2013 +0900
|
|
1894
1974
|
|
1895
1975
|
Bio::UniProt is changed to be an alias of Bio::UniProtKB.
|
1896
1976
|
|
1897
|
-
lib/bio/db/embl/uniprot.rb |
|
1977
|
+
lib/bio/db/embl/uniprot.rb | 41 ++++++++++++-----------------------------
|
1898
1978
|
1 file changed, 12 insertions(+), 29 deletions(-)
|
1899
1979
|
|
1900
1980
|
commit f46324e2fb6a2bc3e4680c8064dc0fc3d89e6f24
|
@@ -1907,8 +1987,8 @@ Date: Fri Jun 28 14:21:56 2013 +0900
|
|
1907
1987
|
* For older programs which use Bio::SPTR, set Bio::SPTR as an alias of
|
1908
1988
|
Bio::UniProtKB.
|
1909
1989
|
|
1910
|
-
lib/bio/db/embl/sptr.rb |
|
1911
|
-
lib/bio/db/embl/uniprotkb.rb |
|
1990
|
+
lib/bio/db/embl/sptr.rb | 20 ++++++
|
1991
|
+
lib/bio/db/embl/uniprotkb.rb | 147 +++++++++++++++++++++----------------------
|
1912
1992
|
2 files changed, 93 insertions(+), 74 deletions(-)
|
1913
1993
|
create mode 100644 lib/bio/db/embl/sptr.rb
|
1914
1994
|
|
@@ -1937,8 +2017,8 @@ Date: Thu Jun 27 16:36:58 2013 +0900
|
|
1937
2017
|
* Changed to require genbank.rb only when GenBank is not defined.
|
1938
2018
|
This might reduce the possibility of circular require.
|
1939
2019
|
|
1940
|
-
lib/bio/db/genbank/ddbj.rb |
|
1941
|
-
lib/bio/db/genbank/refseq.rb |
|
2020
|
+
lib/bio/db/genbank/ddbj.rb | 11 +++++++++--
|
2021
|
+
lib/bio/db/genbank/refseq.rb | 14 +++++++++++---
|
1942
2022
|
2 files changed, 20 insertions(+), 5 deletions(-)
|
1943
2023
|
|
1944
2024
|
commit 118d0bff58b48f69505eef5dcc2f961ac6e0d9de
|
@@ -1947,7 +2027,7 @@ Date: Thu Jun 27 16:08:55 2013 +0900
|
|
1947
2027
|
|
1948
2028
|
Remove descriptions about DDBJ Web API (WABI)
|
1949
2029
|
|
1950
|
-
KNOWN_ISSUES.rdoc |
|
2030
|
+
KNOWN_ISSUES.rdoc | 8 --------
|
1951
2031
|
1 file changed, 8 deletions(-)
|
1952
2032
|
|
1953
2033
|
commit fe8f976c7ced4d525a4eabd728269f71326cf001
|
@@ -1956,7 +2036,7 @@ Date: Thu Jun 27 13:41:19 2013 +0900
|
|
1956
2036
|
|
1957
2037
|
Remove ddbjsoap method that uses Bio::DDBJ::XML
|
1958
2038
|
|
1959
|
-
lib/bio/shell/plugin/soap.rb |
|
2039
|
+
lib/bio/shell/plugin/soap.rb | 28 ----------------------------
|
1960
2040
|
1 file changed, 28 deletions(-)
|
1961
2041
|
|
1962
2042
|
commit 54bef3fc48bb48eb198537a9fba6379f33f036cc
|
@@ -1965,7 +2045,7 @@ Date: Thu Jun 27 13:39:42 2013 +0900
|
|
1965
2045
|
|
1966
2046
|
Remove Bio::Blast::Remote::DDBJ from the comment line
|
1967
2047
|
|
1968
|
-
test/network/bio/appl/blast/test_remote.rb |
|
2048
|
+
test/network/bio/appl/blast/test_remote.rb | 2 +-
|
1969
2049
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
1970
2050
|
|
1971
2051
|
commit a7c5a656dab1bb8ada6b36ec003a89aec9e26671
|
@@ -1974,7 +2054,7 @@ Date: Tue Jun 25 18:34:46 2013 +0900
|
|
1974
2054
|
|
1975
2055
|
Delete sample/demo_ddbjxml.rb which uses Bio::DDBJ::XML
|
1976
2056
|
|
1977
|
-
sample/demo_ddbjxml.rb |
|
2057
|
+
sample/demo_ddbjxml.rb | 212 -------------------------------------------------
|
1978
2058
|
1 file changed, 212 deletions(-)
|
1979
2059
|
delete mode 100644 sample/demo_ddbjxml.rb
|
1980
2060
|
|
@@ -1987,10 +2067,10 @@ Date: Tue Jun 25 18:29:54 2013 +0900
|
|
1987
2067
|
* Remove Bio::Blast::Remote::DDBJ, Bio::Blast.ddbj and related components
|
1988
2068
|
which use Bio::DDBJ::XML or Bio::DDBJ::REST.
|
1989
2069
|
|
1990
|
-
lib/bio/appl/blast/ddbj.rb |
|
1991
|
-
lib/bio/appl/blast/remote.rb |
|
1992
|
-
test/network/bio/appl/blast/test_remote.rb |
|
1993
|
-
test/network/bio/appl/test_blast.rb |
|
2070
|
+
lib/bio/appl/blast/ddbj.rb | 131 -----------------------------
|
2071
|
+
lib/bio/appl/blast/remote.rb | 9 --
|
2072
|
+
test/network/bio/appl/blast/test_remote.rb | 14 ---
|
2073
|
+
test/network/bio/appl/test_blast.rb | 12 ---
|
1994
2074
|
4 files changed, 166 deletions(-)
|
1995
2075
|
delete mode 100644 lib/bio/appl/blast/ddbj.rb
|
1996
2076
|
|
@@ -2008,11 +2088,11 @@ Date: Tue Jun 25 16:52:05 2013 +0900
|
|
2008
2088
|
* Autoload lines in lib/bio/db/genbank/ddbj.rb are removed.
|
2009
2089
|
* Tests are also removed.
|
2010
2090
|
|
2011
|
-
lib/bio/db/genbank/ddbj.rb |
|
2012
|
-
lib/bio/io/ddbjrest.rb |
|
2013
|
-
lib/bio/io/ddbjxml.rb |
|
2014
|
-
test/network/bio/io/test_ddbjrest.rb |
|
2015
|
-
test/unit/bio/io/test_ddbjxml.rb |
|
2091
|
+
lib/bio/db/genbank/ddbj.rb | 3 -
|
2092
|
+
lib/bio/io/ddbjrest.rb | 344 --------------------------
|
2093
|
+
lib/bio/io/ddbjxml.rb | 458 -----------------------------------
|
2094
|
+
test/network/bio/io/test_ddbjrest.rb | 47 ----
|
2095
|
+
test/unit/bio/io/test_ddbjxml.rb | 81 -------
|
2016
2096
|
5 files changed, 933 deletions(-)
|
2017
2097
|
delete mode 100644 lib/bio/io/ddbjrest.rb
|
2018
2098
|
delete mode 100644 lib/bio/io/ddbjxml.rb
|
@@ -2025,7 +2105,7 @@ Date: Sat May 25 03:00:08 2013 +0900
|
|
2025
2105
|
|
2026
2106
|
regenerate bioruby.gemspec with rake regemspec
|
2027
2107
|
|
2028
|
-
bioruby.gemspec |
|
2108
|
+
bioruby.gemspec | 2 --
|
2029
2109
|
1 file changed, 2 deletions(-)
|
2030
2110
|
|
2031
2111
|
commit 5b90959ab399f961823a7c4453392c75cf971333
|
@@ -2034,7 +2114,7 @@ Date: Sat May 25 02:58:50 2013 +0900
|
|
2034
2114
|
|
2035
2115
|
Update files and directories used to create package without git
|
2036
2116
|
|
2037
|
-
bioruby.gemspec.erb |
|
2117
|
+
bioruby.gemspec.erb | 6 ++++--
|
2038
2118
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
2039
2119
|
|
2040
2120
|
commit df29f057ded6ac73fbdce7ae04a70ead28f4cc9f
|
@@ -2047,7 +2127,7 @@ Date: Sat May 25 02:46:32 2013 +0900
|
|
2047
2127
|
Because ChangeLog is not rdoc format, rdoc bundled with Ruby 2.0
|
2048
2128
|
raises error during parsing.
|
2049
2129
|
|
2050
|
-
bioruby.gemspec.erb |
|
2130
|
+
bioruby.gemspec.erb | 4 ++--
|
2051
2131
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
2052
2132
|
|
2053
2133
|
commit 930a5fcf5e38ae2bdfeee62eed9a46db1c519fae
|
@@ -2060,7 +2140,7 @@ Date: Thu Apr 4 17:29:33 2013 +0900
|
|
2060
2140
|
|
2061
2141
|
* warning: assigned but unused variable
|
2062
2142
|
|
2063
|
-
lib/bio/util/contingency_table.rb |
|
2143
|
+
lib/bio/util/contingency_table.rb | 2 --
|
2064
2144
|
1 file changed, 2 deletions(-)
|
2065
2145
|
|
2066
2146
|
commit 490b3f7ca3b987c1a17852b641aad3125fc565cd
|
@@ -2073,7 +2153,7 @@ Date: Thu Apr 4 17:28:30 2013 +0900
|
|
2073
2153
|
|
2074
2154
|
* warning: assigned but unused variable
|
2075
2155
|
|
2076
|
-
lib/bio/tree.rb |
|
2156
|
+
lib/bio/tree.rb | 4 ++--
|
2077
2157
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
2078
2158
|
|
2079
2159
|
commit c024fb972edb52e213165149273fc7ac4bec2f6e
|
@@ -2082,7 +2162,7 @@ Date: Thu May 16 21:26:44 2013 +0900
|
|
2082
2162
|
|
2083
2163
|
Refactoring to suppress "warning: assigned but unused variable"
|
2084
2164
|
|
2085
|
-
lib/bio/pathway.rb |
|
2165
|
+
lib/bio/pathway.rb | 2 +-
|
2086
2166
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2087
2167
|
|
2088
2168
|
commit b3b2a268d6118307eed88fce1d805a61c6fb843d
|
@@ -2095,7 +2175,7 @@ Date: Thu Apr 4 17:18:44 2013 +0900
|
|
2095
2175
|
|
2096
2176
|
* warning: assigned but unused variable
|
2097
2177
|
|
2098
|
-
lib/bio/db/transfac.rb |
|
2178
|
+
lib/bio/db/transfac.rb | 2 +-
|
2099
2179
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2100
2180
|
|
2101
2181
|
commit dd8abf1f95af4a70cf0b86b0e719e3dcfd8abecf
|
@@ -2104,7 +2184,7 @@ Date: Thu May 16 21:13:34 2013 +0900
|
|
2104
2184
|
|
2105
2185
|
Refactoring to suppress warnings "assigned but unused variable"
|
2106
2186
|
|
2107
|
-
lib/bio/db/nexus.rb |
|
2187
|
+
lib/bio/db/nexus.rb | 5 +++--
|
2108
2188
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
2109
2189
|
|
2110
2190
|
commit b37512fb8028cf30bb2f813928aed49a5b39dce3
|
@@ -2117,7 +2197,7 @@ Date: Thu Apr 4 17:15:59 2013 +0900
|
|
2117
2197
|
|
2118
2198
|
* warning: assigned but unused variable
|
2119
2199
|
|
2120
|
-
lib/bio/db/kegg/reaction.rb |
|
2200
|
+
lib/bio/db/kegg/reaction.rb | 2 +-
|
2121
2201
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2122
2202
|
|
2123
2203
|
commit a81fca3b1247ae4a3e05bfa912c8181efdfca81b
|
@@ -2130,7 +2210,7 @@ Date: Thu Apr 4 17:15:09 2013 +0900
|
|
2130
2210
|
|
2131
2211
|
* warning: assigned but unused variable
|
2132
2212
|
|
2133
|
-
lib/bio/db/go.rb |
|
2213
|
+
lib/bio/db/go.rb | 6 +++---
|
2134
2214
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
2135
2215
|
|
2136
2216
|
commit 69b0c433e76faffba6a48dfc38dcc2b1444ce2b7
|
@@ -2143,7 +2223,7 @@ Date: Thu Apr 4 17:13:24 2013 +0900
|
|
2143
2223
|
|
2144
2224
|
* warning: assigned but unused variable
|
2145
2225
|
|
2146
|
-
lib/bio/db/gff.rb |
|
2226
|
+
lib/bio/db/gff.rb | 2 +-
|
2147
2227
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2148
2228
|
|
2149
2229
|
commit 88c214fe3183c161cda94a3a4cda442b3a769965
|
@@ -2152,7 +2232,7 @@ Date: Thu May 9 23:46:28 2013 +0900
|
|
2152
2232
|
|
2153
2233
|
add a dummy line to suppress "warning: assigned but unused variable"
|
2154
2234
|
|
2155
|
-
lib/bio/db/embl/sptr.rb |
|
2235
|
+
lib/bio/db/embl/sptr.rb | 1 +
|
2156
2236
|
1 file changed, 1 insertion(+)
|
2157
2237
|
|
2158
2238
|
commit 1ead12f9c951a983c6775f79ca1b6944f95a61b9
|
@@ -2161,7 +2241,7 @@ Date: Thu May 9 23:41:54 2013 +0900
|
|
2161
2241
|
|
2162
2242
|
Refactoring to suppress warnings "assigned but unused variable"
|
2163
2243
|
|
2164
|
-
lib/bio/db/embl/embl.rb |
|
2244
|
+
lib/bio/db/embl/embl.rb | 7 ++++---
|
2165
2245
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
2166
2246
|
|
2167
2247
|
commit 8d0eb5105eb2f419f5b4f4fbb191b8fb2032664b
|
@@ -2174,7 +2254,7 @@ Date: Thu Apr 4 17:01:27 2013 +0900
|
|
2174
2254
|
|
2175
2255
|
* warning: assigned but unused variable
|
2176
2256
|
|
2177
|
-
lib/bio/appl/paml/common.rb |
|
2257
|
+
lib/bio/appl/paml/common.rb | 2 +-
|
2178
2258
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2179
2259
|
|
2180
2260
|
commit c6cf0d2e2a3a0b9062f9464dba0e363f460d04e4
|
@@ -2183,7 +2263,7 @@ Date: Thu May 9 23:27:54 2013 +0900
|
|
2183
2263
|
|
2184
2264
|
suppress warning "assigned but unused variable"
|
2185
2265
|
|
2186
|
-
lib/bio/appl/paml/codeml/report.rb |
|
2266
|
+
lib/bio/appl/paml/codeml/report.rb | 1 +
|
2187
2267
|
1 file changed, 1 insertion(+)
|
2188
2268
|
|
2189
2269
|
commit 8834d50544b03a92a3ca816704b179e4333d1dfc
|
@@ -2196,7 +2276,7 @@ Date: Thu Apr 4 16:59:18 2013 +0900
|
|
2196
2276
|
|
2197
2277
|
* warning: assigned but unused variable
|
2198
2278
|
|
2199
|
-
lib/bio/appl/meme/mast/report.rb |
|
2279
|
+
lib/bio/appl/meme/mast/report.rb | 2 +-
|
2200
2280
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2201
2281
|
|
2202
2282
|
commit fe51a49ee68c41a3ce0c48c39db6e8a28d1689ee
|
@@ -2209,7 +2289,7 @@ Date: Thu Apr 4 16:57:44 2013 +0900
|
|
2209
2289
|
|
2210
2290
|
* warning: assigned but unused variable
|
2211
2291
|
|
2212
|
-
lib/bio/appl/blast/report.rb |
|
2292
|
+
lib/bio/appl/blast/report.rb | 2 +-
|
2213
2293
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2214
2294
|
|
2215
2295
|
commit 622497ff309412fb986c5315d55d41c3ca48d362
|
@@ -2222,7 +2302,7 @@ Date: Thu Apr 4 17:25:29 2013 +0900
|
|
2222
2302
|
|
2223
2303
|
* warning: mismatched indentations at ...
|
2224
2304
|
|
2225
|
-
lib/bio/map.rb |
|
2305
|
+
lib/bio/map.rb | 2 +-
|
2226
2306
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2227
2307
|
|
2228
2308
|
commit 3ea6bcaf229fd1a71a0192253cc47e817bb64b82
|
@@ -2235,7 +2315,7 @@ Date: Thu Apr 4 18:05:04 2013 +0900
|
|
2235
2315
|
|
2236
2316
|
* warning: assigned but unused variable
|
2237
2317
|
|
2238
|
-
test/unit/bio/appl/blast/test_report.rb |
|
2318
|
+
test/unit/bio/appl/blast/test_report.rb | 2 --
|
2239
2319
|
1 file changed, 2 deletions(-)
|
2240
2320
|
|
2241
2321
|
commit 178ca9e5244cc3aa7f0507c7d5528bb57b0858be
|
@@ -2248,7 +2328,7 @@ Date: Thu Apr 4 18:03:46 2013 +0900
|
|
2248
2328
|
|
2249
2329
|
* warning: assigned but unused variable
|
2250
2330
|
|
2251
|
-
test/unit/bio/appl/bl2seq/test_report.rb |
|
2331
|
+
test/unit/bio/appl/bl2seq/test_report.rb | 1 -
|
2252
2332
|
1 file changed, 1 deletion(-)
|
2253
2333
|
|
2254
2334
|
commit b8a5c1cb9f54d9199200b406f77e8152eef96f02
|
@@ -2261,7 +2341,7 @@ Date: Thu May 9 21:20:10 2013 +0900
|
|
2261
2341
|
and reverse_complement methods. This change also aims to suppress
|
2262
2342
|
"assigned but unused variable" warnings.
|
2263
2343
|
|
2264
|
-
test/unit/bio/sequence/test_na.rb |
|
2344
|
+
test/unit/bio/sequence/test_na.rb | 4 +++-
|
2265
2345
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
2266
2346
|
|
2267
2347
|
commit bd8fc9b197c54c108d74fea9161c8f0dd3b041fc
|
@@ -2274,7 +2354,7 @@ Date: Thu Apr 4 17:59:09 2013 +0900
|
|
2274
2354
|
|
2275
2355
|
* warning: assigned but unused variable
|
2276
2356
|
|
2277
|
-
test/unit/bio/io/flatfile/test_splitter.rb |
|
2357
|
+
test/unit/bio/io/flatfile/test_splitter.rb | 2 +-
|
2278
2358
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2279
2359
|
|
2280
2360
|
commit 0a87c9e265c4560453faf84fc009b60319c75416
|
@@ -2287,7 +2367,7 @@ Date: Thu Apr 4 17:57:51 2013 +0900
|
|
2287
2367
|
|
2288
2368
|
* warning: assigned but unused variable
|
2289
2369
|
|
2290
|
-
test/unit/bio/db/test_phyloxml_writer.rb |
|
2370
|
+
test/unit/bio/db/test_phyloxml_writer.rb | 4 ++--
|
2291
2371
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
2292
2372
|
|
2293
2373
|
commit 95b2614eb32eb12428df29360d0c1f146f39a469
|
@@ -2296,7 +2376,7 @@ Date: Thu May 9 20:56:43 2013 +0900
|
|
2296
2376
|
|
2297
2377
|
Comment out some lines to suppress "unused variable" warnings
|
2298
2378
|
|
2299
|
-
test/unit/bio/db/test_gff.rb |
|
2379
|
+
test/unit/bio/db/test_gff.rb | 4 ++--
|
2300
2380
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
2301
2381
|
|
2302
2382
|
commit b8917841559fbd506c73fdf374a8097f23a1bc37
|
@@ -2309,7 +2389,7 @@ Date: Thu Apr 4 17:51:11 2013 +0900
|
|
2309
2389
|
* Note that the sequence in TestSPTRUniProtRel7_6#test_10000aa is
|
2310
2390
|
a fragment of human p53 protein, and is not related with Q09165.
|
2311
2391
|
|
2312
|
-
test/unit/bio/db/embl/test_sptr.rb |
|
2392
|
+
test/unit/bio/db/embl/test_sptr.rb | 3 ---
|
2313
2393
|
1 file changed, 3 deletions(-)
|
2314
2394
|
|
2315
2395
|
commit 6b46d324a545f509bbd238ae7ec009d586469314
|
@@ -2322,7 +2402,7 @@ Date: Thu Apr 4 17:45:47 2013 +0900
|
|
2322
2402
|
|
2323
2403
|
* warning: assigned but unused variable
|
2324
2404
|
|
2325
|
-
test/unit/bio/db/embl/test_embl_rel89.rb |
|
2405
|
+
test/unit/bio/db/embl/test_embl_rel89.rb | 1 -
|
2326
2406
|
1 file changed, 1 deletion(-)
|
2327
2407
|
|
2328
2408
|
commit f36eeb0107e7a8315c66888ec8292ed33bd959cc
|
@@ -2335,7 +2415,7 @@ Date: Thu Apr 4 17:45:21 2013 +0900
|
|
2335
2415
|
|
2336
2416
|
* warning: assigned but unused variable
|
2337
2417
|
|
2338
|
-
test/unit/bio/db/embl/test_embl.rb |
|
2418
|
+
test/unit/bio/db/embl/test_embl.rb | 1 -
|
2339
2419
|
1 file changed, 1 deletion(-)
|
2340
2420
|
|
2341
2421
|
commit a1a2ad9b963d9bb2da8d07ae7b182bd339bea88e
|
@@ -2348,7 +2428,7 @@ Date: Thu Apr 4 17:36:59 2013 +0900
|
|
2348
2428
|
|
2349
2429
|
* warning: mismatched indentations at ...
|
2350
2430
|
|
2351
|
-
test/unit/bio/sequence/test_dblink.rb |
|
2431
|
+
test/unit/bio/sequence/test_dblink.rb | 2 +-
|
2352
2432
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2353
2433
|
|
2354
2434
|
commit 345a8eb4408ca241c13c410a578490c905eb7391
|
@@ -2361,7 +2441,7 @@ Date: Thu Apr 4 17:36:21 2013 +0900
|
|
2361
2441
|
|
2362
2442
|
* warning: mismatched indentations at ...
|
2363
2443
|
|
2364
|
-
test/unit/bio/db/test_phyloxml.rb |
|
2444
|
+
test/unit/bio/db/test_phyloxml.rb | 58 +++++++++++++++++++--------------------
|
2365
2445
|
1 file changed, 29 insertions(+), 29 deletions(-)
|
2366
2446
|
|
2367
2447
|
commit ae8c7a6705a30c0c18c57df9869979a968aa63ac
|
@@ -2374,7 +2454,7 @@ Date: Thu Apr 4 17:35:07 2013 +0900
|
|
2374
2454
|
|
2375
2455
|
* warning: mismatched indentations at ...
|
2376
2456
|
|
2377
|
-
test/unit/bio/db/genbank/test_genbank.rb |
|
2457
|
+
test/unit/bio/db/genbank/test_genbank.rb | 2 +-
|
2378
2458
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2379
2459
|
|
2380
2460
|
commit 872d8954e1351251fbace20e331035251ae5f806
|
@@ -2387,7 +2467,7 @@ Date: Thu Apr 4 17:33:23 2013 +0900
|
|
2387
2467
|
|
2388
2468
|
* warning: mismatched indentations at ...
|
2389
2469
|
|
2390
|
-
test/unit/bio/appl/test_blast.rb |
|
2470
|
+
test/unit/bio/appl/test_blast.rb | 4 ++--
|
2391
2471
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
2392
2472
|
|
2393
2473
|
commit bd973e084695c4d777c8ecf6d566788838158165
|
@@ -2396,7 +2476,7 @@ Date: Wed Mar 27 03:03:49 2013 +0900
|
|
2396
2476
|
|
2397
2477
|
.travis.yml: rbx-18mode is moved to allow_failures
|
2398
2478
|
|
2399
|
-
.travis.yml |
|
2479
|
+
.travis.yml | 8 +++++---
|
2400
2480
|
1 file changed, 5 insertions(+), 3 deletions(-)
|
2401
2481
|
|
2402
2482
|
commit 63e93faba74a8143a0be9595fdf87329f3015745
|
@@ -2405,7 +2485,7 @@ Date: Tue Mar 26 20:20:11 2013 +1100
|
|
2405
2485
|
|
2406
2486
|
Squash warning in alignment.rb: assigned but unused variable - oldkeys
|
2407
2487
|
|
2408
|
-
lib/bio/alignment.rb |
|
2488
|
+
lib/bio/alignment.rb | 1 -
|
2409
2489
|
1 file changed, 1 deletion(-)
|
2410
2490
|
|
2411
2491
|
commit bd735d6f9d6edfd1550a4279167ac06b372f847a
|
@@ -2414,7 +2494,7 @@ Date: Tue Mar 26 20:14:46 2013 +1100
|
|
2414
2494
|
|
2415
2495
|
Squash warning in alignment.rb: assigned but unused variable - lines
|
2416
2496
|
|
2417
|
-
lib/bio/alignment.rb |
|
2497
|
+
lib/bio/alignment.rb | 2 +-
|
2418
2498
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2419
2499
|
|
2420
2500
|
commit 3e7b27f96a901a3abfc338572f98d60a9e3be498
|
@@ -2423,7 +2503,7 @@ Date: Tue Mar 26 19:44:49 2013 +1100
|
|
2423
2503
|
|
2424
2504
|
Squash warning in defline.rb: assigned but unused variable - idtype
|
2425
2505
|
|
2426
|
-
lib/bio/db/fasta/defline.rb |
|
2506
|
+
lib/bio/db/fasta/defline.rb | 1 -
|
2427
2507
|
1 file changed, 1 deletion(-)
|
2428
2508
|
|
2429
2509
|
commit aafc03330fa79243cfa4097d356a7c304ddb7980
|
@@ -2435,11 +2515,11 @@ Date: Sat Feb 16 21:22:55 2013 +0900
|
|
2435
2515
|
* /\w/ including /\d/
|
2436
2516
|
* /\s/ including [/\r/, /\t/, /\n/]
|
2437
2517
|
|
2438
|
-
lib/bio/appl/blast/format0.rb |
|
2439
|
-
lib/bio/db/embl/common.rb |
|
2440
|
-
lib/bio/db/embl/embl.rb |
|
2441
|
-
lib/bio/db/embl/sptr.rb |
|
2442
|
-
lib/bio/db/gff.rb |
|
2518
|
+
lib/bio/appl/blast/format0.rb | 2 +-
|
2519
|
+
lib/bio/db/embl/common.rb | 2 +-
|
2520
|
+
lib/bio/db/embl/embl.rb | 2 +-
|
2521
|
+
lib/bio/db/embl/sptr.rb | 2 +-
|
2522
|
+
lib/bio/db/gff.rb | 2 +-
|
2443
2523
|
5 files changed, 5 insertions(+), 5 deletions(-)
|
2444
2524
|
|
2445
2525
|
commit 623ad4011fa8b56f3c9f50a859d1fa26f6570700
|
@@ -2452,7 +2532,7 @@ Date: Fri Jan 11 16:41:12 2013 +0900
|
|
2452
2532
|
* To avoid potential XSS in old MSIE which ignores content-type,
|
2453
2533
|
always do CGI.escapeHTML for parameters in error messages
|
2454
2534
|
|
2455
|
-
sample/biofetch.rb |
|
2535
|
+
sample/biofetch.rb | 91 +++++++++++++++++++++++++++++++++++++-----------------
|
2456
2536
|
1 file changed, 63 insertions(+), 28 deletions(-)
|
2457
2537
|
|
2458
2538
|
commit 03d48c43f1de7ebc9104b9aa972f226774a0bf49
|
@@ -2465,7 +2545,7 @@ Date: Fri Jan 11 15:32:05 2013 +0900
|
|
2465
2545
|
available formats for each database. Database entries are not cached.
|
2466
2546
|
* charset=utf-8 in CGI header.
|
2467
2547
|
|
2468
|
-
sample/biofetch.rb |
|
2548
|
+
sample/biofetch.rb | 110 ++++++++++++++++++++++++++++++++++++++++++-----------
|
2469
2549
|
1 file changed, 87 insertions(+), 23 deletions(-)
|
2470
2550
|
|
2471
2551
|
commit 114d29d4bdfc328f5e91adee9bea465622248e0d
|
@@ -2474,7 +2554,7 @@ Date: Fri Jan 11 09:10:08 2013 +0900
|
|
2474
2554
|
|
2475
2555
|
remove excess double quotations in html part
|
2476
2556
|
|
2477
|
-
sample/biofetch.rb |
|
2557
|
+
sample/biofetch.rb | 8 ++++----
|
2478
2558
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
2479
2559
|
|
2480
2560
|
commit 949311648b92d51a2596f896fdae8d74ac0608a3
|
@@ -2483,7 +2563,7 @@ Date: Fri Jan 11 08:59:18 2013 +0900
|
|
2483
2563
|
|
2484
2564
|
add magic comment: coding utf-8
|
2485
2565
|
|
2486
|
-
sample/biofetch.rb |
|
2566
|
+
sample/biofetch.rb | 1 +
|
2487
2567
|
1 file changed, 1 insertion(+)
|
2488
2568
|
|
2489
2569
|
commit 4ae509273134c5deca7910847063ed07c56150db
|
@@ -2501,7 +2581,7 @@ Date: Thu Jan 10 23:27:09 2013 +0900
|
|
2501
2581
|
* New constans SCRIPT_NAME and BASE_URL for easy customizing.
|
2502
2582
|
* Many changes. See "git diff" for details.
|
2503
2583
|
|
2504
|
-
sample/biofetch.rb |
|
2584
|
+
sample/biofetch.rb | 265 ++++++++++++++++++++++++++---------------------------
|
2505
2585
|
1 file changed, 131 insertions(+), 134 deletions(-)
|
2506
2586
|
|
2507
2587
|
commit bc98bc54c59be98425d66c64b19a3b9612993beb
|
@@ -2510,7 +2590,7 @@ Date: Thu Jan 10 15:17:42 2013 +0900
|
|
2510
2590
|
|
2511
2591
|
Add 'gem "rdoc"' to avoid "ERROR: 'rake/rdoctask' is obsolete..."
|
2512
2592
|
|
2513
|
-
gemfiles/Gemfile.travis-ruby1.9 |
|
2593
|
+
gemfiles/Gemfile.travis-ruby1.9 | 1 +
|
2514
2594
|
1 file changed, 1 insertion(+)
|
2515
2595
|
|
2516
2596
|
commit dfe54b2fbe303f56a868404173fe346724b7aa4a
|
@@ -2519,8 +2599,8 @@ Date: Thu Jan 10 14:06:45 2013 +0900
|
|
2519
2599
|
|
2520
2600
|
Add 'gem "rdoc"' to avoid "ERROR: 'rake/rdoctask' is obsolete..."
|
2521
2601
|
|
2522
|
-
gemfiles/Gemfile.travis-jruby1.8 |
|
2523
|
-
gemfiles/Gemfile.travis-jruby1.9 |
|
2602
|
+
gemfiles/Gemfile.travis-jruby1.8 | 1 +
|
2603
|
+
gemfiles/Gemfile.travis-jruby1.9 | 1 +
|
2524
2604
|
2 files changed, 2 insertions(+)
|
2525
2605
|
|
2526
2606
|
commit f07ec6ac326d51c055496983abba54afd00c35d4
|
@@ -2529,7 +2609,7 @@ Date: Thu Jan 10 01:38:00 2013 +0900
|
|
2529
2609
|
|
2530
2610
|
Add 'gem "rdoc"' to avoid "ERROR: 'rake/rdoctask' is obsolete..."
|
2531
2611
|
|
2532
|
-
gemfiles/Gemfile.travis-ruby1.8 |
|
2612
|
+
gemfiles/Gemfile.travis-ruby1.8 | 1 +
|
2533
2613
|
1 file changed, 1 insertion(+)
|
2534
2614
|
|
2535
2615
|
commit 4221d52055087f85daa1c23349d10ecdb4d01a31
|
@@ -2538,7 +2618,7 @@ Date: Thu Jan 10 01:27:03 2013 +0900
|
|
2538
2618
|
|
2539
2619
|
Ruby 2.0 support: Set script encoding to US-ASCII for gff.rb.
|
2540
2620
|
|
2541
|
-
lib/bio/db/gff.rb |
|
2621
|
+
lib/bio/db/gff.rb | 1 +
|
2542
2622
|
1 file changed, 1 insertion(+)
|
2543
2623
|
|
2544
2624
|
commit 1526df8273e9d2283fd4a921d4cf8c0c664fe71c
|
@@ -2557,8 +2637,8 @@ Date: Thu Jan 10 00:41:51 2013 +0900
|
|
2557
2637
|
|
2558
2638
|
updated doc/Tutorial.rd.html and doc/Tutorial.rd.ja.html
|
2559
2639
|
|
2560
|
-
doc/Tutorial.rd.html |
|
2561
|
-
doc/Tutorial.rd.ja.html |
|
2640
|
+
doc/Tutorial.rd.html | 19 ++---
|
2641
|
+
doc/Tutorial.rd.ja.html | 202 ++++++++++++++----------------------------------
|
2562
2642
|
2 files changed, 63 insertions(+), 158 deletions(-)
|
2563
2643
|
|
2564
2644
|
commit 8db12935a9cc15bae92bdb7183476cfea9e1f819
|
@@ -2567,7 +2647,7 @@ Date: Thu Jan 10 00:38:18 2013 +0900
|
|
2567
2647
|
|
2568
2648
|
Set html title when generating tutorial html
|
2569
2649
|
|
2570
|
-
Rakefile |
|
2650
|
+
Rakefile | 3 ++-
|
2571
2651
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
2572
2652
|
|
2573
2653
|
commit 644d438decceb072475877a749435fba543ff8ea
|
@@ -2576,7 +2656,7 @@ Date: Fri Jan 4 03:19:00 2013 +0900
|
|
2576
2656
|
|
2577
2657
|
regenerate bioruby.gemspec with rake regemspec
|
2578
2658
|
|
2579
|
-
bioruby.gemspec |
|
2659
|
+
bioruby.gemspec | 6 ------
|
2580
2660
|
1 file changed, 6 deletions(-)
|
2581
2661
|
|
2582
2662
|
commit 54dc9b9f68ee2de9ee005a772ce000277a073d97
|
@@ -2591,7 +2671,7 @@ Date: Fri Jan 4 02:35:01 2013 +0900
|
|
2591
2671
|
the new API seems to lack color_pathway_by_objects that returns
|
2592
2672
|
image URL. Moreover, there is no one-by-one API migration guide.
|
2593
2673
|
|
2594
|
-
sample/psortplot_html.rb |
|
2674
|
+
sample/psortplot_html.rb | 214 -----------------------------------------------
|
2595
2675
|
1 file changed, 214 deletions(-)
|
2596
2676
|
delete mode 100644 sample/psortplot_html.rb
|
2597
2677
|
|
@@ -2601,8 +2681,8 @@ Date: Fri Jan 4 02:34:05 2013 +0900
|
|
2601
2681
|
|
2602
2682
|
Remove descriptions about KEGG API and Bio::KEGG::API.
|
2603
2683
|
|
2604
|
-
doc/Tutorial.rd |
|
2605
|
-
doc/Tutorial.rd.ja |
|
2684
|
+
doc/Tutorial.rd | 6 ---
|
2685
|
+
doc/Tutorial.rd.ja | 106 +----------------------------------------------------
|
2606
2686
|
2 files changed, 1 insertion(+), 111 deletions(-)
|
2607
2687
|
|
2608
2688
|
commit 3ca725dc1e07f794344c9fcae43d4972ed2895da
|
@@ -2611,7 +2691,7 @@ Date: Fri Jan 4 02:33:09 2013 +0900
|
|
2611
2691
|
|
2612
2692
|
Remove description about KEGG API and Bio::KEGG::API.
|
2613
2693
|
|
2614
|
-
README.rdoc |
|
2694
|
+
README.rdoc | 6 ++----
|
2615
2695
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
2616
2696
|
|
2617
2697
|
commit d4568788069f2d998a78ad72b1d906aae13e85f4
|
@@ -2620,8 +2700,8 @@ Date: Thu Jan 3 23:55:58 2013 +0900
|
|
2620
2700
|
|
2621
2701
|
Remove KEGG API plugin of BioRuby Shell, due to the removal of Bio::KEGG::API.
|
2622
2702
|
|
2623
|
-
lib/bio/shell.rb |
|
2624
|
-
lib/bio/shell/plugin/keggapi.rb |
|
2703
|
+
lib/bio/shell.rb | 1 -
|
2704
|
+
lib/bio/shell/plugin/keggapi.rb | 181 ----------------------------------------
|
2625
2705
|
2 files changed, 182 deletions(-)
|
2626
2706
|
delete mode 100644 lib/bio/shell/plugin/keggapi.rb
|
2627
2707
|
|
@@ -2631,7 +2711,7 @@ Date: Thu Jan 3 23:52:36 2013 +0900
|
|
2631
2711
|
|
2632
2712
|
Delete autoload lines for removed Bio::KEGG::API
|
2633
2713
|
|
2634
|
-
lib/bio.rb |
|
2714
|
+
lib/bio.rb | 4 ----
|
2635
2715
|
1 file changed, 4 deletions(-)
|
2636
2716
|
|
2637
2717
|
commit b56ec0984d5001c3a4d3b4f0ba8fbbbf79835747
|
@@ -2666,7 +2746,7 @@ Date: Mon Oct 1 21:11:14 2012 +0900
|
|
2666
2746
|
Thanks to Edward Rice who reports the bug. (Bug #3385)
|
2667
2747
|
(https://redmine.open-bio.org/issues/3385)
|
2668
2748
|
|
2669
|
-
lib/bio/appl/blast/format0.rb |
|
2749
|
+
lib/bio/appl/blast/format0.rb | 38 +++++++++++++++++++-------------------
|
2670
2750
|
1 file changed, 19 insertions(+), 19 deletions(-)
|
2671
2751
|
|
2672
2752
|
commit 9f2f682ec6624ff356bea7aca76365ba95d33549
|
@@ -2675,7 +2755,7 @@ Date: Fri Sep 7 16:50:44 2012 +0900
|
|
2675
2755
|
|
2676
2756
|
add an env line to be recognized in allow_failures
|
2677
2757
|
|
2678
|
-
.travis.yml |
|
2758
|
+
.travis.yml | 1 +
|
2679
2759
|
1 file changed, 1 insertion(+)
|
2680
2760
|
|
2681
2761
|
commit fead6dda526081db09c56c2262f111338b7d8cd7
|
@@ -2684,7 +2764,7 @@ Date: Fri Sep 7 16:08:57 2012 +0900
|
|
2684
2764
|
|
2685
2765
|
environment variable TESTOPTS=-v for verbose output of rake test
|
2686
2766
|
|
2687
|
-
.travis.yml |
|
2767
|
+
.travis.yml | 22 ++++++++++++++--------
|
2688
2768
|
1 file changed, 14 insertions(+), 8 deletions(-)
|
2689
2769
|
|
2690
2770
|
commit 3de19895140502898c77fc83d9ad6fae47331763
|
@@ -2699,7 +2779,7 @@ Date: Thu Sep 6 18:17:22 2012 +0900
|
|
2699
2779
|
normally be avoided unless it is really necessary. Alternatively,
|
2700
2780
|
use Bio::Shell.xxxxx (xxxxx is a method name).
|
2701
2781
|
|
2702
|
-
lib/bio.rb |
|
2782
|
+
lib/bio.rb | 13 -------------
|
2703
2783
|
1 file changed, 13 deletions(-)
|
2704
2784
|
|
2705
2785
|
commit a358584c4a76be6a38ab38a18e6dc66840030450
|
@@ -2708,7 +2788,7 @@ Date: Thu Sep 6 16:48:51 2012 +0900
|
|
2708
2788
|
|
2709
2789
|
Delete autoload line of a removed class Bio::NCBI::SOAP.
|
2710
2790
|
|
2711
|
-
lib/bio/io/ncbirest.rb |
|
2791
|
+
lib/bio/io/ncbirest.rb | 1 -
|
2712
2792
|
1 file changed, 1 deletion(-)
|
2713
2793
|
|
2714
2794
|
commit 340d665775b862da638e4d12751b84d2ccd83e82
|
@@ -2717,7 +2797,7 @@ Date: Thu Sep 6 16:47:03 2012 +0900
|
|
2717
2797
|
|
2718
2798
|
Delete autoload lines of removed classes.
|
2719
2799
|
|
2720
|
-
lib/bio.rb |
|
2800
|
+
lib/bio.rb | 4 ----
|
2721
2801
|
1 file changed, 4 deletions(-)
|
2722
2802
|
|
2723
2803
|
commit c7c29a672b38d2182cf4afc9a970b854af1149a7
|
@@ -2726,7 +2806,7 @@ Date: Thu Sep 6 16:43:25 2012 +0900
|
|
2726
2806
|
|
2727
2807
|
regenerate bioruby.gemspec with rake regemspec
|
2728
2808
|
|
2729
|
-
bioruby.gemspec |
|
2809
|
+
bioruby.gemspec | 3 ---
|
2730
2810
|
1 file changed, 3 deletions(-)
|
2731
2811
|
|
2732
2812
|
commit 09bb4b8a8b7e01a36dbe0cf44a5c2a6a6b5750f1
|
@@ -2735,7 +2815,7 @@ Date: Thu Sep 6 16:23:17 2012 +0900
|
|
2735
2815
|
|
2736
2816
|
Remove Bio::Shell#ncbisoap which uses removed Bio::NCBI::SOAP.
|
2737
2817
|
|
2738
|
-
lib/bio/shell/plugin/soap.rb |
|
2818
|
+
lib/bio/shell/plugin/soap.rb | 9 ---------
|
2739
2819
|
1 file changed, 9 deletions(-)
|
2740
2820
|
|
2741
2821
|
commit a5e46acdaf06568bea6cb773200bbf3881b5670e
|
@@ -2744,7 +2824,7 @@ Date: Thu Sep 6 16:02:32 2012 +0900
|
|
2744
2824
|
|
2745
2825
|
Remove issues about removed classes Bio::NCBI::SOAP and Bio::KEGG::Taxonomy
|
2746
2826
|
|
2747
|
-
KNOWN_ISSUES.rdoc |
|
2827
|
+
KNOWN_ISSUES.rdoc | 10 ----------
|
2748
2828
|
1 file changed, 10 deletions(-)
|
2749
2829
|
|
2750
2830
|
commit 529815acb1b57486bd506b81eec6be80277cbae7
|
@@ -2763,8 +2843,8 @@ Date: Wed Sep 5 11:33:27 2012 +0900
|
|
2763
2843
|
* Deleted files: lib/bio/db/kegg/taxonomy.rb,
|
2764
2844
|
sample/demo_kegg_taxonomy.rb
|
2765
2845
|
|
2766
|
-
lib/bio/db/kegg/taxonomy.rb |
|
2767
|
-
sample/demo_kegg_taxonomy.rb |
|
2846
|
+
lib/bio/db/kegg/taxonomy.rb | 280 -------------------------------------------
|
2847
|
+
sample/demo_kegg_taxonomy.rb | 92 --------------
|
2768
2848
|
2 files changed, 372 deletions(-)
|
2769
2849
|
delete mode 100644 lib/bio/db/kegg/taxonomy.rb
|
2770
2850
|
delete mode 100644 sample/demo_kegg_taxonomy.rb
|
@@ -2782,7 +2862,7 @@ Date: Wed Sep 5 11:26:00 2012 +0900
|
|
2782
2862
|
needed, that seems very difficult. The alternative is Bio::NCBI::REST,
|
2783
2863
|
REST client class for the NCBI EUtil web services.
|
2784
2864
|
|
2785
|
-
lib/bio/io/ncbisoap.rb |
|
2865
|
+
lib/bio/io/ncbisoap.rb | 156 -------------------------------------------------
|
2786
2866
|
1 file changed, 156 deletions(-)
|
2787
2867
|
delete mode 100644 lib/bio/io/ncbisoap.rb
|
2788
2868
|
|
@@ -2792,7 +2872,7 @@ Date: Tue Sep 4 11:13:47 2012 +0900
|
|
2792
2872
|
|
2793
2873
|
regenerate bioruby.gemspec with rake regemspec
|
2794
2874
|
|
2795
|
-
bioruby.gemspec |
|
2875
|
+
bioruby.gemspec | 10 ++++------
|
2796
2876
|
1 file changed, 4 insertions(+), 6 deletions(-)
|
2797
2877
|
|
2798
2878
|
commit e929d5d23a9b489ef42f30b33959f059baf1e185
|
@@ -2801,7 +2881,7 @@ Date: Tue Sep 4 11:09:36 2012 +0900
|
|
2801
2881
|
|
2802
2882
|
Remove issues about removed classes Bio::Ensembl and Bio::DBGET.
|
2803
2883
|
|
2804
|
-
KNOWN_ISSUES.rdoc |
|
2884
|
+
KNOWN_ISSUES.rdoc | 16 ----------------
|
2805
2885
|
1 file changed, 16 deletions(-)
|
2806
2886
|
|
2807
2887
|
commit 550a5440490012f73b6d38d84238cd498f2ebb02
|
@@ -2817,9 +2897,9 @@ Date: Tue Sep 4 10:57:20 2012 +0900
|
|
2817
2897
|
* Deleted files: lib/bio/io/ensembl.rb,
|
2818
2898
|
test/network/bio/io/test_ensembl.rb, test/unit/bio/io/test_ensembl.rb.
|
2819
2899
|
|
2820
|
-
lib/bio/io/ensembl.rb |
|
2821
|
-
test/network/bio/io/test_ensembl.rb |
|
2822
|
-
test/unit/bio/io/test_ensembl.rb |
|
2900
|
+
lib/bio/io/ensembl.rb | 229 -----------------------------------
|
2901
|
+
test/network/bio/io/test_ensembl.rb | 230 ------------------------------------
|
2902
|
+
test/unit/bio/io/test_ensembl.rb | 111 -----------------
|
2823
2903
|
3 files changed, 570 deletions(-)
|
2824
2904
|
delete mode 100644 lib/bio/io/ensembl.rb
|
2825
2905
|
delete mode 100644 test/network/bio/io/test_ensembl.rb
|
@@ -2835,8 +2915,8 @@ Date: Tue Sep 4 10:47:52 2012 +0900
|
|
2835
2915
|
discontinued about 8 years ago.
|
2836
2916
|
* Remove lib/bio/io/dbget.rb and sample/dbget.
|
2837
2917
|
|
2838
|
-
lib/bio/io/dbget.rb |
|
2839
|
-
sample/dbget |
|
2918
|
+
lib/bio/io/dbget.rb | 194 ----------------------------------------------------
|
2919
|
+
sample/dbget | 37 ----------
|
2840
2920
|
2 files changed, 231 deletions(-)
|
2841
2921
|
delete mode 100644 lib/bio/io/dbget.rb
|
2842
2922
|
delete mode 100755 sample/dbget
|
@@ -2852,7 +2932,7 @@ Date: Thu Aug 23 00:25:43 2012 +0900
|
|
2852
2932
|
For the changes before 1.4.2, see doc/ChangeLog-before-1.4.2.
|
2853
2933
|
For the changes before 1.3.1, see doc/ChangeLog-before-1.3.1.
|
2854
2934
|
|
2855
|
-
ChangeLog |
|
2935
|
+
ChangeLog | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
2856
2936
|
1 file changed, 61 insertions(+)
|
2857
2937
|
create mode 100644 ChangeLog
|
2858
2938
|
|
@@ -2862,7 +2942,7 @@ Date: Thu Aug 23 00:25:07 2012 +0900
|
|
2862
2942
|
|
2863
2943
|
Rakefile: Update hardcoded git tag name for updating of ChangeLog.
|
2864
2944
|
|
2865
|
-
Rakefile |
|
2945
|
+
Rakefile | 2 +-
|
2866
2946
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2867
2947
|
|
2868
2948
|
commit b10c7ad2db24d88726ffb8c63078baa217aeac43
|
@@ -2883,7 +2963,7 @@ Date: Thu Aug 23 00:18:50 2012 +0900
|
|
2883
2963
|
|
2884
2964
|
ChangeLog updated: add log about 1.4.3 release.
|
2885
2965
|
|
2886
|
-
ChangeLog |
|
2966
|
+
ChangeLog | 9 +++++++++
|
2887
2967
|
1 file changed, 9 insertions(+)
|
2888
2968
|
|
2889
2969
|
commit 5e88ccbe0fefdd4d57f144aaf9073f5e7d93281c
|
@@ -2892,7 +2972,7 @@ Date: Thu Aug 23 00:16:25 2012 +0900
|
|
2892
2972
|
|
2893
2973
|
New RELEASE_NOTES.rdoc for the next release version.
|
2894
2974
|
|
2895
|
-
RELEASE_NOTES.rdoc |
|
2975
|
+
RELEASE_NOTES.rdoc | 47 +++++++++++++++++++++++++++++++++++++++++++++++
|
2896
2976
|
1 file changed, 47 insertions(+)
|
2897
2977
|
create mode 100644 RELEASE_NOTES.rdoc
|
2898
2978
|
|
@@ -2902,8 +2982,8 @@ Date: Thu Aug 23 00:12:40 2012 +0900
|
|
2902
2982
|
|
2903
2983
|
Renamed RELEASE_NOTES.rdoc to doc/RELEASE_NOTES-1.4.3.rdoc
|
2904
2984
|
|
2905
|
-
RELEASE_NOTES.rdoc |
|
2906
|
-
doc/RELEASE_NOTES-1.4.3.rdoc |
|
2985
|
+
RELEASE_NOTES.rdoc | 204 -------------------------------------------
|
2986
|
+
doc/RELEASE_NOTES-1.4.3.rdoc | 204 +++++++++++++++++++++++++++++++++++++++++++
|
2907
2987
|
2 files changed, 204 insertions(+), 204 deletions(-)
|
2908
2988
|
delete mode 100644 RELEASE_NOTES.rdoc
|
2909
2989
|
create mode 100644 doc/RELEASE_NOTES-1.4.3.rdoc
|
@@ -2914,6 +2994,6 @@ Date: Thu Aug 23 00:00:15 2012 +0900
|
|
2914
2994
|
|
2915
2995
|
Bio::BIORUBY_EXTRA_VERSION set to ".5000" (unstable version).
|
2916
2996
|
|
2917
|
-
bioruby.gemspec |
|
2918
|
-
lib/bio/version.rb |
|
2997
|
+
bioruby.gemspec | 2 +-
|
2998
|
+
lib/bio/version.rb | 2 +-
|
2919
2999
|
2 files changed, 2 insertions(+), 2 deletions(-)
|