bio 2.0.1 → 2.0.4
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 +313 -0
- data/KNOWN_ISSUES.rdoc +1 -1
- data/LEGAL +9 -0
- data/README.rdoc +3 -3
- data/RELEASE_NOTES.rdoc +59 -0
- data/bioruby.gemspec +4 -2
- data/bioruby.gemspec.erb +0 -1
- data/lib/bio/appl/iprscan/report.rb +3 -3
- data/lib/bio/appl/sosui/report.rb +1 -1
- data/lib/bio/db/embl/uniprotkb.rb +137 -12
- data/lib/bio/db/go.rb +2 -2
- data/lib/bio/sequence/common.rb +112 -0
- data/lib/bio/sequence/format.rb +1 -0
- data/lib/bio/tree.rb +1 -1
- data/lib/bio/version.rb +1 -1
- data/test/data/uniprot/P28907.uniprot +551 -0
- data/test/unit/bio/db/embl/test_uniprotkb_P28907.rb +325 -0
- data/test/unit/bio/sequence/test_ruby3.rb +462 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65cb8536e3646ee35c955bddcada6ecc10f0dda7540617f6bca71133894d25dd
|
4
|
+
data.tar.gz: f7eacff38af5eec96bb377f4bc87d23fc03c3277cf843a156b5cb1b95c15afdf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad51098d8e668c40b0457f9bdbc58c13e179f5a7929c2264928b3257152dc13f3b0632d3c73c2ac58e7c8e679dfa28188338a51b37a8bb31898fdb887b1e56e4
|
7
|
+
data.tar.gz: 54f2c6da91324094ac87f0865e9e9b0c5333b8872abc9672cac73110b94ae13b7257f96ba1a75cf358f2fbb66440b4e2790c1ec50b15a381048cf5f04acd3bf8
|
data/ChangeLog
CHANGED
@@ -1,3 +1,316 @@
|
|
1
|
+
commit 1bc877e557e165b42eea992d89f19a63996cb586
|
2
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
3
|
+
Date: Tue Sep 13 21:19:01 2022 +0900
|
4
|
+
|
5
|
+
regenerate bioruby.gemspec with rake regemspec
|
6
|
+
|
7
|
+
bioruby.gemspec | 4 +++-
|
8
|
+
1 file changed, 3 insertions(+), 1 deletion(-)
|
9
|
+
|
10
|
+
commit 190e4751b84cc45cbce636c4414482a8169b08df
|
11
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
12
|
+
Date: Tue Sep 13 21:18:06 2022 +0900
|
13
|
+
|
14
|
+
prepare for BioRuby 2.0.4 release
|
15
|
+
|
16
|
+
lib/bio/version.rb | 2 +-
|
17
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
18
|
+
|
19
|
+
commit a666639e0393e96b2de0bbcb447c13f8a14ad06d
|
20
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
21
|
+
Date: Tue Sep 13 21:17:11 2022 +0900
|
22
|
+
|
23
|
+
update release notes for upcoming BioRuby 2.0.4
|
24
|
+
|
25
|
+
RELEASE_NOTES.rdoc | 14 ++++++++++++++
|
26
|
+
1 file changed, 14 insertions(+)
|
27
|
+
|
28
|
+
commit c0d197343dd7fd8999d04083c9e8f24fa37a2f93
|
29
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
30
|
+
Date: Tue Sep 13 21:13:40 2022 +0900
|
31
|
+
|
32
|
+
License of UniProt data is CC BY 4.0
|
33
|
+
|
34
|
+
LEGAL | 9 +++++++++
|
35
|
+
1 file changed, 9 insertions(+)
|
36
|
+
|
37
|
+
commit e670102e6d4deb04c1fcae62459cc02861132d25
|
38
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
39
|
+
Date: Tue Sep 13 21:01:50 2022 +0900
|
40
|
+
|
41
|
+
Bug fix: Bio::UniProtKB#protein_name and #synonyms may raise error
|
42
|
+
|
43
|
+
* Bug fix: Bio::UniProtKB#protein_name and #synonyms may raise error
|
44
|
+
after calling Bio::UniProtKB#de method.
|
45
|
+
|
46
|
+
lib/bio/db/embl/uniprotkb.rb | 25 ++++++++++++++++++-------
|
47
|
+
test/unit/bio/db/embl/test_uniprotkb_P28907.rb | 11 +++++++++++
|
48
|
+
2 files changed, 29 insertions(+), 7 deletions(-)
|
49
|
+
|
50
|
+
commit 9c04e08e8d1316ffd7fc15ab311cea5dd6937d36
|
51
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
52
|
+
Date: Tue Sep 13 20:44:46 2022 +0900
|
53
|
+
|
54
|
+
Supports format change of FT lines since UniProt release 2019_11
|
55
|
+
|
56
|
+
* Bio::UniProtKB#ft: Supports text format change of FT lines since
|
57
|
+
UniProt release 2019_11. (Details of the format changes:
|
58
|
+
https://www.uniprot.org/release-notes/2019-12-18-release#text%5Fft )
|
59
|
+
|
60
|
+
This closes https://github.com/bioruby/bioruby/issues/147 .
|
61
|
+
|
62
|
+
* Tests are added with a new test data
|
63
|
+
|
64
|
+
lib/bio/db/embl/uniprotkb.rb | 122 +++++-
|
65
|
+
test/data/uniprot/P28907.uniprot | 551 +++++++++++++++++++++++++
|
66
|
+
test/unit/bio/db/embl/test_uniprotkb_P28907.rb | 314 ++++++++++++++
|
67
|
+
3 files changed, 983 insertions(+), 4 deletions(-)
|
68
|
+
create mode 100644 test/data/uniprot/P28907.uniprot
|
69
|
+
create mode 100644 test/unit/bio/db/embl/test_uniprotkb_P28907.rb
|
70
|
+
|
71
|
+
commit b18ee463d4328b5ef619733b46f568b18459be7a
|
72
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
73
|
+
Date: Fri Nov 5 23:49:18 2021 +0900
|
74
|
+
|
75
|
+
BioRuby 2.0.3 is released
|
76
|
+
|
77
|
+
ChangeLog | 136 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
78
|
+
1 file changed, 136 insertions(+)
|
79
|
+
|
80
|
+
commit c16e230d15cf30478a3739563b4e4745dc57ef82
|
81
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
82
|
+
Date: Fri Nov 5 23:44:45 2021 +0900
|
83
|
+
|
84
|
+
regenerate bioruby.gemspec with rake regemspec
|
85
|
+
|
86
|
+
bioruby.gemspec | 3 ++-
|
87
|
+
1 file changed, 2 insertions(+), 1 deletion(-)
|
88
|
+
|
89
|
+
commit 1a8c44dc5b8d24342550273a594e5f75e41f41df
|
90
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
91
|
+
Date: Fri Nov 5 23:41:29 2021 +0900
|
92
|
+
|
93
|
+
prepare for BioRuby 2.0.3 release
|
94
|
+
|
95
|
+
lib/bio/version.rb | 2 +-
|
96
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
97
|
+
|
98
|
+
commit 863242cdb9a748ba9efb3be3b39f92c17ed3ea84
|
99
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
100
|
+
Date: Fri Nov 5 23:36:27 2021 +0900
|
101
|
+
|
102
|
+
update release notes for upcoming BioRuby 2.0.3
|
103
|
+
|
104
|
+
RELEASE_NOTES.rdoc | 26 ++++++++++++++++++++++++++
|
105
|
+
1 file changed, 26 insertions(+)
|
106
|
+
|
107
|
+
commit b97794d632c73dc45639cec000fb11238740eb30
|
108
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
109
|
+
Date: Fri Nov 5 23:26:20 2021 +0900
|
110
|
+
|
111
|
+
Ruby 3.0 compatibility fix: Bio::Sequence::*#partition, #rpartiton
|
112
|
+
|
113
|
+
* Behaviors of Bio::Sequence::*#partition and #rpartition in Ruby 3.0
|
114
|
+
are changed to mimic those in Ruby 2.x.
|
115
|
+
|
116
|
+
lib/bio/sequence/common.rb | 17 +++++++
|
117
|
+
test/unit/bio/sequence/test_ruby3.rb | 94 ++++++++++++++++++++++++++++++++++++
|
118
|
+
2 files changed, 111 insertions(+)
|
119
|
+
|
120
|
+
commit 7ff79cd449ee03e0063120fb9abec50d9b08e979
|
121
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
122
|
+
Date: Fri Nov 5 22:24:16 2021 +0900
|
123
|
+
|
124
|
+
remove resolved Ruby 3.0 issue
|
125
|
+
|
126
|
+
KNOWN_ISSUES.rdoc | 8 --------
|
127
|
+
1 file changed, 8 deletions(-)
|
128
|
+
|
129
|
+
commit 24bb3c3cf417837ad63a27913db7237aef1414c6
|
130
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
131
|
+
Date: Fri Nov 5 21:24:26 2021 +0900
|
132
|
+
|
133
|
+
Bio::Sequence::NA,AA,Generic: workaround for Ruby 3.0.0 incompatible change
|
134
|
+
|
135
|
+
* Since Ruby 3.0.0, over 30 methods in subclass of String class are
|
136
|
+
changed to return/yield String instance instead of the subclass
|
137
|
+
instance. (https://github.com/ruby/ruby/blob/v3_0_0/NEWS.md )
|
138
|
+
|
139
|
+
* In this commit, workaround is made for the following methods:
|
140
|
+
* *
|
141
|
+
* capitalize
|
142
|
+
* center
|
143
|
+
* chomp
|
144
|
+
* chop
|
145
|
+
* delete
|
146
|
+
* delete_prefix
|
147
|
+
* delete_suffix
|
148
|
+
* downcase
|
149
|
+
* each_char
|
150
|
+
* each_grapheme_cluster
|
151
|
+
* each_line
|
152
|
+
* gsub
|
153
|
+
* gsub!
|
154
|
+
* ljust
|
155
|
+
* lstrip
|
156
|
+
* revserse
|
157
|
+
* rjust
|
158
|
+
* rstrip
|
159
|
+
* slice!
|
160
|
+
* slice / []
|
161
|
+
* split
|
162
|
+
* squeeze
|
163
|
+
* strip
|
164
|
+
* sub
|
165
|
+
* sub!
|
166
|
+
* succ / next
|
167
|
+
* swapcase
|
168
|
+
* tr
|
169
|
+
* tr_s
|
170
|
+
* upcase
|
171
|
+
* Note: sub! and gsub! are not described in the NEWS.md
|
172
|
+
but are also affected by this Ruby 3.0.0 incompatible changes.
|
173
|
+
|
174
|
+
* The following methods are not patched i.e. they return/yield
|
175
|
+
String instances.
|
176
|
+
* dump
|
177
|
+
* partition
|
178
|
+
* rpartition
|
179
|
+
* scrub
|
180
|
+
* Note: In Ruby 2.7 or earlier, Bio::Sequence::NA#partition
|
181
|
+
and #rpartition methods return an array that may contain
|
182
|
+
mixture of Bio::Sequence::NA instances and String instances.
|
183
|
+
|
184
|
+
* test/unit/bio/sequence/test_ruby3.rb: unit tests for the
|
185
|
+
above methods.
|
186
|
+
|
187
|
+
* Close https://github.com/bioruby/bioruby/issues/137
|
188
|
+
|
189
|
+
lib/bio/sequence/common.rb | 95 +++++++++
|
190
|
+
test/unit/bio/sequence/test_ruby3.rb | 368 +++++++++++++++++++++++++++++++++++
|
191
|
+
2 files changed, 463 insertions(+)
|
192
|
+
create mode 100644 test/unit/bio/sequence/test_ruby3.rb
|
193
|
+
|
194
|
+
commit 0efc0a54685d43645daa9c53d7140bfb81577777
|
195
|
+
Author: kojix2 <2xijok@gmail.com>
|
196
|
+
Date: Tue Aug 31 19:39:25 2021 +0900
|
197
|
+
|
198
|
+
Fix typos: Retrun -> Return
|
199
|
+
|
200
|
+
lib/bio/appl/iprscan/report.rb | 6 +++---
|
201
|
+
lib/bio/appl/sosui/report.rb | 2 +-
|
202
|
+
lib/bio/db/embl/uniprotkb.rb | 2 +-
|
203
|
+
lib/bio/db/go.rb | 4 ++--
|
204
|
+
lib/bio/tree.rb | 2 +-
|
205
|
+
5 files changed, 8 insertions(+), 8 deletions(-)
|
206
|
+
|
207
|
+
commit a291b5a72da12a5cc8b006d1dd63d002fda5dff3
|
208
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
209
|
+
Date: Thu Dec 31 23:52:54 2020 +0900
|
210
|
+
|
211
|
+
BioRuby 2.0.2 is released
|
212
|
+
|
213
|
+
ChangeLog | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
214
|
+
1 file changed, 98 insertions(+)
|
215
|
+
|
216
|
+
commit fd420b713ca364e677ef3551919ec907791df86d
|
217
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
218
|
+
Date: Thu Dec 31 23:51:08 2020 +0900
|
219
|
+
|
220
|
+
RELEASE_NOTES.rdoc: change some description
|
221
|
+
|
222
|
+
RELEASE_NOTES.rdoc | 2 +-
|
223
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
224
|
+
|
225
|
+
commit 0ed9b37f38fa1b00dcc1d422914e4cbdbbc5f6ab
|
226
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
227
|
+
Date: Thu Dec 31 23:46:46 2020 +0900
|
228
|
+
|
229
|
+
regenerate bioruby.gemspec with rake regemspec
|
230
|
+
|
231
|
+
bioruby.gemspec | 2 +-
|
232
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
233
|
+
|
234
|
+
commit fa84b8fac653c26b9f8db429321ef49202554a69
|
235
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
236
|
+
Date: Thu Dec 31 23:45:38 2020 +0900
|
237
|
+
|
238
|
+
prepare for BioRuby 2.0.2 release
|
239
|
+
|
240
|
+
lib/bio/version.rb | 2 +-
|
241
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
242
|
+
|
243
|
+
commit 32c5efccbad4e0d3440726383f863520ee242cc5
|
244
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
245
|
+
Date: Thu Dec 31 23:39:18 2020 +0900
|
246
|
+
|
247
|
+
update release notes for upcoming BioRuby 2.0.2
|
248
|
+
|
249
|
+
RELEASE_NOTES.rdoc | 19 +++++++++++++++++++
|
250
|
+
1 file changed, 19 insertions(+)
|
251
|
+
|
252
|
+
commit c2f6e62ab64bc532f442bccc0d76ced5380664ec
|
253
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
254
|
+
Date: Thu Dec 31 23:38:43 2020 +0900
|
255
|
+
|
256
|
+
add a known issue about Ruby 3.0
|
257
|
+
|
258
|
+
KNOWN_ISSUES.rdoc | 10 +++++++++-
|
259
|
+
1 file changed, 9 insertions(+), 1 deletion(-)
|
260
|
+
|
261
|
+
commit a733c0816da7c97ca0c23016b473b004fb755f54
|
262
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
263
|
+
Date: Thu Dec 31 23:04:55 2020 +0900
|
264
|
+
|
265
|
+
remove deprecation warning of Gem::Specification#has_rdoc=
|
266
|
+
|
267
|
+
Gem::Specification#has_rdoc= have been deprecated since RubyGems 1.3.3
|
268
|
+
in 2009. (https://blog.rubygems.org/2009/05/04/1.3.3-released.html )
|
269
|
+
RDoc is always generated regardless of the value, and the line is
|
270
|
+
safely removed.
|
271
|
+
|
272
|
+
This fixes https://github.com/bioruby/bioruby/issues/138 .
|
273
|
+
Thanks to @jaysonvirissimo for reporting the issue.
|
274
|
+
|
275
|
+
bioruby.gemspec | 1 -
|
276
|
+
bioruby.gemspec.erb | 1 -
|
277
|
+
2 files changed, 2 deletions(-)
|
278
|
+
|
279
|
+
commit bed6746ce62059795996eeb6e5ac65655bab12b5
|
280
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
281
|
+
Date: Thu Dec 31 22:51:56 2020 +0900
|
282
|
+
|
283
|
+
require ruby's date library to avoid NameError for Date
|
284
|
+
|
285
|
+
In Bio::Sequence#output(:embl), NameError (uninitialized constant
|
286
|
+
Bio::Sequence::Format::INSDFeatureHelper::Date) is observed.
|
287
|
+
The error message is misleading because Date is provided by Ruby's
|
288
|
+
standard date library.
|
289
|
+
|
290
|
+
This fixes https://github.com/bioruby/bioruby/issues/135 .
|
291
|
+
Thanks to Dr. Mark Wilkinson for reporting the issue.
|
292
|
+
|
293
|
+
lib/bio/sequence/format.rb | 1 +
|
294
|
+
1 file changed, 1 insertion(+)
|
295
|
+
|
296
|
+
commit 5f3aa79fdaf6dd5551d51663ca2e9b6f5e56d855
|
297
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
298
|
+
Date: Fri Nov 6 17:45:12 2020 +0900
|
299
|
+
|
300
|
+
fix mistaken URLs
|
301
|
+
|
302
|
+
README.rdoc | 6 +++---
|
303
|
+
1 file changed, 3 insertions(+), 3 deletions(-)
|
304
|
+
|
305
|
+
commit d5e1670ee4863cc60d3aa08432a7ee3b1e445439
|
306
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
307
|
+
Date: Fri Sep 6 15:48:45 2019 +0900
|
308
|
+
|
309
|
+
BioRuby 2.0.1 is released
|
310
|
+
|
311
|
+
ChangeLog | 185 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
312
|
+
1 file changed, 185 insertions(+)
|
313
|
+
|
1
314
|
commit 21bf51a1ec8c18c9cdf8528ffc3c59c503cef042
|
2
315
|
Author: Naohisa Goto <ng@bioruby.org>
|
3
316
|
Date: Fri Sep 6 15:45:47 2019 +0900
|
data/KNOWN_ISSUES.rdoc
CHANGED
data/LEGAL
CHANGED
@@ -114,6 +114,15 @@ test/data/uniprot/p53_human.uniprot:
|
|
114
114
|
removed.
|
115
115
|
|
116
116
|
|
117
|
+
test/data/uniprot/P28907.uniprot:
|
118
|
+
|
119
|
+
Copyrighted by the UniProt Consortium, see https://www.uniprot.org/terms
|
120
|
+
Distributed under the Creative Commons Attribution (CC BY 4.0) License
|
121
|
+
|
122
|
+
https://www.uniprot.org/help/license
|
123
|
+
https://creativecommons.org/licenses/by/4.0/
|
124
|
+
|
125
|
+
|
117
126
|
GPL:
|
118
127
|
|
119
128
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
data/README.rdoc
CHANGED
@@ -206,9 +206,9 @@ Plugins (Biogems) listed below had been included in BioRuby in former days,
|
|
206
206
|
and were split to separate packages to reduce complexity and external
|
207
207
|
dependencies.
|
208
208
|
|
209
|
-
* {bio-shell}[https://rubygems.org/gems/
|
210
|
-
* {bio-executables}[https://rubygems.org/gems/
|
211
|
-
* {bio-blast-xmlparser}[https://rubygems.org/gems/
|
209
|
+
* {bio-shell}[https://rubygems.org/gems/bio-shell]
|
210
|
+
* {bio-executables}[https://rubygems.org/gems/bio-executables]
|
211
|
+
* {bio-blast-xmlparser}[https://rubygems.org/gems/bio-blast-xmlparser]
|
212
212
|
* {bioruby-phyloxml}[https://rubygems.org/gems/bioruby-phyloxml]
|
213
213
|
* NOTE: Please uninstall bio-phyloxml, that have been created as a
|
214
214
|
preliminary trial of splitting a module in 2012 and have not been
|
data/RELEASE_NOTES.rdoc
CHANGED
@@ -1,3 +1,62 @@
|
|
1
|
+
= BioRuby 2.0.4 RELEASE NOTES
|
2
|
+
|
3
|
+
Some fixes have been made in BioRuby 2.0.4 after the release of 2.0.3.
|
4
|
+
|
5
|
+
== Fixes
|
6
|
+
|
7
|
+
* Bio::UniProtKB#ft: Supports text format change of FT lines since
|
8
|
+
UniProt release 2019_11.
|
9
|
+
(https://github.com/bioruby/bioruby/issues/147 )
|
10
|
+
* Bio::UniProtKB#protein_name and #synonyms methods may raise error
|
11
|
+
after calling Bio::UniProtKB#de method.
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
= BioRuby 2.0.3 RELEASE NOTES
|
16
|
+
|
17
|
+
Some bug fixes have been made in BioRuby 2.0.3 after the release of 2.0.2.
|
18
|
+
|
19
|
+
== Bug fixes
|
20
|
+
|
21
|
+
* Fix Ruby 3.0.0 Bio::Sequence::* issue.
|
22
|
+
(https://github.com/bioruby/bioruby/issues/137 )
|
23
|
+
* Fix typo (https://github.com/bioruby/bioruby/pull/145 )
|
24
|
+
|
25
|
+
== Incompatible changes
|
26
|
+
|
27
|
+
=== Bio::Sequence::* incompatible changes since Ruby 3.0.0
|
28
|
+
|
29
|
+
Since Ruby 3.0.0, the following methods in Bio::Sequence::NA,
|
30
|
+
Bio::Sequence::AA, and Bio::Sequence::Generic return or yield
|
31
|
+
String instance, instead of the Bio::Sequence::* instance.
|
32
|
+
|
33
|
+
* dump
|
34
|
+
* scrub
|
35
|
+
|
36
|
+
For details about Ruby 3.0.0 incompatible changes, see
|
37
|
+
{News for Ruby 3.0.0}[https://github.com/ruby/ruby/blob/v3_0_0/NEWS.md].
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
= BioRuby 2.0.2 RELEASE NOTES
|
42
|
+
|
43
|
+
Some bugs fixes have been made in BioRuby 2.0.2 after the release of 2.0.1.
|
44
|
+
|
45
|
+
== Bug fixes
|
46
|
+
|
47
|
+
* Fix NameError in Bio::Sequence#output(:embl)
|
48
|
+
(https://github.com/bioruby/bioruby/issues/135 )
|
49
|
+
* Suppress warning: Gem::Specification#has_rdoc= is deprecated
|
50
|
+
(https://github.com/bioruby/bioruby/issues/138 )
|
51
|
+
* Fix misspelling URL in README.rdoc
|
52
|
+
|
53
|
+
== Known issues
|
54
|
+
|
55
|
+
A known issue about Ruby 3.0 is added to KNOWN_ISSUES.rdoc.
|
56
|
+
The issue will be fixed in the near future.
|
57
|
+
|
58
|
+
|
59
|
+
|
1
60
|
= BioRuby 2.0.1 RELEASE NOTES
|
2
61
|
|
3
62
|
Some bug fixes and improvements have been made to the BioRuby 2.0.1 after
|
data/bioruby.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
#
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'bio'
|
6
|
-
s.version = "2.0.
|
6
|
+
s.version = "2.0.4"
|
7
7
|
|
8
8
|
s.author = "BioRuby project"
|
9
9
|
s.email = "staff@bioruby.org"
|
@@ -454,6 +454,7 @@ Gem::Specification.new do |s|
|
|
454
454
|
"test/data/sim4/simple2-A4.sim4",
|
455
455
|
"test/data/soft/GDS100_partial.soft",
|
456
456
|
"test/data/soft/GSE3457_family_partial.soft",
|
457
|
+
"test/data/uniprot/P28907.uniprot",
|
457
458
|
"test/data/uniprot/p53_human.uniprot",
|
458
459
|
"test/functional/bio/sequence/test_output_embl.rb",
|
459
460
|
"test/functional/bio/test_command.rb",
|
@@ -498,6 +499,7 @@ Gem::Specification.new do |s|
|
|
498
499
|
"test/unit/bio/db/embl/test_embl_to_bioseq.rb",
|
499
500
|
"test/unit/bio/db/embl/test_uniprot.rb",
|
500
501
|
"test/unit/bio/db/embl/test_uniprotkb.rb",
|
502
|
+
"test/unit/bio/db/embl/test_uniprotkb_P28907.rb",
|
501
503
|
"test/unit/bio/db/embl/test_uniprotkb_new_part.rb",
|
502
504
|
"test/unit/bio/db/fasta/test_defline.rb",
|
503
505
|
"test/unit/bio/db/fasta/test_defline_misc.rb",
|
@@ -546,6 +548,7 @@ Gem::Specification.new do |s|
|
|
546
548
|
"test/unit/bio/sequence/test_dblink.rb",
|
547
549
|
"test/unit/bio/sequence/test_na.rb",
|
548
550
|
"test/unit/bio/sequence/test_quality_score.rb",
|
551
|
+
"test/unit/bio/sequence/test_ruby3.rb",
|
549
552
|
"test/unit/bio/sequence/test_sequence_masker.rb",
|
550
553
|
"test/unit/bio/test_alignment.rb",
|
551
554
|
"test/unit/bio/test_command.rb",
|
@@ -580,7 +583,6 @@ Gem::Specification.new do |s|
|
|
580
583
|
"test/unit/bio/util/test_sirna.rb"
|
581
584
|
]
|
582
585
|
|
583
|
-
s.has_rdoc = true
|
584
586
|
s.extra_rdoc_files = [
|
585
587
|
"KNOWN_ISSUES.rdoc",
|
586
588
|
"README.rdoc",
|
data/bioruby.gemspec.erb
CHANGED
@@ -83,7 +83,7 @@ module Bio
|
|
83
83
|
yield Bio::Iprscan::Report.parse_raw_entry(entry) if entry != ''
|
84
84
|
end
|
85
85
|
|
86
|
-
# Parser method for a raw formated entry.
|
86
|
+
# Parser method for a raw formated entry. Returns a Bio::Iprscan::Report
|
87
87
|
# object.
|
88
88
|
def self.parse_raw_entry(str)
|
89
89
|
report = self.new
|
@@ -113,7 +113,7 @@ module Bio
|
|
113
113
|
|
114
114
|
|
115
115
|
|
116
|
-
# Parser method for a xml formated entry.
|
116
|
+
# Parser method for a xml formated entry. Returns a Bio::Iprscan::Report
|
117
117
|
# object.
|
118
118
|
# def self.parse_xml(str)
|
119
119
|
# end
|
@@ -196,7 +196,7 @@ module Bio
|
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
199
|
-
# Parser method for a pseudo-txt formated entry.
|
199
|
+
# Parser method for a pseudo-txt formated entry. Returns a Bio::Iprscan::Report
|
200
200
|
# object.
|
201
201
|
#
|
202
202
|
# == Usage
|