bio 2.0.3 → 2.0.5
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/.github/workflows/ruby.yml +38 -0
- data/.gitignore +32 -0
- data/ChangeLog +366 -0
- data/Gemfile +3 -0
- data/LEGAL +11 -0
- data/README.rdoc +1 -1
- data/RELEASE_NOTES.rdoc +50 -0
- data/appveyor.yml +14 -13
- data/bioruby.gemspec +9 -10
- data/lib/bio/appl/blast/genomenet.rb +2 -1
- data/lib/bio/appl/pts1.rb +1 -1
- data/lib/bio/db/embl/uniprotkb.rb +184 -26
- data/lib/bio/version.rb +1 -1
- data/test/data/uniprot/P03589.uniprot +127 -0
- data/test/data/uniprot/P28907.uniprot +551 -0
- data/test/data/uniprot/P49144.uniprot +232 -0
- data/test/functional/bio/test_command.rb +2 -0
- data/test/network/bio/db/kegg/test_genes_hsa7422.rb +26 -12
- data/test/unit/bio/db/embl/test_uniprotkb_P03589.rb +378 -0
- data/test/unit/bio/db/embl/test_uniprotkb_P28907.rb +325 -0
- data/test/unit/bio/db/embl/test_uniprotkb_P49144.rb +359 -0
- metadata +14 -15
- data/.travis.yml +0 -71
- data/gemfiles/Gemfile.travis-jruby1.8 +0 -6
- data/gemfiles/Gemfile.travis-jruby1.9 +0 -5
- data/gemfiles/Gemfile.travis-rbx +0 -10
- data/gemfiles/Gemfile.travis-ruby1.8 +0 -6
- data/gemfiles/Gemfile.travis-ruby1.9 +0 -5
- data/gemfiles/Gemfile.windows +0 -6
- data/gemfiles/modify-Gemfile.rb +0 -28
- data/gemfiles/prepare-gemspec.rb +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc1f77f098a4d689cb475aa115be7f8d0e71a046c3eeaa3febedabedb38c6863
|
4
|
+
data.tar.gz: 0a485b281293f43c032227a4dcb626aad9cce5389620fcd6ef5f02d5cab8c3ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f8de1ad5f04e3034e50dcc046b0eeab4d378305263bac02b3399be3cccca89015d32dc2c15990b5a2518ff9870a9699ebcfba124d0ae3e22197f9cf60c6c5cb
|
7
|
+
data.tar.gz: 8082ee6c5453821cadafbafca62ef2f89f9403871935d20cf2e2c307ebd3a67bbcb728036795ef11a9c4781db6f9756deb22b4936d76e5530fd4d5c6ad834b2e
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Ruby
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [ "master", "incoming" ]
|
13
|
+
pull_request:
|
14
|
+
branches: [ "master", "incoming" ]
|
15
|
+
|
16
|
+
permissions:
|
17
|
+
contents: read
|
18
|
+
|
19
|
+
jobs:
|
20
|
+
test:
|
21
|
+
|
22
|
+
runs-on: ubuntu-latest
|
23
|
+
strategy:
|
24
|
+
matrix:
|
25
|
+
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
|
26
|
+
|
27
|
+
steps:
|
28
|
+
- uses: actions/checkout@v3
|
29
|
+
- name: Set up Ruby
|
30
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
31
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
32
|
+
# uses: ruby/setup-ruby@v1
|
33
|
+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
34
|
+
with:
|
35
|
+
ruby-version: ${{ matrix.ruby-version }}
|
36
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
37
|
+
- name: Run tests
|
38
|
+
run: bundle exec rake
|
data/.gitignore
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
*~
|
2
|
+
|
3
|
+
*.gem
|
4
|
+
/.config
|
5
|
+
/coverage/
|
6
|
+
/InstalledFiles
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/spec/examples.txt
|
10
|
+
/test/tmp/
|
11
|
+
/test/version_tmp/
|
12
|
+
/tmp/
|
13
|
+
|
14
|
+
.byebug_history
|
15
|
+
|
16
|
+
/.yardoc/
|
17
|
+
/_yardoc/
|
18
|
+
/rdoc/
|
19
|
+
|
20
|
+
/.bundle/
|
21
|
+
/vendor/bundle
|
22
|
+
/lib/bundler/man/
|
23
|
+
|
24
|
+
Gemfile.lock
|
25
|
+
.ruby-version
|
26
|
+
.ruby-gemset
|
27
|
+
|
28
|
+
.rvmrc
|
29
|
+
|
30
|
+
# References:
|
31
|
+
# * https://www.gitignore.io/api/ruby
|
32
|
+
# * https://github.com/github/gitignore/blob/main/Ruby.gitignore
|
data/ChangeLog
CHANGED
@@ -1,3 +1,369 @@
|
|
1
|
+
commit 1bf3a415b694e34f112ed082184c5bdf21157d3b
|
2
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
3
|
+
Date: Wed Sep 27 22:54:17 2023 +0900
|
4
|
+
|
5
|
+
update release notes for upcoming BioRuby 2.0.5
|
6
|
+
|
7
|
+
RELEASE_NOTES.rdoc | 36 ++++++++++++++++++++++++++++++++++++
|
8
|
+
1 file changed, 36 insertions(+)
|
9
|
+
|
10
|
+
commit e7cd12319f207da77cfcde822bfc7e158897a42b
|
11
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
12
|
+
Date: Wed Sep 27 22:18:54 2023 +0900
|
13
|
+
|
14
|
+
README.rdoc: change recommended Ruby versions
|
15
|
+
|
16
|
+
README.rdoc | 2 +-
|
17
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
18
|
+
|
19
|
+
commit 631f2546ca5fa9e499d55bd20053e81bb3efa206
|
20
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
21
|
+
Date: Wed Sep 27 21:58:24 2023 +0900
|
22
|
+
|
23
|
+
PTS1 site seems to be migrated to https
|
24
|
+
|
25
|
+
lib/bio/appl/pts1.rb | 2 +-
|
26
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
27
|
+
|
28
|
+
commit f31fbbaa27532cd29c2f7303e729a97a6843b297
|
29
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
30
|
+
Date: Wed Sep 27 21:40:26 2023 +0900
|
31
|
+
|
32
|
+
POST path seems to be changed in remote BLAST in genome.jp (GenomeNet)
|
33
|
+
|
34
|
+
lib/bio/appl/blast/genomenet.rb | 3 ++-
|
35
|
+
1 file changed, 2 insertions(+), 1 deletion(-)
|
36
|
+
|
37
|
+
commit 9013c2f8b90fc1f56d410d78007dc500af87ee45
|
38
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
39
|
+
Date: Wed Sep 27 18:41:32 2023 +0900
|
40
|
+
|
41
|
+
regenerate bioruby.gemspec with rake regemspec
|
42
|
+
|
43
|
+
bioruby.gemspec | 17 +++++++----------
|
44
|
+
1 file changed, 7 insertions(+), 10 deletions(-)
|
45
|
+
|
46
|
+
commit 6681c10f947290fc90b410c7620968164d777c85
|
47
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
48
|
+
Date: Wed Sep 27 18:29:40 2023 +0900
|
49
|
+
|
50
|
+
appveyor.yml: disable 31-x64 because of stringio 3.0.8 build failure
|
51
|
+
|
52
|
+
appveyor.yml | 2 +-
|
53
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
54
|
+
|
55
|
+
commit 002227f52b05144668214b5c460055d002d865a1
|
56
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
57
|
+
Date: Wed Sep 27 18:11:53 2023 +0900
|
58
|
+
|
59
|
+
remove files/dirs only used from older appveyor.yml
|
60
|
+
|
61
|
+
gemfiles/Gemfile.windows | 6 ------
|
62
|
+
1 file changed, 6 deletions(-)
|
63
|
+
delete mode 100644 gemfiles/Gemfile.windows
|
64
|
+
|
65
|
+
commit e47f4dc8026cf78ab9daaa59e023512081aa88a1
|
66
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
67
|
+
Date: Wed Sep 27 18:01:26 2023 +0900
|
68
|
+
|
69
|
+
update appveyor.yml
|
70
|
+
|
71
|
+
* Visual Studio 2019 image is specified
|
72
|
+
* Branch "incoming" is added
|
73
|
+
* Not to use customized Gemfile
|
74
|
+
* Not to build and install gem but only to execute rake normally
|
75
|
+
* Update ruby versions
|
76
|
+
* Add installation retry and caching, copied from jekyll repository
|
77
|
+
* References:
|
78
|
+
* https://www.appveyor.com/docs/lang/ruby/
|
79
|
+
* https://github.com/jekyll/jekyll/blob/master/appveyor.yml
|
80
|
+
|
81
|
+
appveyor.yml | 27 ++++++++++++++-------------
|
82
|
+
1 file changed, 14 insertions(+), 13 deletions(-)
|
83
|
+
|
84
|
+
commit b3977e58cde42f0c56fd3dccd6847d162dc349e8
|
85
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
86
|
+
Date: Wed Sep 27 17:03:33 2023 +0900
|
87
|
+
|
88
|
+
remove files only used for Travis-CI, mentioned in .travis.yml
|
89
|
+
|
90
|
+
gemfiles/Gemfile.travis-jruby1.8 | 6 ------
|
91
|
+
gemfiles/Gemfile.travis-jruby1.9 | 5 -----
|
92
|
+
gemfiles/Gemfile.travis-rbx | 10 ----------
|
93
|
+
gemfiles/Gemfile.travis-ruby1.8 | 6 ------
|
94
|
+
gemfiles/Gemfile.travis-ruby1.9 | 5 -----
|
95
|
+
gemfiles/modify-Gemfile.rb | 28 ----------------------------
|
96
|
+
gemfiles/prepare-gemspec.rb | 29 -----------------------------
|
97
|
+
7 files changed, 89 deletions(-)
|
98
|
+
delete mode 100644 gemfiles/Gemfile.travis-jruby1.8
|
99
|
+
delete mode 100644 gemfiles/Gemfile.travis-jruby1.9
|
100
|
+
delete mode 100644 gemfiles/Gemfile.travis-rbx
|
101
|
+
delete mode 100644 gemfiles/Gemfile.travis-ruby1.8
|
102
|
+
delete mode 100644 gemfiles/Gemfile.travis-ruby1.9
|
103
|
+
delete mode 100644 gemfiles/modify-Gemfile.rb
|
104
|
+
delete mode 100644 gemfiles/prepare-gemspec.rb
|
105
|
+
|
106
|
+
commit f7a2063353351f1b7341e98857f25e182c41adaa
|
107
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
108
|
+
Date: Wed Sep 27 16:44:58 2023 +0900
|
109
|
+
|
110
|
+
remove .travis.yml
|
111
|
+
|
112
|
+
* Also remove webhook for Travis-CI in GitHub settings
|
113
|
+
* Thanks to Travis-CI to run CI for a long time.
|
114
|
+
* Thanks to Open Bioinformatics Foundation for funding to
|
115
|
+
automatic testing of pull requests for a long time.
|
116
|
+
(https://www.open-bio.org/2012/07/30/travis-ci-for-testing/ ).
|
117
|
+
|
118
|
+
.travis.yml | 71 -------------------------------------------------------------
|
119
|
+
1 file changed, 71 deletions(-)
|
120
|
+
delete mode 100644 .travis.yml
|
121
|
+
|
122
|
+
commit 3ea8ecdd482ca2b5c8525959f37ed8f0f9a881e6
|
123
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
124
|
+
Date: Wed Sep 27 16:10:15 2023 +0900
|
125
|
+
|
126
|
+
ruby.yml: add "incoming" branch
|
127
|
+
|
128
|
+
.github/workflows/ruby.yml | 4 ++--
|
129
|
+
1 file changed, 2 insertions(+), 2 deletions(-)
|
130
|
+
|
131
|
+
commit 350587b2b16532078e8bd5f303df96a5dc5a0d70
|
132
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
133
|
+
Date: Wed Sep 27 16:04:48 2023 +0900
|
134
|
+
|
135
|
+
ruby.yml: add ruby 3.1 and 3.2
|
136
|
+
|
137
|
+
.github/workflows/ruby.yml | 2 +-
|
138
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
139
|
+
|
140
|
+
commit 6a0de6744b7324a3a04e5c3d7468d5aec84608b1
|
141
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
142
|
+
Date: Wed Sep 27 15:43:27 2023 +0900
|
143
|
+
|
144
|
+
prepare for BioRuby 2.0.5 release
|
145
|
+
|
146
|
+
lib/bio/version.rb | 2 +-
|
147
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
148
|
+
|
149
|
+
commit 1c77ef24514e87f98be72792646910285be8498f
|
150
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
151
|
+
Date: Wed Sep 27 14:42:57 2023 +0900
|
152
|
+
|
153
|
+
Create ruby.yml
|
154
|
+
|
155
|
+
Create ruby.yml from the template by GitHub
|
156
|
+
|
157
|
+
.github/workflows/ruby.yml | 38 ++++++++++++++++++++++++++++++++++++++
|
158
|
+
1 file changed, 38 insertions(+)
|
159
|
+
create mode 100644 .github/workflows/ruby.yml
|
160
|
+
|
161
|
+
commit 22b7217c5c830013cb53cb297e6a07e940d60ddc
|
162
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
163
|
+
Date: Wed Sep 27 13:55:50 2023 +0900
|
164
|
+
|
165
|
+
add .gitignore
|
166
|
+
|
167
|
+
* References:
|
168
|
+
* https://www.gitignore.io/api/ruby
|
169
|
+
* https://github.com/github/gitignore/blob/main/Ruby.gitignore
|
170
|
+
|
171
|
+
.gitignore | 32 ++++++++++++++++++++++++++++++++
|
172
|
+
1 file changed, 32 insertions(+)
|
173
|
+
create mode 100644 .gitignore
|
174
|
+
|
175
|
+
commit 1244da434f1a46d85a3204f9ba74d038c9535631
|
176
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
177
|
+
Date: Wed Sep 27 11:06:49 2023 +0900
|
178
|
+
|
179
|
+
added gems that are no longer "default" gems in recent Ruby versions
|
180
|
+
|
181
|
+
* Added gems that are no longer the default gems:
|
182
|
+
* "rexml" -- since Ruby 3.0
|
183
|
+
* "matrix" -- since Ruby 3.1
|
184
|
+
|
185
|
+
Gemfile | 3 +++
|
186
|
+
1 file changed, 3 insertions(+)
|
187
|
+
|
188
|
+
commit bd77c7a25eca7681f0176c2425d84415461bcc61
|
189
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
190
|
+
Date: Tue Sep 26 17:52:03 2023 +0900
|
191
|
+
|
192
|
+
update tests to reflect changes of hsa:7422 (KEGG GENES)
|
193
|
+
|
194
|
+
test/network/bio/db/kegg/test_genes_hsa7422.rb | 38 ++++++++++++++++++--------
|
195
|
+
1 file changed, 26 insertions(+), 12 deletions(-)
|
196
|
+
|
197
|
+
commit 0eca7bba8ee26f2bc4db86b10053e291cd1ab8a9
|
198
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
199
|
+
Date: Tue Sep 26 17:50:31 2023 +0900
|
200
|
+
|
201
|
+
add assertions to suppress warnings when ruby -v
|
202
|
+
|
203
|
+
test/functional/bio/test_command.rb | 2 ++
|
204
|
+
1 file changed, 2 insertions(+)
|
205
|
+
|
206
|
+
commit 34f56a39baadd5247423588579330f279ab220f5
|
207
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
208
|
+
Date: Tue Sep 26 17:48:24 2023 +0900
|
209
|
+
|
210
|
+
update test/data/uniprot/P49144.uniprot and change related tests
|
211
|
+
|
212
|
+
test/data/uniprot/P49144.uniprot | 13 +++++++++----
|
213
|
+
test/unit/bio/db/embl/test_uniprotkb_P49144.rb | 4 ++--
|
214
|
+
2 files changed, 11 insertions(+), 6 deletions(-)
|
215
|
+
|
216
|
+
commit 2a9f6b0b0bf10a376dff48da58b74eecb40e8553
|
217
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
218
|
+
Date: Tue Sep 26 17:34:23 2023 +0900
|
219
|
+
|
220
|
+
Bug fix: Bio::UniProtKB#oh: OH lines parser error occurred for P03589
|
221
|
+
|
222
|
+
lib/bio/db/embl/uniprotkb.rb | 51 +++++++++++++++++++++++++++++++-------------
|
223
|
+
1 file changed, 36 insertions(+), 15 deletions(-)
|
224
|
+
|
225
|
+
commit 5a644566891b274cc9532b926d4380899b7725af
|
226
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
227
|
+
Date: Tue Sep 26 17:28:54 2023 +0900
|
228
|
+
|
229
|
+
Add a test class to parse UniProtKB P03589 with the data
|
230
|
+
|
231
|
+
LEGAL | 1 +
|
232
|
+
test/data/uniprot/P03589.uniprot | 127 +++++++++
|
233
|
+
test/unit/bio/db/embl/test_uniprotkb_P03589.rb | 378 +++++++++++++++++++++++++
|
234
|
+
3 files changed, 506 insertions(+)
|
235
|
+
create mode 100644 test/data/uniprot/P03589.uniprot
|
236
|
+
create mode 100644 test/unit/bio/db/embl/test_uniprotkb_P03589.rb
|
237
|
+
|
238
|
+
commit 3273d1e9f7fa625fa1120ab17b85a222f9142cff
|
239
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
240
|
+
Date: Thu Oct 6 23:17:17 2022 +0900
|
241
|
+
|
242
|
+
Bug fix: suppress NoMethodError when parsing CC lines
|
243
|
+
|
244
|
+
* Bio::UniProtKB#cc: When parsing a nonexistent CC topic,
|
245
|
+
"NoMethodError: undefined method `join' for nil:NilClass"
|
246
|
+
was raised. To suppress the error, changed to return nil
|
247
|
+
if the given data is nil.
|
248
|
+
|
249
|
+
lib/bio/db/embl/uniprotkb.rb | 8 ++++++++
|
250
|
+
1 file changed, 8 insertions(+)
|
251
|
+
|
252
|
+
commit c426a71de2ed6bb58cd097cecc221f12c0a0ab8a
|
253
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
254
|
+
Date: Thu Oct 6 23:10:42 2022 +0900
|
255
|
+
|
256
|
+
Another tests for the FT lines format change since UniProt release 2019_11
|
257
|
+
|
258
|
+
LEGAL | 1 +
|
259
|
+
test/data/uniprot/P49144.uniprot | 227 ++++++++++++++++
|
260
|
+
test/unit/bio/db/embl/test_uniprotkb_P49144.rb | 359 +++++++++++++++++++++++++
|
261
|
+
3 files changed, 587 insertions(+)
|
262
|
+
create mode 100644 test/data/uniprot/P49144.uniprot
|
263
|
+
create mode 100644 test/unit/bio/db/embl/test_uniprotkb_P49144.rb
|
264
|
+
|
265
|
+
commit a9af82b3c61ebaa4351c7dfdfa3d1a1c09581b73
|
266
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
267
|
+
Date: Thu Oct 6 23:00:37 2022 +0900
|
268
|
+
|
269
|
+
more fix for FT lines format change since UniProt release 2019_11
|
270
|
+
|
271
|
+
* Bio::UniProtKB#ft: When the end position is empty, end position
|
272
|
+
is regarded as the same as start position.
|
273
|
+
This fix the bug:
|
274
|
+
https://github.com/bioruby/bioruby/issues/147#issuecomment-1246458688
|
275
|
+
|
276
|
+
lib/bio/db/embl/uniprotkb.rb | 12 ++++++++----
|
277
|
+
1 file changed, 8 insertions(+), 4 deletions(-)
|
278
|
+
|
279
|
+
commit 5d1cc85ff9e028f4663d6a4ac1e312b50eb50c72
|
280
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
281
|
+
Date: Tue Sep 13 21:20:12 2022 +0900
|
282
|
+
|
283
|
+
BioRuby 2.0.4 is released
|
284
|
+
|
285
|
+
ChangeLog | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
286
|
+
1 file changed, 79 insertions(+)
|
287
|
+
|
288
|
+
commit 1bc877e557e165b42eea992d89f19a63996cb586
|
289
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
290
|
+
Date: Tue Sep 13 21:19:01 2022 +0900
|
291
|
+
|
292
|
+
regenerate bioruby.gemspec with rake regemspec
|
293
|
+
|
294
|
+
bioruby.gemspec | 4 +++-
|
295
|
+
1 file changed, 3 insertions(+), 1 deletion(-)
|
296
|
+
|
297
|
+
commit 190e4751b84cc45cbce636c4414482a8169b08df
|
298
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
299
|
+
Date: Tue Sep 13 21:18:06 2022 +0900
|
300
|
+
|
301
|
+
prepare for BioRuby 2.0.4 release
|
302
|
+
|
303
|
+
lib/bio/version.rb | 2 +-
|
304
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
305
|
+
|
306
|
+
commit a666639e0393e96b2de0bbcb447c13f8a14ad06d
|
307
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
308
|
+
Date: Tue Sep 13 21:17:11 2022 +0900
|
309
|
+
|
310
|
+
update release notes for upcoming BioRuby 2.0.4
|
311
|
+
|
312
|
+
RELEASE_NOTES.rdoc | 14 ++++++++++++++
|
313
|
+
1 file changed, 14 insertions(+)
|
314
|
+
|
315
|
+
commit c0d197343dd7fd8999d04083c9e8f24fa37a2f93
|
316
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
317
|
+
Date: Tue Sep 13 21:13:40 2022 +0900
|
318
|
+
|
319
|
+
License of UniProt data is CC BY 4.0
|
320
|
+
|
321
|
+
LEGAL | 9 +++++++++
|
322
|
+
1 file changed, 9 insertions(+)
|
323
|
+
|
324
|
+
commit e670102e6d4deb04c1fcae62459cc02861132d25
|
325
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
326
|
+
Date: Tue Sep 13 21:01:50 2022 +0900
|
327
|
+
|
328
|
+
Bug fix: Bio::UniProtKB#protein_name and #synonyms may raise error
|
329
|
+
|
330
|
+
* Bug fix: Bio::UniProtKB#protein_name and #synonyms may raise error
|
331
|
+
after calling Bio::UniProtKB#de method.
|
332
|
+
|
333
|
+
lib/bio/db/embl/uniprotkb.rb | 25 ++++++++++++++++++-------
|
334
|
+
test/unit/bio/db/embl/test_uniprotkb_P28907.rb | 11 +++++++++++
|
335
|
+
2 files changed, 29 insertions(+), 7 deletions(-)
|
336
|
+
|
337
|
+
commit 9c04e08e8d1316ffd7fc15ab311cea5dd6937d36
|
338
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
339
|
+
Date: Tue Sep 13 20:44:46 2022 +0900
|
340
|
+
|
341
|
+
Supports format change of FT lines since UniProt release 2019_11
|
342
|
+
|
343
|
+
* Bio::UniProtKB#ft: Supports text format change of FT lines since
|
344
|
+
UniProt release 2019_11. (Details of the format changes:
|
345
|
+
https://www.uniprot.org/release-notes/2019-12-18-release#text%5Fft )
|
346
|
+
|
347
|
+
This closes https://github.com/bioruby/bioruby/issues/147 .
|
348
|
+
|
349
|
+
* Tests are added with a new test data
|
350
|
+
|
351
|
+
lib/bio/db/embl/uniprotkb.rb | 122 +++++-
|
352
|
+
test/data/uniprot/P28907.uniprot | 551 +++++++++++++++++++++++++
|
353
|
+
test/unit/bio/db/embl/test_uniprotkb_P28907.rb | 314 ++++++++++++++
|
354
|
+
3 files changed, 983 insertions(+), 4 deletions(-)
|
355
|
+
create mode 100644 test/data/uniprot/P28907.uniprot
|
356
|
+
create mode 100644 test/unit/bio/db/embl/test_uniprotkb_P28907.rb
|
357
|
+
|
358
|
+
commit b18ee463d4328b5ef619733b46f568b18459be7a
|
359
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
360
|
+
Date: Fri Nov 5 23:49:18 2021 +0900
|
361
|
+
|
362
|
+
BioRuby 2.0.3 is released
|
363
|
+
|
364
|
+
ChangeLog | 136 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
365
|
+
1 file changed, 136 insertions(+)
|
366
|
+
|
1
367
|
commit c16e230d15cf30478a3739563b4e4745dc57ef82
|
2
368
|
Author: Naohisa Goto <ng@bioruby.org>
|
3
369
|
Date: Fri Nov 5 23:44:45 2021 +0900
|
data/Gemfile
CHANGED
data/LEGAL
CHANGED
@@ -114,6 +114,17 @@ test/data/uniprot/p53_human.uniprot:
|
|
114
114
|
removed.
|
115
115
|
|
116
116
|
|
117
|
+
test/data/uniprot/P03589.uniprot:
|
118
|
+
test/data/uniprot/P28907.uniprot:
|
119
|
+
test/data/uniprot/P49144.uniprot:
|
120
|
+
|
121
|
+
Copyrighted by the UniProt Consortium, see https://www.uniprot.org/terms
|
122
|
+
Distributed under the Creative Commons Attribution (CC BY 4.0) License
|
123
|
+
|
124
|
+
https://www.uniprot.org/help/license
|
125
|
+
https://creativecommons.org/licenses/by/4.0/
|
126
|
+
|
127
|
+
|
117
128
|
GPL:
|
118
129
|
|
119
130
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
data/README.rdoc
CHANGED
@@ -112,7 +112,7 @@ and can be obtained by the following procedure:
|
|
112
112
|
== REQUIREMENTS
|
113
113
|
|
114
114
|
* Ruby 2.0.0 or later -- http://www.ruby-lang.org/
|
115
|
-
* Ruby 2.
|
115
|
+
* Ruby 2.7.8, 3.0.6, 3.1.4, 3.2.2 or later is recommended.
|
116
116
|
* See KNOWN_ISSUES.rdoc for Ruby version specific problems.
|
117
117
|
|
118
118
|
|
data/RELEASE_NOTES.rdoc
CHANGED
@@ -1,3 +1,53 @@
|
|
1
|
+
= BioRuby 2.0.5 RELEASE NOTES
|
2
|
+
|
3
|
+
Some fixes have been made in BioRuby 2.0.5 after the release of 2.0.4.
|
4
|
+
|
5
|
+
== Fixes
|
6
|
+
|
7
|
+
* Bio::UniProtKB#ft: Additional bug fixes for parsing FT lines
|
8
|
+
since UniProt release 2019_11.
|
9
|
+
(https://github.com/bioruby/bioruby/issues/147 )
|
10
|
+
* Bio::UniProtKB#oh: Fixed parse error when parsing 1A_AMVLE (P03589).
|
11
|
+
* Bio::Blast::Remote::GenomeNet: Fixed errors caused by the change of
|
12
|
+
GenomeNet BLAST webpage's internal URL (which is unofficial
|
13
|
+
internal URL and may subject to be changed without notices).
|
14
|
+
* Bio::PTS1: Fixed errors due to the PTS1 website URL change
|
15
|
+
from http to https.
|
16
|
+
|
17
|
+
== Changes for developers
|
18
|
+
|
19
|
+
=== Changes of CI (Continuous Integration)
|
20
|
+
|
21
|
+
* Started using GitHub Actions for CI.
|
22
|
+
* Stopped using Travis-CI for CI.
|
23
|
+
* Fixed AppVeyor CI errors.
|
24
|
+
|
25
|
+
=== Changes of Gemfile and related files
|
26
|
+
|
27
|
+
* Gemfile: Added "matrix" and "rexml" gems that are excluded from
|
28
|
+
the default gems in recent Ruby versions.
|
29
|
+
* gemfiles/*: Removed because of the CI changes.
|
30
|
+
|
31
|
+
=== Others
|
32
|
+
|
33
|
+
* .gitignore is added.
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
= BioRuby 2.0.4 RELEASE NOTES
|
38
|
+
|
39
|
+
Some fixes have been made in BioRuby 2.0.4 after the release of 2.0.3.
|
40
|
+
|
41
|
+
== Fixes
|
42
|
+
|
43
|
+
* Bio::UniProtKB#ft: Supports text format change of FT lines since
|
44
|
+
UniProt release 2019_11.
|
45
|
+
(https://github.com/bioruby/bioruby/issues/147 )
|
46
|
+
* Bio::UniProtKB#protein_name and #synonyms methods may raise error
|
47
|
+
after calling Bio::UniProtKB#de method.
|
48
|
+
|
49
|
+
|
50
|
+
|
1
51
|
= BioRuby 2.0.3 RELEASE NOTES
|
2
52
|
|
3
53
|
Some bug fixes have been made in BioRuby 2.0.3 after the release of 2.0.2.
|
data/appveyor.yml
CHANGED
@@ -1,29 +1,30 @@
|
|
1
1
|
---
|
2
2
|
version: "{build}"
|
3
|
+
image: Visual Studio 2019
|
3
4
|
branches:
|
4
5
|
only:
|
5
6
|
- master
|
7
|
+
- incoming
|
6
8
|
clone_depth: 10
|
7
9
|
install:
|
8
10
|
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
9
|
-
-
|
10
|
-
- bundle install
|
11
|
-
- bundle exec rake regemspec
|
12
|
-
- bundle exec rake gem
|
13
|
-
- bundle exec gem install pkg/bio-*.gem
|
14
|
-
- echo gem "bio" >> gemfiles\Gemfile.windows
|
11
|
+
- bundle config set --local path vendor\bundle
|
12
|
+
- bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS%
|
15
13
|
build: off
|
16
14
|
before_test:
|
17
15
|
- ruby --version
|
18
16
|
- gem --version
|
19
17
|
- bundle --version
|
20
18
|
test_script:
|
21
|
-
- bundle exec rake
|
19
|
+
- bundle exec rake
|
22
20
|
environment:
|
23
21
|
matrix:
|
24
|
-
- ruby_version: "
|
25
|
-
- ruby_version: "
|
26
|
-
- ruby_version: "
|
27
|
-
- ruby_version: "
|
28
|
-
- ruby_version: "
|
29
|
-
- ruby_version: "
|
22
|
+
- ruby_version: "27"
|
23
|
+
- ruby_version: "27-x64"
|
24
|
+
- ruby_version: "30"
|
25
|
+
- ruby_version: "30-x64"
|
26
|
+
- ruby_version: "31"
|
27
|
+
# - ruby_version: "31-x64"
|
28
|
+
cache:
|
29
|
+
# If one of the files after the right arrow changes, cache will be invalidated
|
30
|
+
- 'vendor\bundle -> appveyor.yml,Gemfile,bioruby.gemspec'
|
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.5"
|
7
7
|
|
8
8
|
s.author = "BioRuby project"
|
9
9
|
s.email = "staff@bioruby.org"
|
@@ -15,7 +15,8 @@ Gem::Specification.new do |s|
|
|
15
15
|
|
16
16
|
s.platform = Gem::Platform::RUBY
|
17
17
|
s.files = [
|
18
|
-
".
|
18
|
+
".github/workflows/ruby.yml",
|
19
|
+
".gitignore",
|
19
20
|
"BSDL",
|
20
21
|
"COPYING",
|
21
22
|
"COPYING.ja",
|
@@ -49,14 +50,6 @@ Gem::Specification.new do |s|
|
|
49
50
|
"doc/Tutorial.rd.ja.html",
|
50
51
|
"doc/bioruby.css",
|
51
52
|
"etc/bioinformatics/seqdatabase.ini",
|
52
|
-
"gemfiles/Gemfile.travis-jruby1.8",
|
53
|
-
"gemfiles/Gemfile.travis-jruby1.9",
|
54
|
-
"gemfiles/Gemfile.travis-rbx",
|
55
|
-
"gemfiles/Gemfile.travis-ruby1.8",
|
56
|
-
"gemfiles/Gemfile.travis-ruby1.9",
|
57
|
-
"gemfiles/Gemfile.windows",
|
58
|
-
"gemfiles/modify-Gemfile.rb",
|
59
|
-
"gemfiles/prepare-gemspec.rb",
|
60
53
|
"lib/bio.rb",
|
61
54
|
"lib/bio/alignment.rb",
|
62
55
|
"lib/bio/appl/bl2seq/report.rb",
|
@@ -454,6 +447,9 @@ Gem::Specification.new do |s|
|
|
454
447
|
"test/data/sim4/simple2-A4.sim4",
|
455
448
|
"test/data/soft/GDS100_partial.soft",
|
456
449
|
"test/data/soft/GSE3457_family_partial.soft",
|
450
|
+
"test/data/uniprot/P03589.uniprot",
|
451
|
+
"test/data/uniprot/P28907.uniprot",
|
452
|
+
"test/data/uniprot/P49144.uniprot",
|
457
453
|
"test/data/uniprot/p53_human.uniprot",
|
458
454
|
"test/functional/bio/sequence/test_output_embl.rb",
|
459
455
|
"test/functional/bio/test_command.rb",
|
@@ -498,6 +494,9 @@ Gem::Specification.new do |s|
|
|
498
494
|
"test/unit/bio/db/embl/test_embl_to_bioseq.rb",
|
499
495
|
"test/unit/bio/db/embl/test_uniprot.rb",
|
500
496
|
"test/unit/bio/db/embl/test_uniprotkb.rb",
|
497
|
+
"test/unit/bio/db/embl/test_uniprotkb_P03589.rb",
|
498
|
+
"test/unit/bio/db/embl/test_uniprotkb_P28907.rb",
|
499
|
+
"test/unit/bio/db/embl/test_uniprotkb_P49144.rb",
|
501
500
|
"test/unit/bio/db/embl/test_uniprotkb_new_part.rb",
|
502
501
|
"test/unit/bio/db/fasta/test_defline.rb",
|
503
502
|
"test/unit/bio/db/fasta/test_defline_misc.rb",
|
@@ -162,7 +162,8 @@ module Bio::Blast::Remote
|
|
162
162
|
#host = "blast.genome.jp"
|
163
163
|
#path = "/sit-bin/nph-blast"
|
164
164
|
#path = "/sit-bin/blast" #2005.08.12
|
165
|
-
path = "/tools-bin/blast" #2012.01.12
|
165
|
+
#path = "/tools-bin/blast" #2012.01.12
|
166
|
+
path = "/tools-bin/blastplus" #2018.02.09???
|
166
167
|
|
167
168
|
options = make_command_line_options
|
168
169
|
opt = Bio::Blast::NCBIOptions.new(options)
|
data/lib/bio/appl/pts1.rb
CHANGED
@@ -90,7 +90,7 @@ class PTS1
|
|
90
90
|
# serv_fungi_specific = Bio::PTS1.new(2) # See Bio::PTS1::FUNCTION.
|
91
91
|
#
|
92
92
|
def initialize(func = 'METAZOA-specific')
|
93
|
-
@uri = "
|
93
|
+
@uri = "https://mendel.imp.ac.at/jspcgi/cgi-bin/pts1/pts1.cgi"
|
94
94
|
@output = nil
|
95
95
|
@function = function(func)
|
96
96
|
end
|