bio 2.0.5 → 2.0.6
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 +7 -16
- data/ChangeLog +146 -0
- data/README.rdoc +1 -1
- data/RELEASE_NOTES.rdoc +28 -0
- data/bioruby.gemspec +3 -1
- data/doc/Tutorial.md +1274 -0
- data/doc/Tutorial_ja.md +2595 -0
- data/lib/bio/appl/clustalw/report.rb +3 -2
- data/lib/bio/appl/iprscan/report.rb +2 -1
- data/lib/bio/appl/meme/mast.rb +2 -1
- data/lib/bio/appl/paml/common.rb +2 -1
- data/lib/bio/db/embl/common.rb +5 -2
- data/lib/bio/db/fastq.rb +3 -2
- data/lib/bio/db/gff.rb +14 -8
- data/lib/bio/db/newick.rb +6 -5
- data/lib/bio/db/pdb/chain.rb +2 -1
- data/lib/bio/db/pdb/pdb.rb +2 -1
- data/lib/bio/db/prosite.rb +2 -0
- data/lib/bio/db.rb +5 -4
- data/lib/bio/io/flatfile/buffer.rb +2 -1
- data/lib/bio/io/flatfile/splitter.rb +2 -1
- data/lib/bio/pathway.rb +2 -1
- data/lib/bio/sequence/common.rb +2 -1
- data/lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb +3 -2
- data/lib/bio/util/sirna.rb +3 -2
- data/lib/bio/version.rb +1 -1
- data/test/network/bio/db/kegg/test_genes_hsa7422.rb +8 -10
- data/test/unit/bio/appl/iprscan/test_report.rb +3 -2
- data/test/unit/bio/io/flatfile/test_splitter.rb +7 -4
- data/test/unit/bio/sequence/test_common.rb +3 -2
- data/test/unit/bio/test_alignment.rb +17 -16
- data/test/unit/bio/test_sequence.rb +3 -2
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ebeaea72722c62c0a58f73b53c5fca90c20416ca8c31bd7ba009d48c955ab03
|
4
|
+
data.tar.gz: 29f27ce9879bff07f9f072f9a4f7f0c7112f5f6ebe0906e40bc29c7b45f3094b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45968025bd60f3aede23037679f14af264134e471a42e1ad21d1f90630874cf39997a8dd9c81446c1f783769a17834143316a037e240a3b2966869a86e0da4a0
|
7
|
+
data.tar.gz: 139e2606d1c31e25aba687d2539148ba46482cb8364949932e8f3e89c711380ec83426f949f7e8edb64ef3672a1d8d6673315c12f23762017220a2adb151a2f6
|
data/.github/workflows/ruby.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
|
-
#
|
2
|
-
#
|
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
|
1
|
+
#
|
2
|
+
# References: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
3
|
|
8
4
|
name: Ruby
|
9
5
|
|
@@ -18,19 +14,14 @@ permissions:
|
|
18
14
|
|
19
15
|
jobs:
|
20
16
|
test:
|
21
|
-
|
22
|
-
runs-on: ubuntu-latest
|
23
17
|
strategy:
|
18
|
+
fail-fast: false
|
24
19
|
matrix:
|
25
|
-
ruby-version: ['2.
|
26
|
-
|
20
|
+
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', head, jruby, jruby-head]
|
21
|
+
runs-on: ubuntu-latest
|
27
22
|
steps:
|
28
|
-
- uses: actions/checkout@
|
29
|
-
-
|
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
|
23
|
+
- uses: actions/checkout@v4
|
24
|
+
- uses: ruby/setup-ruby@v1
|
34
25
|
with:
|
35
26
|
ruby-version: ${{ matrix.ruby-version }}
|
36
27
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/ChangeLog
CHANGED
@@ -1,3 +1,149 @@
|
|
1
|
+
commit a5fdb471873ec9f9f11eea627d76dbd4c2e4efc5
|
2
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
3
|
+
Date: Fri Mar 7 18:26:32 2025 +0900
|
4
|
+
|
5
|
+
ruby.yml: update ruby versions and other descriptions
|
6
|
+
|
7
|
+
.github/workflows/ruby.yml | 23 +++++++----------------
|
8
|
+
1 file changed, 7 insertions(+), 16 deletions(-)
|
9
|
+
|
10
|
+
commit 98c24b6ed9fb508b5bfc72ff965fb77e0ec7c35d
|
11
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
12
|
+
Date: Fri Mar 7 16:58:56 2025 +0900
|
13
|
+
|
14
|
+
change recommended Ruby versions
|
15
|
+
|
16
|
+
README.rdoc | 2 +-
|
17
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
18
|
+
|
19
|
+
commit 948377e3fa198e24ac2655f924b903f5296b4955
|
20
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
21
|
+
Date: Fri Mar 7 16:55:20 2025 +0900
|
22
|
+
|
23
|
+
update release notes for upcoming BioRuby 2.0.6
|
24
|
+
|
25
|
+
RELEASE_NOTES.rdoc | 28 ++++++++++++++++++++++++++++
|
26
|
+
1 file changed, 28 insertions(+)
|
27
|
+
|
28
|
+
commit 123910e5d18caa247c40ecede67015c2e23c0538
|
29
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
30
|
+
Date: Fri Mar 7 16:25:44 2025 +0900
|
31
|
+
|
32
|
+
regenerate bioruby.gemspec with rake regemspec
|
33
|
+
|
34
|
+
bioruby.gemspec | 4 +++-
|
35
|
+
1 file changed, 3 insertions(+), 1 deletion(-)
|
36
|
+
|
37
|
+
commit 6c110b23d446f5926579a8e92b260a71948689eb
|
38
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
39
|
+
Date: Fri Mar 7 16:20:26 2025 +0900
|
40
|
+
|
41
|
+
prepare for BioRuby 2.0.6 release
|
42
|
+
|
43
|
+
lib/bio/version.rb | 2 +-
|
44
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
45
|
+
|
46
|
+
commit 5c39d4c6a56c4fd2dc108d3350e9f60f26591ac4
|
47
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
48
|
+
Date: Fri Mar 7 16:14:13 2025 +0900
|
49
|
+
|
50
|
+
Fix test failure due to data changes of the KEGG databases
|
51
|
+
|
52
|
+
test/network/bio/db/kegg/test_genes_hsa7422.rb | 18 ++++++++----------
|
53
|
+
1 file changed, 8 insertions(+), 10 deletions(-)
|
54
|
+
|
55
|
+
commit 6f314341e303c25385027355c3365cf0a0d2ef9a
|
56
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
57
|
+
Date: Fri Mar 7 03:56:27 2025 +0900
|
58
|
+
|
59
|
+
Ruby 3.4 support: Use URI::RFC2396_PARSER if possible.
|
60
|
+
|
61
|
+
* Suppress warning: "URI::RFC3986_PARSER.unescape is obsolete.
|
62
|
+
Use URI::RFC2396_PARSER.unescape explicitly." shown in Ruby 3.4.
|
63
|
+
|
64
|
+
lib/bio/db/gff.rb | 7 ++++++-
|
65
|
+
1 file changed, 6 insertions(+), 1 deletion(-)
|
66
|
+
|
67
|
+
commit d9b83a068fbf061c7b8072e7ab2479509f9ba130
|
68
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
69
|
+
Date: Fri Mar 7 03:18:10 2025 +0900
|
70
|
+
|
71
|
+
Bug fix: Bio::PROSITE.pa2re should not modify argument string
|
72
|
+
|
73
|
+
* For suppressing "literal string will be frozen in the future" warning
|
74
|
+
in Ruby 3.4, Bio::PROSITE.pa2re(string) is changed not to modify
|
75
|
+
the given string in the argument. Modifying argument objects by a method
|
76
|
+
should generally be avoided because this behavior may cause subtle bugs
|
77
|
+
and I think this behavior is a bug.
|
78
|
+
|
79
|
+
lib/bio/db/prosite.rb | 2 ++
|
80
|
+
1 file changed, 2 insertions(+)
|
81
|
+
|
82
|
+
commit cca91ac0fa39d63b85a28d72e9b2afb56a40b984
|
83
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
84
|
+
Date: Fri Mar 7 03:07:11 2025 +0900
|
85
|
+
|
86
|
+
Ruby 3.4 support: suppress "literal string will be frozen" warnings
|
87
|
+
|
88
|
+
* Suppress "literal string will be frozen in the future" warning messages
|
89
|
+
in Ruby 3.4.
|
90
|
+
* Add "frozen_string_literal: true" magic comment in each file.
|
91
|
+
|
92
|
+
lib/bio/appl/clustalw/report.rb | 5 ++--
|
93
|
+
lib/bio/appl/iprscan/report.rb | 3 +-
|
94
|
+
lib/bio/appl/meme/mast.rb | 3 +-
|
95
|
+
lib/bio/appl/paml/common.rb | 3 +-
|
96
|
+
lib/bio/db.rb | 9 +++---
|
97
|
+
lib/bio/db/embl/common.rb | 7 +++--
|
98
|
+
lib/bio/db/fastq.rb | 5 ++--
|
99
|
+
lib/bio/db/gff.rb | 15 +++++-----
|
100
|
+
lib/bio/db/newick.rb | 11 ++++----
|
101
|
+
lib/bio/db/pdb/chain.rb | 3 +-
|
102
|
+
lib/bio/db/pdb/pdb.rb | 3 +-
|
103
|
+
lib/bio/io/flatfile/buffer.rb | 3 +-
|
104
|
+
lib/bio/io/flatfile/splitter.rb | 3 +-
|
105
|
+
lib/bio/pathway.rb | 3 +-
|
106
|
+
lib/bio/sequence/common.rb | 3 +-
|
107
|
+
.../range/sequence_range/fragment.rb | 5 ++--
|
108
|
+
lib/bio/util/sirna.rb | 5 ++--
|
109
|
+
test/unit/bio/appl/iprscan/test_report.rb | 5 ++--
|
110
|
+
test/unit/bio/io/flatfile/test_splitter.rb | 11 +++++---
|
111
|
+
test/unit/bio/sequence/test_common.rb | 5 ++--
|
112
|
+
test/unit/bio/test_alignment.rb | 33 +++++++++++-----------
|
113
|
+
test/unit/bio/test_sequence.rb | 5 ++--
|
114
|
+
22 files changed, 87 insertions(+), 61 deletions(-)
|
115
|
+
|
116
|
+
commit 89129b6045ebda95363e58f8724e30225aa62d27
|
117
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
118
|
+
Date: Fri Aug 30 16:32:33 2024 +0900
|
119
|
+
|
120
|
+
Add Tutorial.md and Tutorial_ja.md
|
121
|
+
converted from Tutorial.rd and Tutorial.rd.ja
|
122
|
+
|
123
|
+
* Add Tutorial.md and Tutorial_ja.md converted
|
124
|
+
from Tutorial.rd and Tutorial.rd.ja
|
125
|
+
by using customized rd2markdown
|
126
|
+
(https://github.com/ngoto/rd2markdown-app )
|
127
|
+
* The following command line is used
|
128
|
+
(Note: rd2markdown-app repository is downloaded to ../tmp):
|
129
|
+
$ env RUBYLIB=../tmp/rd2markdown-app/lib \
|
130
|
+
rd2 -r rd/rd2markdown-lib.rb Tutorial.rd > Tutorial.md
|
131
|
+
|
132
|
+
doc/Tutorial.md | 1274 ++++++++++++++++++++++++++
|
133
|
+
doc/Tutorial_ja.md | 2595 ++++++++++++++++++++++++++++++++++++++++++++++++++++
|
134
|
+
2 files changed, 3869 insertions(+)
|
135
|
+
create mode 100644 doc/Tutorial.md
|
136
|
+
create mode 100644 doc/Tutorial_ja.md
|
137
|
+
|
138
|
+
commit 7a1809f1e8b45fa8e38a6c8970b6319d04fa800e
|
139
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
140
|
+
Date: Wed Sep 27 23:09:03 2023 +0900
|
141
|
+
|
142
|
+
BioRuby 2.0.5 is released
|
143
|
+
|
144
|
+
ChangeLog | 287 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
145
|
+
1 file changed, 287 insertions(+)
|
146
|
+
|
1
147
|
commit 1bf3a415b694e34f112ed082184c5bdf21157d3b
|
2
148
|
Author: Naohisa Goto <ng@bioruby.org>
|
3
149
|
Date: Wed Sep 27 22:54:17 2023 +0900
|
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.7.8, 3.0.
|
115
|
+
* Ruby 2.7.8, 3.0.7, 3.1.6, 3.2.7, 3.3.7, 3.4.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,31 @@
|
|
1
|
+
= BioRuby 2.0.6 RELEASE NOTES
|
2
|
+
|
3
|
+
Some fixes have been made in BioRuby 2.0.6 after the release of 2.0.5.
|
4
|
+
|
5
|
+
== Support for Ruby 3.4
|
6
|
+
|
7
|
+
* Suppress warining: "literal string will be frozen in the future"
|
8
|
+
which is shown in Ruby 3.4.
|
9
|
+
* For the purpose, "frozen_string_literal: true" magic comment is added
|
10
|
+
in the head of many files.
|
11
|
+
* Suppress warning: "URI::RFC3986_PARSER.unescape is obsolete.
|
12
|
+
Use URI::RFC2396_PARSER.unescape explicitly." which is shown in Ruby 3.4.
|
13
|
+
|
14
|
+
== Fixes
|
15
|
+
|
16
|
+
* Bio::PROSITE.pa2re should not modify argument string object.
|
17
|
+
* This bug is found for suppressing warning in Ruby 3.4.
|
18
|
+
* Fix test failure of KEGG tests due to data changes of the KEGG databases.
|
19
|
+
|
20
|
+
== Documentation updates
|
21
|
+
|
22
|
+
* Add Tutorial.md and Tutorial_ja.md that are converted from Tutorial.rd
|
23
|
+
and Tutorial.rd.ja.
|
24
|
+
* Only the file format changes have been made. They may contain many
|
25
|
+
outdated parts. Content updates remain a future task.
|
26
|
+
|
27
|
+
|
28
|
+
|
1
29
|
= BioRuby 2.0.5 RELEASE NOTES
|
2
30
|
|
3
31
|
Some fixes have been made in BioRuby 2.0.5 after the release of 2.0.4.
|
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.6"
|
7
7
|
|
8
8
|
s.author = "BioRuby project"
|
9
9
|
s.email = "staff@bioruby.org"
|
@@ -44,10 +44,12 @@ Gem::Specification.new do |s|
|
|
44
44
|
"doc/RELEASE_NOTES-1.4.2.rdoc",
|
45
45
|
"doc/RELEASE_NOTES-1.4.3.rdoc",
|
46
46
|
"doc/RELEASE_NOTES-1.5.0.rdoc",
|
47
|
+
"doc/Tutorial.md",
|
47
48
|
"doc/Tutorial.rd",
|
48
49
|
"doc/Tutorial.rd.html",
|
49
50
|
"doc/Tutorial.rd.ja",
|
50
51
|
"doc/Tutorial.rd.ja.html",
|
52
|
+
"doc/Tutorial_ja.md",
|
51
53
|
"doc/bioruby.css",
|
52
54
|
"etc/bioinformatics/seqdatabase.ini",
|
53
55
|
"lib/bio.rb",
|