bio 2.0.4 → 2.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65cb8536e3646ee35c955bddcada6ecc10f0dda7540617f6bca71133894d25dd
4
- data.tar.gz: f7eacff38af5eec96bb377f4bc87d23fc03c3277cf843a156b5cb1b95c15afdf
3
+ metadata.gz: cc1f77f098a4d689cb475aa115be7f8d0e71a046c3eeaa3febedabedb38c6863
4
+ data.tar.gz: 0a485b281293f43c032227a4dcb626aad9cce5389620fcd6ef5f02d5cab8c3ad
5
5
  SHA512:
6
- metadata.gz: ad51098d8e668c40b0457f9bdbc58c13e179f5a7929c2264928b3257152dc13f3b0632d3c73c2ac58e7c8e679dfa28188338a51b37a8bb31898fdb887b1e56e4
7
- data.tar.gz: 54f2c6da91324094ac87f0865e9e9b0c5333b8872abc9672cac73110b94ae13b7257f96ba1a75cf358f2fbb66440b4e2790c1ec50b15a381048cf5f04acd3bf8
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,290 @@
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
+
1
288
  commit 1bc877e557e165b42eea992d89f19a63996cb586
2
289
  Author: Naohisa Goto <ng@bioruby.org>
3
290
  Date: Tue Sep 13 21:19:01 2022 +0900
data/Gemfile CHANGED
@@ -1,5 +1,8 @@
1
1
  source "https://rubygems.org"
2
2
 
3
+ gem "matrix"
4
+ gem "rexml"
5
+
3
6
  gem "rake"
4
7
  gem "rdoc"
5
8
  gem "test-unit"
data/LEGAL CHANGED
@@ -114,7 +114,9 @@ test/data/uniprot/p53_human.uniprot:
114
114
  removed.
115
115
 
116
116
 
117
+ test/data/uniprot/P03589.uniprot:
117
118
  test/data/uniprot/P28907.uniprot:
119
+ test/data/uniprot/P49144.uniprot:
118
120
 
119
121
  Copyrighted by the UniProt Consortium, see https://www.uniprot.org/terms
120
122
  Distributed under the Creative Commons Attribution (CC BY 4.0) License
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.4.6, 2.5.5, 2.6.3 or later is recommended.
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,39 @@
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
+
1
37
  = BioRuby 2.0.4 RELEASE NOTES
2
38
 
3
39
  Some fixes have been made in BioRuby 2.0.4 after the release of 2.0.3.
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
- - SET BUNDLE_GEMFILE=gemfiles/Gemfile.windows
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 gem-test
19
+ - bundle exec rake
22
20
  environment:
23
21
  matrix:
24
- - ruby_version: "23"
25
- - ruby_version: "23-x64"
26
- - ruby_version: "24"
27
- - ruby_version: "24-x64"
28
- - ruby_version: "25"
29
- - ruby_version: "25-x64"
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.4"
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
- ".travis.yml",
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,7 +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",
457
451
  "test/data/uniprot/P28907.uniprot",
452
+ "test/data/uniprot/P49144.uniprot",
458
453
  "test/data/uniprot/p53_human.uniprot",
459
454
  "test/functional/bio/sequence/test_output_embl.rb",
460
455
  "test/functional/bio/test_command.rb",
@@ -499,7 +494,9 @@ Gem::Specification.new do |s|
499
494
  "test/unit/bio/db/embl/test_embl_to_bioseq.rb",
500
495
  "test/unit/bio/db/embl/test_uniprot.rb",
501
496
  "test/unit/bio/db/embl/test_uniprotkb.rb",
497
+ "test/unit/bio/db/embl/test_uniprotkb_P03589.rb",
502
498
  "test/unit/bio/db/embl/test_uniprotkb_P28907.rb",
499
+ "test/unit/bio/db/embl/test_uniprotkb_P49144.rb",
503
500
  "test/unit/bio/db/embl/test_uniprotkb_new_part.rb",
504
501
  "test/unit/bio/db/fasta/test_defline.rb",
505
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 = "http://mendel.imp.ac.at/jspcgi/cgi-bin/pts1/pts1.cgi"
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