bio 1.4.0 → 1.4.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.
- data/ChangeLog +1712 -0
- data/KNOWN_ISSUES.rdoc +11 -1
- data/README.rdoc +3 -2
- data/RELEASE_NOTES.rdoc +65 -127
- data/bioruby.gemspec +38 -2
- data/doc/RELEASE_NOTES-1.4.0.rdoc +167 -0
- data/doc/Tutorial.rd +74 -16
- data/doc/Tutorial.rd.html +68 -16
- data/lib/bio.rb +2 -0
- data/lib/bio/appl/clustalw/report.rb +18 -0
- data/lib/bio/appl/paml/codeml/report.rb +579 -21
- data/lib/bio/command.rb +149 -21
- data/lib/bio/db/aaindex.rb +11 -1
- data/lib/bio/db/embl/sptr.rb +1 -1
- data/lib/bio/db/fasta/defline.rb +7 -2
- data/lib/bio/db/fasta/qual.rb +24 -0
- data/lib/bio/db/fasta/qual_to_biosequence.rb +29 -0
- data/lib/bio/db/fastq.rb +15 -0
- data/lib/bio/db/go.rb +2 -2
- data/lib/bio/db/kegg/common.rb +109 -5
- data/lib/bio/db/kegg/genes.rb +61 -15
- data/lib/bio/db/kegg/genome.rb +43 -38
- data/lib/bio/db/kegg/module.rb +158 -0
- data/lib/bio/db/kegg/orthology.rb +40 -1
- data/lib/bio/db/kegg/pathway.rb +254 -0
- data/lib/bio/db/medline.rb +6 -2
- data/lib/bio/io/flatfile/autodetection.rb +6 -0
- data/lib/bio/location.rb +39 -0
- data/lib/bio/reference.rb +24 -0
- data/lib/bio/sequence.rb +2 -0
- data/lib/bio/sequence/adapter.rb +1 -0
- data/lib/bio/sequence/format.rb +14 -0
- data/lib/bio/sequence/sequence_masker.rb +95 -0
- data/lib/bio/tree.rb +4 -4
- data/lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb +5 -0
- data/lib/bio/version.rb +1 -1
- data/setup.rb +5 -0
- data/test/data/KEGG/K02338.orthology +180 -52
- data/test/data/KEGG/M00118.module +44 -0
- data/test/data/KEGG/T00005.genome +140 -0
- data/test/data/KEGG/T00070.genome +34 -0
- data/test/data/KEGG/b0529.gene +47 -0
- data/test/data/KEGG/ec00072.pathway +23 -0
- data/test/data/KEGG/hsa00790.pathway +59 -0
- data/test/data/KEGG/ko00312.pathway +16 -0
- data/test/data/KEGG/map00030.pathway +37 -0
- data/test/data/KEGG/map00052.pathway +13 -0
- data/test/data/KEGG/rn00250.pathway +114 -0
- data/test/data/clustalw/example1.aln +58 -0
- data/test/data/go/selected_component.ontology +12 -0
- data/test/data/go/selected_gene_association.sgd +31 -0
- data/test/data/go/selected_wikipedia2go +13 -0
- data/test/data/medline/20146148_modified.medline +54 -0
- data/test/data/paml/codeml/models/aa.aln +26 -0
- data/test/data/paml/codeml/models/aa.dnd +13 -0
- data/test/data/paml/codeml/models/aa.ph +13 -0
- data/test/data/paml/codeml/models/alignment.phy +49 -0
- data/test/data/paml/codeml/models/results0-3.txt +312 -0
- data/test/data/paml/codeml/models/results7-8.txt +340 -0
- data/test/functional/bio/io/test_togows.rb +8 -8
- data/test/functional/bio/test_command.rb +7 -6
- data/test/unit/bio/appl/clustalw/test_report.rb +80 -0
- data/test/unit/bio/appl/paml/codeml/test_rates.rb +6 -6
- data/test/unit/bio/appl/paml/codeml/test_report.rb +231 -24
- data/test/unit/bio/appl/paml/codeml/test_report_single.rb +46 -0
- data/test/unit/bio/db/embl/test_sptr.rb +1 -1
- data/test/unit/bio/db/fasta/test_defline.rb +160 -0
- data/test/unit/bio/db/fasta/test_defline_misc.rb +490 -0
- data/test/unit/bio/db/kegg/test_genes.rb +281 -1
- data/test/unit/bio/db/kegg/test_genome.rb +408 -0
- data/test/unit/bio/db/kegg/test_module.rb +246 -0
- data/test/unit/bio/db/kegg/test_orthology.rb +95 -0
- data/test/unit/bio/db/kegg/test_pathway.rb +1250 -0
- data/test/unit/bio/db/test_aaindex.rb +8 -7
- data/test/unit/bio/db/test_fastq.rb +36 -0
- data/test/unit/bio/db/test_go.rb +171 -0
- data/test/unit/bio/db/test_medline.rb +148 -0
- data/test/unit/bio/db/test_qual.rb +9 -2
- data/test/unit/bio/sequence/test_sequence_masker.rb +169 -0
- data/test/unit/bio/test_tree.rb +260 -1
- data/test/unit/bio/util/test_contingency_table.rb +7 -7
- metadata +53 -6
data/ChangeLog
CHANGED
@@ -1,3 +1,1715 @@
|
|
1
|
+
commit 92cfda14c08b270ed1beca33153125141f88510e
|
2
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
3
|
+
Date: Fri Oct 22 13:00:09 2010 +0900
|
4
|
+
|
5
|
+
Preparation for bioruby-1.4.1 release.
|
6
|
+
|
7
|
+
bioruby.gemspec | 2 +-
|
8
|
+
lib/bio/version.rb | 2 +-
|
9
|
+
2 files changed, 2 insertions(+), 2 deletions(-)
|
10
|
+
|
11
|
+
commit d7999539392bba617b041e3120b5b2d785301f24
|
12
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
13
|
+
Date: Fri Oct 22 10:27:02 2010 +0900
|
14
|
+
|
15
|
+
Newly added issue is copied from KNOWN_ISSUES.rdoc to the release note.
|
16
|
+
|
17
|
+
RELEASE_NOTES.rdoc | 15 +++++++++++++++
|
18
|
+
1 files changed, 15 insertions(+), 0 deletions(-)
|
19
|
+
|
20
|
+
commit a9f287658441038a4e9bb220502523de039417f9
|
21
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
22
|
+
Date: Fri Oct 22 10:26:44 2010 +0900
|
23
|
+
|
24
|
+
updated description of an issue
|
25
|
+
|
26
|
+
KNOWN_ISSUES.rdoc | 12 +++++++-----
|
27
|
+
1 files changed, 7 insertions(+), 5 deletions(-)
|
28
|
+
|
29
|
+
commit bb946d1c97d1eb0de62c8b509bbfb02d67efffeb
|
30
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
31
|
+
Date: Thu Oct 21 23:17:25 2010 +0900
|
32
|
+
|
33
|
+
Added an issue about command-line string escaping on Windows with Ruby 1.9.
|
34
|
+
|
35
|
+
KNOWN_ISSUES.rdoc | 8 ++++++++
|
36
|
+
1 files changed, 8 insertions(+), 0 deletions(-)
|
37
|
+
|
38
|
+
commit fe7d26516cc6b9a3cf8c16e6f8204a4d5eb5e5ae
|
39
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
40
|
+
Date: Thu Oct 21 20:34:32 2010 +0900
|
41
|
+
|
42
|
+
Added descriptions.
|
43
|
+
|
44
|
+
RELEASE_NOTES.rdoc | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
|
45
|
+
1 files changed, 52 insertions(+), 0 deletions(-)
|
46
|
+
|
47
|
+
commit fd5da3b47ebce1df46922f20d013439faef483e9
|
48
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
49
|
+
Date: Thu Oct 21 18:27:44 2010 +0900
|
50
|
+
|
51
|
+
ChangeLog is updated.
|
52
|
+
|
53
|
+
ChangeLog | 1657 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
54
|
+
1 files changed, 1657 insertions(+), 0 deletions(-)
|
55
|
+
|
56
|
+
commit fab16977d23bb3a5fdfc976eece14dfdabdcac4d
|
57
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
58
|
+
Date: Thu Oct 21 18:07:43 2010 +0900
|
59
|
+
|
60
|
+
preparation for release candidate 1.4.1-rc1
|
61
|
+
|
62
|
+
bioruby.gemspec | 40 ++++++++++++++++++++++++++++++++++++++--
|
63
|
+
lib/bio/version.rb | 4 ++--
|
64
|
+
2 files changed, 40 insertions(+), 4 deletions(-)
|
65
|
+
|
66
|
+
commit 119cc3bf5582735a5df574450ec685fd2f989b5d
|
67
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
68
|
+
Date: Thu Oct 21 18:05:13 2010 +0900
|
69
|
+
|
70
|
+
Temporarily removed for packaging new version. It will be reverted later.
|
71
|
+
|
72
|
+
doc/howtos/sequence_codon.txt | 38 --------------------------------------
|
73
|
+
1 files changed, 0 insertions(+), 38 deletions(-)
|
74
|
+
delete mode 100644 doc/howtos/sequence_codon.txt
|
75
|
+
|
76
|
+
commit 1b1b3752e3c98a29caf837bfc12c1ed79a04dba2
|
77
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
78
|
+
Date: Thu Oct 21 16:48:43 2010 +0900
|
79
|
+
|
80
|
+
Fixed typo, reported by Tomoaki NISHIYAMA.
|
81
|
+
|
82
|
+
KNOWN_ISSUES.rdoc | 2 +-
|
83
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
84
|
+
|
85
|
+
commit 47ed7e5eaca4a261ef0fd4f76909c930e52aadd5
|
86
|
+
Merge: c002142 548cb58
|
87
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
88
|
+
Date: Thu Oct 21 16:17:59 2010 +0900
|
89
|
+
|
90
|
+
Merge branch 'test-defline-by-jtprince'
|
91
|
+
|
92
|
+
commit 548cb58aaad06bb9161e09f7b4ae45729898ca5e
|
93
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
94
|
+
Date: Thu Oct 21 16:16:28 2010 +0900
|
95
|
+
|
96
|
+
adjusted filename in header
|
97
|
+
|
98
|
+
test/unit/bio/db/fasta/test_defline_misc.rb | 2 +-
|
99
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
100
|
+
|
101
|
+
commit 95be260708ef21be7848a5d4b7c494cc6bb3d81f
|
102
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
103
|
+
Date: Thu Oct 21 16:14:58 2010 +0900
|
104
|
+
|
105
|
+
Renamed to test_defline_misc.rb to resolve the file name conflict.
|
106
|
+
|
107
|
+
test/unit/bio/db/fasta/test_defline.rb | 490 ---------------------------
|
108
|
+
test/unit/bio/db/fasta/test_defline_misc.rb | 490 +++++++++++++++++++++++++++
|
109
|
+
2 files changed, 490 insertions(+), 490 deletions(-)
|
110
|
+
delete mode 100644 test/unit/bio/db/fasta/test_defline.rb
|
111
|
+
create mode 100644 test/unit/bio/db/fasta/test_defline_misc.rb
|
112
|
+
|
113
|
+
commit 1e7628e2c396330743d4904b100d62d2c2773bf0
|
114
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
115
|
+
Date: Thu Oct 21 16:11:14 2010 +0900
|
116
|
+
|
117
|
+
Test bug fix: mistake in test_get method in two classes.
|
118
|
+
|
119
|
+
test/unit/bio/db/fasta/test_defline.rb | 4 ++--
|
120
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
121
|
+
|
122
|
+
commit c479f56f14fb531e31c7e5fdd02f6c934ac468fa
|
123
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
124
|
+
Date: Thu Oct 21 16:06:46 2010 +0900
|
125
|
+
|
126
|
+
Test bug fix: test classes should inherit Test::Unit::TestCase.
|
127
|
+
|
128
|
+
test/unit/bio/db/fasta/test_defline.rb | 10 +++++-----
|
129
|
+
1 files changed, 5 insertions(+), 5 deletions(-)
|
130
|
+
|
131
|
+
commit 0e8ea46e5a239df5c1da3c63e602376c04191ef4
|
132
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
133
|
+
Date: Thu Oct 21 15:55:02 2010 +0900
|
134
|
+
|
135
|
+
Bug fix: syntax error in Ruby 1.8.7 due to a comma.
|
136
|
+
|
137
|
+
test/unit/bio/db/fasta/test_defline.rb | 2 +-
|
138
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
139
|
+
|
140
|
+
commit 62a2c1d7c47fbef7a7e7c4f1c079f98fa74e5099
|
141
|
+
Author: John Prince <jtprince@gmail.com>
|
142
|
+
Date: Tue Oct 19 11:20:16 2010 -0600
|
143
|
+
|
144
|
+
added individual unit tests for Bio::FastaDefline
|
145
|
+
|
146
|
+
test/unit/bio/db/fasta/test_defline.rb | 490 ++++++++++++++++++++++++++++++++
|
147
|
+
1 files changed, 490 insertions(+), 0 deletions(-)
|
148
|
+
create mode 100644 test/unit/bio/db/fasta/test_defline.rb
|
149
|
+
|
150
|
+
commit c002142cdb478b0ad08b7bd5e3331c7b643222f1
|
151
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
152
|
+
Date: Thu Oct 21 15:36:58 2010 +0900
|
153
|
+
|
154
|
+
Adjusted file paths and the copyright line.
|
155
|
+
|
156
|
+
test/unit/bio/db/fasta/test_defline.rb | 6 +++---
|
157
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
158
|
+
|
159
|
+
commit a5818c5f8ae07e4ec4bdcc2229df9a59bded63f0
|
160
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
161
|
+
Date: Thu Jun 17 11:54:15 2010 +0900
|
162
|
+
|
163
|
+
Newly added unit tests for Bio::FastaDefline
|
164
|
+
|
165
|
+
* Newly added unit tests for Bio::FastaDefline.
|
166
|
+
* This is part of combination of the two commits:
|
167
|
+
bd2452caf0768e7000d19d462465b1772e3c030b
|
168
|
+
(modified test file for Bio::FastaDefline)
|
169
|
+
cae1b6c00cdb9044cb0dfb4db58e6acfe9b7d246
|
170
|
+
(Added test/unit/bio/db/fasta/test_defline.rb and
|
171
|
+
test/unit/bio/db/kegg/test_kgml.rb with the sample file newly.)
|
172
|
+
|
173
|
+
test/unit/bio/db/fasta/test_defline.rb | 160 ++++++++++++++++++++++++++++++++
|
174
|
+
1 files changed, 160 insertions(+), 0 deletions(-)
|
175
|
+
create mode 100644 test/unit/bio/db/fasta/test_defline.rb
|
176
|
+
|
177
|
+
commit 4addb906df442adf4ed20275428070b651abbf07
|
178
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
179
|
+
Date: Thu Oct 21 15:08:46 2010 +0900
|
180
|
+
|
181
|
+
Added note for a dead link, updated a URL, and added a new reference.
|
182
|
+
|
183
|
+
lib/bio/db/fasta/defline.rb | 8 ++++++--
|
184
|
+
1 files changed, 6 insertions(+), 2 deletions(-)
|
185
|
+
|
186
|
+
commit e636f123adf28688748cc5bbbc6e0c817358d475
|
187
|
+
Author: John Prince <jtprince@gmail.com>
|
188
|
+
Date: Thu Oct 14 15:38:07 2010 -0600
|
189
|
+
|
190
|
+
included TREMBL prefix to list of NSIDs (tr|)
|
191
|
+
|
192
|
+
* Included TREMBL prefix to list of NSIDs (tr|).
|
193
|
+
This is a standard prefix found in UniprotKB FASTA files.
|
194
|
+
|
195
|
+
lib/bio/db/fasta/defline.rb | 1 +
|
196
|
+
1 files changed, 1 insertions(+), 0 deletions(-)
|
197
|
+
|
198
|
+
commit 5277eb0b5376a0dc217dc051c49993c505956400
|
199
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
200
|
+
Date: Thu Oct 21 14:16:03 2010 +0900
|
201
|
+
|
202
|
+
Bug fix: Bio::ClustalW::Report#get_sequence may fail
|
203
|
+
|
204
|
+
* Bug fix: Bio::ClustalW::Report#get_sequence may fail when the second
|
205
|
+
argument of Bio::ClustalW::Report.new is specified.
|
206
|
+
|
207
|
+
lib/bio/appl/clustalw/report.rb | 5 +++--
|
208
|
+
1 files changed, 3 insertions(+), 2 deletions(-)
|
209
|
+
|
210
|
+
commit 81b9238abb643573a4051dc0f10c4f9a2cff40fa
|
211
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
212
|
+
Date: Thu Oct 21 14:21:52 2010 +0900
|
213
|
+
|
214
|
+
Added a test class to test the second argument of Bio::ClustalW::Report.new.
|
215
|
+
|
216
|
+
test/unit/bio/appl/clustalw/test_report.rb | 19 +++++++++++++++++++
|
217
|
+
1 files changed, 19 insertions(+), 0 deletions(-)
|
218
|
+
|
219
|
+
commit 3e9b149aec91585732a34efaa960c96bcec2eef8
|
220
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
221
|
+
Date: Thu Oct 21 13:22:38 2010 +0900
|
222
|
+
|
223
|
+
Ruby 1.9.2 support: defined Bio::RestrictionEnzyme::DoubleStranded::AlignedStrands#initialize
|
224
|
+
|
225
|
+
* Bio::RestrictionEnzyme::DoubleStranded::AlignedStrands#initialize
|
226
|
+
is explicitly defined, due to the behavior change of argument number
|
227
|
+
check in the default initialize method in Ruby 1.9.2.
|
228
|
+
|
229
|
+
.../double_stranded/aligned_strands.rb | 5 +++++
|
230
|
+
1 files changed, 5 insertions(+), 0 deletions(-)
|
231
|
+
|
232
|
+
commit cfe31c02d4bd0d97e588d25dc30188da6be81e85
|
233
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
234
|
+
Date: Thu Oct 21 11:49:08 2010 +0900
|
235
|
+
|
236
|
+
Ruby 1.9.2 support: assert_in_delta for a float value.
|
237
|
+
|
238
|
+
test/unit/bio/db/test_aaindex.rb | 2 +-
|
239
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
240
|
+
|
241
|
+
commit 3f5d2ccb9ac8bc44febc88d441f47aeddf7f12ff
|
242
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
243
|
+
Date: Thu Oct 21 11:41:38 2010 +0900
|
244
|
+
|
245
|
+
Ruby 1.9.2 support: using assert_in_delta for float values.
|
246
|
+
|
247
|
+
* Ruby 1.9.2 support: using assert_in_delta for float values.
|
248
|
+
The patch is written by Tomoaki NISHIYAMA during BH2010.10.
|
249
|
+
|
250
|
+
test/unit/bio/util/test_contingency_table.rb | 14 +++++++-------
|
251
|
+
1 files changed, 7 insertions(+), 7 deletions(-)
|
252
|
+
|
253
|
+
commit f357929bc5dcf8295b0a11a09b4025e3592d9eda
|
254
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
255
|
+
Date: Thu Oct 21 11:16:37 2010 +0900
|
256
|
+
|
257
|
+
Small changes for README.rdoc.
|
258
|
+
|
259
|
+
README.rdoc | 5 +++--
|
260
|
+
1 files changed, 3 insertions(+), 2 deletions(-)
|
261
|
+
|
262
|
+
commit c6c567fe9602ae8d7d343a5773f51d8aa22c8876
|
263
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
264
|
+
Date: Thu Oct 21 11:12:17 2010 +0900
|
265
|
+
|
266
|
+
Shows message when running "ruby setup.rb test" with Ruby1.9.
|
267
|
+
|
268
|
+
setup.rb | 5 +++++
|
269
|
+
1 files changed, 5 insertions(+), 0 deletions(-)
|
270
|
+
|
271
|
+
commit 9b66463c4150a679e63289e0cee3c4d1200c7d0f
|
272
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
273
|
+
Date: Wed Oct 20 17:53:36 2010 +0900
|
274
|
+
|
275
|
+
Added description about incompatible the change in Bio::AAindex2.
|
276
|
+
|
277
|
+
RELEASE_NOTES.rdoc | 6 ++++++
|
278
|
+
1 files changed, 6 insertions(+), 0 deletions(-)
|
279
|
+
|
280
|
+
commit 327ea878d4e15b99711d8121a54698da29d4b0aa
|
281
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
282
|
+
Date: Wed Oct 20 17:35:53 2010 +0900
|
283
|
+
|
284
|
+
Changed the expected return values in the unit tests, following the last change to Bio::AAindex2.
|
285
|
+
|
286
|
+
* Changed the expected return values in the unit tests,
|
287
|
+
following the last change to Bio::AAindex2.
|
288
|
+
* The patch is written by Tomoaki NISHIYAMA during BH2010.10.
|
289
|
+
|
290
|
+
test/unit/bio/db/test_aaindex.rb | 15 ++++++++-------
|
291
|
+
1 files changed, 8 insertions(+), 7 deletions(-)
|
292
|
+
|
293
|
+
commit 31963b43daab2801087f5f6d23b04e357bb7b1e2
|
294
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
295
|
+
Date: Wed Oct 20 17:32:26 2010 +0900
|
296
|
+
|
297
|
+
Ruby 1.9.2 support: Incompatible change: the symmetric elements for triangular matrix should be copied
|
298
|
+
|
299
|
+
* Ruby 1.9.2 support: Incompatible change: the symmetric elements
|
300
|
+
for triangular matrix should be copied. The patch is written by
|
301
|
+
Tomoaki NISHIYAMA during BH2010.10.
|
302
|
+
|
303
|
+
lib/bio/db/aaindex.rb | 12 +++++++++++-
|
304
|
+
1 files changed, 11 insertions(+), 1 deletions(-)
|
305
|
+
|
306
|
+
commit e8a1d65984781466eff9d5a262f18cb1c3e01056
|
307
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
308
|
+
Date: Wed Oct 20 16:10:51 2010 +0900
|
309
|
+
|
310
|
+
Test bug fix: confusion between assert and assert_equal
|
311
|
+
|
312
|
+
* Test bug fix: the assert should be assert_equal. The bug was
|
313
|
+
found with Ruby 1.9.2-p0.
|
314
|
+
|
315
|
+
test/unit/bio/db/embl/test_sptr.rb | 2 +-
|
316
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
317
|
+
|
318
|
+
commit feb2cda47beab91e2fc3dddf99d5cc1cacf3fbae
|
319
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
320
|
+
Date: Wed Oct 20 14:59:40 2010 +0900
|
321
|
+
|
322
|
+
Test bug fix: confusion between assert and assert_equal, and apparently wrong expected values.
|
323
|
+
|
324
|
+
* Test bug fix: the assert should be assert_equal. The bug was found
|
325
|
+
with Ruby 1.9.2-p0.
|
326
|
+
* In the test_rates_hundred_and_fiftieth_position method, the index
|
327
|
+
for @example_rates and the expected value of the third assertion
|
328
|
+
were apparently wrong.
|
329
|
+
* Reported by Tomoaki NISHIYAMA during BH2010.10.
|
330
|
+
|
331
|
+
test/unit/bio/appl/paml/codeml/test_rates.rb | 12 ++++++------
|
332
|
+
1 files changed, 6 insertions(+), 6 deletions(-)
|
333
|
+
|
334
|
+
commit ffc03a11a4ef7b36ea78de58d4c8d4e9259093c4
|
335
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
336
|
+
Date: Sat Oct 16 01:06:36 2010 +0900
|
337
|
+
|
338
|
+
Tests for Bio::KEGG::PATHWAY are improved with new test data.
|
339
|
+
|
340
|
+
test/data/KEGG/ec00072.pathway | 23 +
|
341
|
+
test/data/KEGG/hsa00790.pathway | 59 ++
|
342
|
+
test/data/KEGG/ko00312.pathway | 16 +
|
343
|
+
test/data/KEGG/rn00250.pathway | 114 ++++
|
344
|
+
test/unit/bio/db/kegg/test_pathway.rb | 1055 +++++++++++++++++++++++++++++++++
|
345
|
+
5 files changed, 1267 insertions(+), 0 deletions(-)
|
346
|
+
create mode 100644 test/data/KEGG/ec00072.pathway
|
347
|
+
create mode 100644 test/data/KEGG/hsa00790.pathway
|
348
|
+
create mode 100644 test/data/KEGG/ko00312.pathway
|
349
|
+
create mode 100644 test/data/KEGG/rn00250.pathway
|
350
|
+
|
351
|
+
commit 1e1d974c2c72ddf5a45e41c6f2510729fb65a4ad
|
352
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
353
|
+
Date: Tue Jul 20 11:46:52 2010 +0900
|
354
|
+
|
355
|
+
Added methods for parsing KEGG PATHWAY fields.
|
356
|
+
|
357
|
+
* Added methods for parsing KEGG PATHWAY fields.
|
358
|
+
* This is part of commit e2abe5764f3ded91c82689245f19a0412d3a7afb
|
359
|
+
and modified to merge with the current HEAD (original commit
|
360
|
+
message: Changes for TogoWS).
|
361
|
+
|
362
|
+
lib/bio/db/kegg/pathway.rb | 146 +++++++++++++++++++++++++++++++++++++++++++-
|
363
|
+
1 files changed, 145 insertions(+), 1 deletions(-)
|
364
|
+
|
365
|
+
commit 957c8ee630538a8c49c52339cb3c0364e5328378
|
366
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
367
|
+
Date: Sat Oct 16 00:50:42 2010 +0900
|
368
|
+
|
369
|
+
Private method strings_as_hash is moved to Bio::KEGG::Common::StringsAsHash.
|
370
|
+
|
371
|
+
lib/bio/db/kegg/common.rb | 18 ++++++++++++++++++
|
372
|
+
lib/bio/db/kegg/module.rb | 19 +++++--------------
|
373
|
+
2 files changed, 23 insertions(+), 14 deletions(-)
|
374
|
+
|
375
|
+
commit b7fd85382bccceaa29958d5daf98ca0a513e5a9a
|
376
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
377
|
+
Date: Fri Oct 15 22:01:05 2010 +0900
|
378
|
+
|
379
|
+
Renamed Bio::KEGG::*#pathway_modules to modules, etc.
|
380
|
+
|
381
|
+
* Renamed following methods in Bio::KEGG::ORTHOLOGY and
|
382
|
+
Bio::KEGG:PATHWAY classes: pathway_modules to modules,
|
383
|
+
pathway_modules_as_strings to modules_as_strings, and
|
384
|
+
pathway_modules_as_hash to modules_as_hash.
|
385
|
+
* Unit tests are also modified.
|
386
|
+
|
387
|
+
lib/bio/db/kegg/common.rb | 18 +++++++++---------
|
388
|
+
lib/bio/db/kegg/orthology.rb | 10 +++++-----
|
389
|
+
lib/bio/db/kegg/pathway.rb | 10 +++++-----
|
390
|
+
test/unit/bio/db/kegg/test_orthology.rb | 12 ++++++------
|
391
|
+
test/unit/bio/db/kegg/test_pathway.rb | 20 ++++++++++----------
|
392
|
+
5 files changed, 35 insertions(+), 35 deletions(-)
|
393
|
+
|
394
|
+
commit 02aea9f18ff6e3079309a76d04d02ea1f2902e7b
|
395
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
396
|
+
Date: Fri Oct 15 00:20:48 2010 +0900
|
397
|
+
|
398
|
+
Modified tests for Bio::KEGG::GENES following the changes of the class.
|
399
|
+
|
400
|
+
test/unit/bio/db/kegg/test_genes.rb | 30 +++++++++++++++++++++++++++++-
|
401
|
+
1 files changed, 29 insertions(+), 1 deletions(-)
|
402
|
+
|
403
|
+
commit f4b45ea629734ecff820483475d83fef6cbe068e
|
404
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
405
|
+
Date: Thu Oct 14 23:57:18 2010 +0900
|
406
|
+
|
407
|
+
Reverted Bio::KEGG::GENES#genes, gene and motif methods and modified.
|
408
|
+
|
409
|
+
* Reverted Bio::KEGG::GENES#genes, gene and motif methods which are
|
410
|
+
removed in the last commit. To avoid code duplication, they are
|
411
|
+
also modified to use other methods, and RDoc is added about the
|
412
|
+
deprecation or change of the methods.
|
413
|
+
* Modified RDoc.
|
414
|
+
|
415
|
+
lib/bio/db/kegg/genes.rb | 32 +++++++++++++++++++++++++++++++-
|
416
|
+
1 files changed, 31 insertions(+), 1 deletions(-)
|
417
|
+
|
418
|
+
commit dd987911cb4a84e23565bb37707611d054c22101
|
419
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
420
|
+
Date: Tue Jul 20 11:46:52 2010 +0900
|
421
|
+
|
422
|
+
New methods Bio::KEGG::GENES#keggclass etc.
|
423
|
+
|
424
|
+
* New methods and aliases are added: Bio::KEGG::GENES#keggclass,
|
425
|
+
keggclasses, names_as_array, names, motifs_as_strings,
|
426
|
+
motifs_as_hash, motifs.
|
427
|
+
* Removed Bio::KEGG::GENES#genes, gene and motif methods.
|
428
|
+
* Added a comment about deprecation of CODON_USAGE lines.
|
429
|
+
* This is part of commit e2abe5764f3ded91c82689245f19a0412d3a7afb
|
430
|
+
(original commit message: Changes for TogoWS).
|
431
|
+
|
432
|
+
lib/bio/db/kegg/genes.rb | 41 ++++++++++++++++++++++++++---------------
|
433
|
+
1 files changed, 26 insertions(+), 15 deletions(-)
|
434
|
+
|
435
|
+
commit b2575f5acfeca269c93a35baa3809fdac17a7271
|
436
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
437
|
+
Date: Wed Oct 13 23:12:33 2010 +0900
|
438
|
+
|
439
|
+
Release notes for the upcoming release version.
|
440
|
+
|
441
|
+
RELEASE_NOTES.rdoc | 31 +++++++++++++++++++++++++++++++
|
442
|
+
1 files changed, 31 insertions(+), 0 deletions(-)
|
443
|
+
create mode 100644 RELEASE_NOTES.rdoc
|
444
|
+
|
445
|
+
commit 83992875c45a1fdd54d042c923dee51119026e49
|
446
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
447
|
+
Date: Wed Oct 13 23:11:21 2010 +0900
|
448
|
+
|
449
|
+
Renamed RELEASE_NOTES.rdoc to doc/RELEASE_NOTES-1.4.0.rdoc.
|
450
|
+
|
451
|
+
RELEASE_NOTES.rdoc | 167 ------------------------------------------
|
452
|
+
doc/RELEASE_NOTES-1.4.0.rdoc | 167 ++++++++++++++++++++++++++++++++++++++++++
|
453
|
+
2 files changed, 167 insertions(+), 167 deletions(-)
|
454
|
+
delete mode 100644 RELEASE_NOTES.rdoc
|
455
|
+
create mode 100644 doc/RELEASE_NOTES-1.4.0.rdoc
|
456
|
+
|
457
|
+
commit f649629eb6216aeabbd2020bcac9b7f870b12395
|
458
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
459
|
+
Date: Wed Oct 13 21:58:58 2010 +0900
|
460
|
+
|
461
|
+
Added acknowledgement to Kozo Nishida for KEGG parsers.
|
462
|
+
|
463
|
+
RELEASE_NOTES.rdoc | 1 +
|
464
|
+
1 files changed, 1 insertions(+), 0 deletions(-)
|
465
|
+
|
466
|
+
commit 379f177edc0f95dee1ec0c2d2cf679c27918e41b
|
467
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
468
|
+
Date: Fri Oct 8 16:31:58 2010 +0900
|
469
|
+
|
470
|
+
Fixed a variable name mistake in Bio::Command, and English grammer fix.
|
471
|
+
|
472
|
+
* Fixed a variable name mistake in Bio::Command#no_fork?.
|
473
|
+
* English grammer fix for comments. Thanks to Andrew Grimm who
|
474
|
+
reports the fix.
|
475
|
+
|
476
|
+
lib/bio/command.rb | 6 +++---
|
477
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
478
|
+
|
479
|
+
commit 1344c27c90438d8c8840ee507d0ab43224f89054
|
480
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
481
|
+
Date: Wed Oct 6 23:47:26 2010 +0900
|
482
|
+
|
483
|
+
Bug fix: fork(2) is called on platforms that do not support it.
|
484
|
+
|
485
|
+
* Bug fix: fork(2) is called on platforms that do not support it.
|
486
|
+
Thanks to Andrew Grimm who reports the bug
|
487
|
+
(fork() is called on platforms that do not support it;
|
488
|
+
http://github.com/bioruby/bioruby/issues#issue/6).
|
489
|
+
* Bio::Command#call_command and query_command can now fall back
|
490
|
+
into using popen when fork(2) is not implemented.
|
491
|
+
* Detection of Windows platform is improved. The idea of the code
|
492
|
+
is taken from Redmine's platform.rb.
|
493
|
+
|
494
|
+
lib/bio/command.rb | 98 +++++++++++++++++++++++++++++------
|
495
|
+
test/functional/bio/test_command.rb | 9 +--
|
496
|
+
2 files changed, 84 insertions(+), 23 deletions(-)
|
497
|
+
|
498
|
+
commit 0bfa1c3a8d7b8d03919d54a2a241ca96a79bad83
|
499
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
500
|
+
Date: Wed Oct 6 15:49:51 2010 +0900
|
501
|
+
|
502
|
+
Bug fix: Bio::MEDLINE#reference is changed not to put empty values
|
503
|
+
|
504
|
+
* Bug fix: Bio::MEDLINE#reference is changed not to put empty values
|
505
|
+
in the returned Bio::Reference object. I think the original bahavior
|
506
|
+
is a bug. This is an incompatible change but the effect is very small.
|
507
|
+
|
508
|
+
lib/bio/db/medline.rb | 2 +-
|
509
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
510
|
+
|
511
|
+
commit 8e0bc03d79a1f20743c29f0a44e273d362eaa2cd
|
512
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
513
|
+
Date: Wed Oct 6 15:39:34 2010 +0900
|
514
|
+
|
515
|
+
Bug fix: Bio::MEDLINE#initialize should handle continuation of lines.
|
516
|
+
|
517
|
+
* Bug fix: Bio::MEDLINE#initialize should handle continuation of lines.
|
518
|
+
Thanks to Steven Bedrick who reports the bug
|
519
|
+
(Bio::MEDLINE#initialize handles multi-line MeSH terms incorrectly;
|
520
|
+
http://github.com/bioruby/bioruby/issues#issue/7).
|
521
|
+
|
522
|
+
lib/bio/db/medline.rb | 6 +++++-
|
523
|
+
1 files changed, 5 insertions(+), 1 deletions(-)
|
524
|
+
|
525
|
+
commit 728de78b438108e44066a7ce7490632c81108fb6
|
526
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
527
|
+
Date: Wed Oct 6 15:29:10 2010 +0900
|
528
|
+
|
529
|
+
Added unit tests for Bio::MEDLINE with test data.
|
530
|
+
|
531
|
+
* Added unit tests for Bio::MEDLINE with test data. The data is
|
532
|
+
taken from NCBI and the abstract was removed to avoid possible
|
533
|
+
copyright problem. The choice of the data (PMID: 20146148) is
|
534
|
+
suggested by Steven Bedrick in a bug report (Bio::MEDLINE#initialize
|
535
|
+
handles multi-line MeSH terms incorrectly).
|
536
|
+
|
537
|
+
test/data/medline/20146148_modified.medline | 54 ++++++++++
|
538
|
+
test/unit/bio/db/test_medline.rb | 148 +++++++++++++++++++++++++++
|
539
|
+
2 files changed, 202 insertions(+), 0 deletions(-)
|
540
|
+
create mode 100644 test/data/medline/20146148_modified.medline
|
541
|
+
|
542
|
+
commit 930095817ce60793ac909a4d01731d1f97bc4fa5
|
543
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
544
|
+
Date: Wed Sep 29 20:51:12 2010 +0900
|
545
|
+
|
546
|
+
Bug fix: NoMethodError in Bio::Tree#collect_edge!
|
547
|
+
|
548
|
+
* Bug fix: NoMethodError in Bio::Tree#collect_edge!.
|
549
|
+
Thanks to Kazuhiro Hayashi who reports the bug.
|
550
|
+
|
551
|
+
lib/bio/tree.rb | 2 +-
|
552
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
553
|
+
|
554
|
+
commit c7927ec4743ddc4ec4501790bbed097b69f616e7
|
555
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
556
|
+
Date: Wed Sep 29 20:49:44 2010 +0900
|
557
|
+
|
558
|
+
Modified and improved tests for Bio::Tree.
|
559
|
+
|
560
|
+
test/unit/bio/test_tree.rb | 393 +++++++++++++++++++++++++++-----------------
|
561
|
+
1 files changed, 240 insertions(+), 153 deletions(-)
|
562
|
+
|
563
|
+
commit 0161148c9b4d9ea404af92b4baf8241239a283de
|
564
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
565
|
+
Date: Fri Jul 16 00:09:39 2010 +0900
|
566
|
+
|
567
|
+
Modified unit tests for Bio::Tree
|
568
|
+
|
569
|
+
* Modified unit tests for Bio::Tree.
|
570
|
+
* This is part of combination of the two commits:
|
571
|
+
* 6675fd930718e41ad009f469b8167f81c9b2ad52
|
572
|
+
(Modified unit tests and classes)
|
573
|
+
* a6dc63ffe3460ea8d8980b3d6c641356881e0862
|
574
|
+
(Modified unit test for Bio::Tree)
|
575
|
+
|
576
|
+
test/unit/bio/test_tree.rb | 174 +++++++++++++++++++++++++++++++++++++++++++-
|
577
|
+
1 files changed, 173 insertions(+), 1 deletions(-)
|
578
|
+
|
579
|
+
commit 31ded691a9329e45fe563e5f70138648d3b30bbf
|
580
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
581
|
+
Date: Thu Jul 15 21:06:28 2010 +0900
|
582
|
+
|
583
|
+
Bug fix: Bio::Tree#remove_edge_if did not work.
|
584
|
+
|
585
|
+
* Bug fix: Bio::Tree#remove_edge_if did not work.
|
586
|
+
* This is part of commit 6675fd930718e41ad009f469b8167f81c9b2ad52
|
587
|
+
(original commit message: Modified unit tests and classes)
|
588
|
+
and removed a comment line.
|
589
|
+
|
590
|
+
lib/bio/tree.rb | 6 +++---
|
591
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
592
|
+
|
593
|
+
commit d0a3af23c74004688a8fc0b5be3d09f7144e33a1
|
594
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
595
|
+
Date: Wed Sep 22 19:23:50 2010 +0900
|
596
|
+
|
597
|
+
Renamed test/data/go/part_of_* to avoid possible confusion
|
598
|
+
|
599
|
+
* Renamed test/data/go/part_of_* to selected_* to avoid possible
|
600
|
+
confusion: The word "part_of" is a keyword in Gene Ontology.
|
601
|
+
|
602
|
+
test/data/go/part_of_component.ontology | 12 ----------
|
603
|
+
test/data/go/part_of_gene_association.sgd | 31 ----------------------------
|
604
|
+
test/data/go/part_of_wikipedia2go | 13 -----------
|
605
|
+
test/data/go/selected_component.ontology | 12 ++++++++++
|
606
|
+
test/data/go/selected_gene_association.sgd | 31 ++++++++++++++++++++++++++++
|
607
|
+
test/data/go/selected_wikipedia2go | 13 +++++++++++
|
608
|
+
test/unit/bio/db/test_go.rb | 6 ++--
|
609
|
+
7 files changed, 59 insertions(+), 59 deletions(-)
|
610
|
+
delete mode 100644 test/data/go/part_of_component.ontology
|
611
|
+
delete mode 100644 test/data/go/part_of_gene_association.sgd
|
612
|
+
delete mode 100644 test/data/go/part_of_wikipedia2go
|
613
|
+
create mode 100644 test/data/go/selected_component.ontology
|
614
|
+
create mode 100644 test/data/go/selected_gene_association.sgd
|
615
|
+
create mode 100644 test/data/go/selected_wikipedia2go
|
616
|
+
|
617
|
+
commit e4f82da52402f8175bd92b50209b09bc83bfddd6
|
618
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
619
|
+
Date: Wed Sep 22 19:21:36 2010 +0900
|
620
|
+
|
621
|
+
Removed unused test/data/go/wikipedia2go.txt.
|
622
|
+
|
623
|
+
test/data/go/wikipedia2go.txt | 728 -----------------------------------------
|
624
|
+
1 files changed, 0 insertions(+), 728 deletions(-)
|
625
|
+
delete mode 100644 test/data/go/wikipedia2go.txt
|
626
|
+
|
627
|
+
commit 5003fd53b0a3852fa23b76ad6ec8e9e76d5850fc
|
628
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
629
|
+
Date: Thu Sep 16 22:37:31 2010 +0900
|
630
|
+
|
631
|
+
Adjusted test data file paths and header lines in test_go.rb.
|
632
|
+
|
633
|
+
* Adjusted test data file paths.
|
634
|
+
* Adjusted copyright and description in the header.
|
635
|
+
|
636
|
+
test/unit/bio/db/test_go.rb | 26 +++++++++++++++++---------
|
637
|
+
1 files changed, 17 insertions(+), 9 deletions(-)
|
638
|
+
|
639
|
+
commit 540cb7ab27e79634f5436476cce51cc20ca0f70f
|
640
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
641
|
+
Date: Thu Jul 15 21:06:28 2010 +0900
|
642
|
+
|
643
|
+
Added tests for Bio::GO classes.
|
644
|
+
|
645
|
+
* Added tests for Bio::GO classes.
|
646
|
+
* This is part of combination of the three commits:
|
647
|
+
* 555f7b49a43e7c35c82cd48b199af96ca93d4179
|
648
|
+
(added test_genbank.rb and test_go.rb with the test files.
|
649
|
+
modified test_pdb.rb)
|
650
|
+
* e966f17546427b8ad39cb9942807ceb8a068d746
|
651
|
+
(modified test/unit/bio/db/test_go.rb and added the test files
|
652
|
+
for each GO class)
|
653
|
+
* 6675fd930718e41ad009f469b8167f81c9b2ad52
|
654
|
+
(Modified unit tests and classes)
|
655
|
+
|
656
|
+
test/unit/bio/db/test_go.rb | 163 +++++++++++++++++++++++++++++++++++++++++++
|
657
|
+
1 files changed, 163 insertions(+), 0 deletions(-)
|
658
|
+
create mode 100644 test/unit/bio/db/test_go.rb
|
659
|
+
|
660
|
+
commit 5ff01f7dfbc3661d8c66b44874a2ba4ff2f96b56
|
661
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
662
|
+
Date: Fri Jun 11 21:02:29 2010 +0900
|
663
|
+
|
664
|
+
Added test data for Bio::GO classes.
|
665
|
+
|
666
|
+
* Added test data for Bio::GO classes.
|
667
|
+
* This is part of combination of the three commits:
|
668
|
+
* 555f7b49a43e7c35c82cd48b199af96ca93d4179
|
669
|
+
(added test_genbank.rb and test_go.rb with the test files.
|
670
|
+
modified test_pdb.rb)
|
671
|
+
* e966f17546427b8ad39cb9942807ceb8a068d746
|
672
|
+
(modified test/unit/bio/db/test_go.rb and added the test files
|
673
|
+
for each GO class)
|
674
|
+
* 6675fd930718e41ad009f469b8167f81c9b2ad52
|
675
|
+
(Modified unit tests and classes)
|
676
|
+
* License for the test data is the public domain.
|
677
|
+
( http://wiki.geneontology.org/index.php/Legal_FAQ )
|
678
|
+
|
679
|
+
test/data/go/part_of_component.ontology | 12 +
|
680
|
+
test/data/go/part_of_gene_association.sgd | 31 ++
|
681
|
+
test/data/go/part_of_wikipedia2go | 13 +
|
682
|
+
test/data/go/wikipedia2go.txt | 728 +++++++++++++++++++++++++++++
|
683
|
+
4 files changed, 784 insertions(+), 0 deletions(-)
|
684
|
+
create mode 100644 test/data/go/part_of_component.ontology
|
685
|
+
create mode 100644 test/data/go/part_of_gene_association.sgd
|
686
|
+
create mode 100644 test/data/go/part_of_wikipedia2go
|
687
|
+
create mode 100644 test/data/go/wikipedia2go.txt
|
688
|
+
|
689
|
+
commit d4210673a1a696bfb02c93b7743e60dea1a5fcc8
|
690
|
+
Author: Kazuhiro Hayashi <k.hayashi.info@gmail.com>
|
691
|
+
Date: Thu Jul 15 21:06:28 2010 +0900
|
692
|
+
|
693
|
+
Bug fix: Typo and missing field in Bio::GO::GeneAssociation#to_str.
|
694
|
+
|
695
|
+
* Bug fix: Typo and missing field in Bio::GO::GeneAssociation#to_str.
|
696
|
+
* This is part of commit 6675fd930718e41ad009f469b8167f81c9b2ad52
|
697
|
+
(original commit message: Modified unit tests and classes)
|
698
|
+
and modified. The bug is also reported by Ralf Stephan
|
699
|
+
([BioRuby] [PATCH] GO annotations fixes and improvements).
|
700
|
+
|
701
|
+
lib/bio/db/go.rb | 4 ++--
|
702
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
703
|
+
|
704
|
+
commit acab0bb4a4e0f970f8f6be3aea2c371f63a49fa7
|
705
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
706
|
+
Date: Wed Aug 25 22:58:42 2010 +0900
|
707
|
+
|
708
|
+
Database names used in tests are changed, following the change of TogoWS.
|
709
|
+
|
710
|
+
* Database names used in tests are changed, following the change of
|
711
|
+
TogoWS: "gene" to "kegg-genes" and "enzyme" to "kegg-enzyme".
|
712
|
+
|
713
|
+
test/functional/bio/io/test_togows.rb | 6 +++---
|
714
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
715
|
+
|
716
|
+
commit 1fb1f1cc5ca3edb42de03874b3527ce0cf0de294
|
717
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
718
|
+
Date: Tue Jul 20 11:46:52 2010 +0900
|
719
|
+
|
720
|
+
Database name used in tests is changed, following the change of TogoWS.
|
721
|
+
|
722
|
+
* The database name "genbank" is changed to "nucleotide", following
|
723
|
+
the change in TogoWS.
|
724
|
+
* This is part of commit e2abe5764f3ded91c82689245f19a0412d3a7afb.
|
725
|
+
(Original commit message: Changes for TogoWS)
|
726
|
+
|
727
|
+
test/functional/bio/io/test_togows.rb | 10 +++++-----
|
728
|
+
1 files changed, 5 insertions(+), 5 deletions(-)
|
729
|
+
|
730
|
+
commit 1db4b8011f4fee158aeb78ec2d76c76688714788
|
731
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
732
|
+
Date: Wed Aug 11 23:33:49 2010 +0900
|
733
|
+
|
734
|
+
New method Bio::Fastq#mask for masking low score regions.
|
735
|
+
|
736
|
+
* New method Bio::Fastq#mask for masking low score regions is added
|
737
|
+
with unit tests. This method is implemented as a shortcut of
|
738
|
+
Bio::Sequence#mask_with_quality_score method.
|
739
|
+
|
740
|
+
lib/bio/db/fastq.rb | 15 +++++++++++++++
|
741
|
+
test/unit/bio/db/test_fastq.rb | 36 ++++++++++++++++++++++++++++++++++++
|
742
|
+
2 files changed, 51 insertions(+), 0 deletions(-)
|
743
|
+
|
744
|
+
commit 72b47b2391a01c5f4214fd188abe0857cd3ed166
|
745
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
746
|
+
Date: Wed Aug 11 23:04:57 2010 +0900
|
747
|
+
|
748
|
+
New module Bio::Sequence::SequenceMasker to help masking a sequence.
|
749
|
+
|
750
|
+
* New module Bio::Sequence::SequenceMasker to help masking a sequence.
|
751
|
+
The module is only expected to be included in Bio::Sequence.
|
752
|
+
In the future, methods in this module might be moved to
|
753
|
+
Bio::Sequence or other module and this module might be removed.
|
754
|
+
* Unit tests for Bio::Sequence::SequenceMasker are also added.
|
755
|
+
|
756
|
+
lib/bio/sequence.rb | 2 +
|
757
|
+
lib/bio/sequence/sequence_masker.rb | 95 +++++++++++++
|
758
|
+
test/unit/bio/sequence/test_sequence_masker.rb | 169 ++++++++++++++++++++++++
|
759
|
+
3 files changed, 266 insertions(+), 0 deletions(-)
|
760
|
+
create mode 100644 lib/bio/sequence/sequence_masker.rb
|
761
|
+
create mode 100644 test/unit/bio/sequence/test_sequence_masker.rb
|
762
|
+
|
763
|
+
commit a2b21fa31c87fc47ae375380fb34958460414107
|
764
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
765
|
+
Date: Wed Aug 11 22:59:46 2010 +0900
|
766
|
+
|
767
|
+
New method Bio::Sequence#output_fasta, a replacement for to_fasta.
|
768
|
+
|
769
|
+
* New method Bio::Sequence#output_fasta, a replacement for
|
770
|
+
Bio::Sequence#to_fasta. This is also implemented as a shortcut of
|
771
|
+
Bio::Sequence#output(:fasta).
|
772
|
+
|
773
|
+
lib/bio/sequence/format.rb | 14 ++++++++++++++
|
774
|
+
1 files changed, 14 insertions(+), 0 deletions(-)
|
775
|
+
|
776
|
+
commit d139a1e3e7f77317102eaa24649515541761a212
|
777
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
778
|
+
Date: Tue Jul 20 11:46:52 2010 +0900
|
779
|
+
|
780
|
+
File format autodetection for Bio::KEGG::PATHWAY and Bio::KEGG::MODULE.
|
781
|
+
|
782
|
+
* Added file format autodetection for Bio::KEGG::PATHWAY and
|
783
|
+
Bio::KEGG::MODULE.
|
784
|
+
* This is part of commit e2abe5764f3ded91c82689245f19a0412d3a7afb.
|
785
|
+
(Original commit message: Changes for TogoWS)
|
786
|
+
|
787
|
+
lib/bio/io/flatfile/autodetection.rb | 6 ++++++
|
788
|
+
1 files changed, 6 insertions(+), 0 deletions(-)
|
789
|
+
|
790
|
+
commit 920d92c13b44921a3f58ddbd8566e7a90dd59996
|
791
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
792
|
+
Date: Tue Jul 20 11:46:52 2010 +0900
|
793
|
+
|
794
|
+
Added autoload for Bio::KEGG::PATHWAY and Bio::KEGG::MODULE.
|
795
|
+
|
796
|
+
* Added autoload for Bio::KEGG::PATHWAY and Bio::KEGG::MODULE.
|
797
|
+
* This is part of commit e2abe5764f3ded91c82689245f19a0412d3a7afb.
|
798
|
+
(Original commit message: Changes for TogoWS)
|
799
|
+
|
800
|
+
lib/bio.rb | 2 ++
|
801
|
+
1 files changed, 2 insertions(+), 0 deletions(-)
|
802
|
+
|
803
|
+
commit bf342c28e0c75c9b48770144f421dd12babd9d0e
|
804
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
805
|
+
Date: Tue Aug 17 23:19:47 2010 +0900
|
806
|
+
|
807
|
+
Unit tests for Bio::KEGG::MODULE is modified and improved.
|
808
|
+
|
809
|
+
test/unit/bio/db/kegg/test_module.rb | 194 ++++++++++++++++++++++++++++++----
|
810
|
+
1 files changed, 173 insertions(+), 21 deletions(-)
|
811
|
+
|
812
|
+
commit 1742568a4f27e75a19441e4a4437ca3f1c0251f8
|
813
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
814
|
+
Date: Tue Aug 17 23:15:44 2010 +0900
|
815
|
+
|
816
|
+
In Bio::KEGG::MODULE, an internal-only method is changed to private.
|
817
|
+
|
818
|
+
lib/bio/db/kegg/module.rb | 4 ++++
|
819
|
+
1 files changed, 4 insertions(+), 0 deletions(-)
|
820
|
+
|
821
|
+
commit 8f5ff66cca678ac6be75a7dda1ff840ac3111f42
|
822
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
823
|
+
Date: Tue Aug 17 23:10:39 2010 +0900
|
824
|
+
|
825
|
+
Removed unused comments.
|
826
|
+
|
827
|
+
lib/bio/db/kegg/module.rb | 32 --------------------------------
|
828
|
+
1 files changed, 0 insertions(+), 32 deletions(-)
|
829
|
+
|
830
|
+
commit f9d23fb32eeb15dc57580e25653d3f2fff5fa1dc
|
831
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
832
|
+
Date: Tue Aug 17 22:59:18 2010 +0900
|
833
|
+
|
834
|
+
Reverted Bio::KEGG::MODULE#keggclass.
|
835
|
+
|
836
|
+
* Reverted Bio::KEGG::MODULE#keggclass.
|
837
|
+
* Removed keggclasses and keggclasses_as_array methods, because
|
838
|
+
they are inconsistent with Bio::KEGG::ORTHOLOGY#keggclasses.
|
839
|
+
|
840
|
+
lib/bio/db/kegg/module.rb | 6 +-----
|
841
|
+
1 files changed, 1 insertions(+), 5 deletions(-)
|
842
|
+
|
843
|
+
commit 94188d23ad843c7cb998c99f46371e540ce457dc
|
844
|
+
Author: Toshiaki Katayama <k@bioruby.org>
|
845
|
+
Date: Tue Jul 20 11:41:50 2010 +0900
|
846
|
+
|
847
|
+
For Bio::KEGG::MODULE, methods are added and modified.
|
848
|
+
|
849
|
+
* For Bio::KEGG::MODULE, methods are added and modified.
|
850
|
+
* New methods: definition, etc.
|
851
|
+
* Removed methods: pathway, orthologies, keggclass, etc.
|
852
|
+
* Changed methods: reactions, compounds, etc.
|
853
|
+
* (Original commit message: Changes for TogoWS)
|
854
|
+
|
855
|
+
lib/bio/db/kegg/module.rb | 136 +++++++++++++++++++++++++++++++++++++++++---
|
856
|
+
1 files changed, 126 insertions(+), 10 deletions(-)
|
857
|
+
|
858
|
+
commit 92efc03707a49fa0b2c02e7b2f8b53749a75ad59
|
859
|
+
Author: Kozo Nishida <kozo-ni@cg04.naist.jp>
|
860
|
+
Date: Thu Feb 4 22:59:20 2010 +0900
|
861
|
+
|
862
|
+
New class Bio::KEGG::MODULE, parser for KEGG MODULE (Pathway Module).
|
863
|
+
|
864
|
+
lib/bio/db/kegg/module.rb | 83 ++++++++++++++++++++++++++++++
|
865
|
+
test/data/KEGG/M00118.module | 44 ++++++++++++++++
|
866
|
+
test/unit/bio/db/kegg/test_module.rb | 94 ++++++++++++++++++++++++++++++++++
|
867
|
+
3 files changed, 221 insertions(+), 0 deletions(-)
|
868
|
+
create mode 100644 lib/bio/db/kegg/module.rb
|
869
|
+
create mode 100644 test/data/KEGG/M00118.module
|
870
|
+
create mode 100644 test/unit/bio/db/kegg/test_module.rb
|
871
|
+
|
872
|
+
commit b7c75cc6023d5dc9096111fde99a6e89db2e4bdc
|
873
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
874
|
+
Date: Wed May 12 01:13:52 2010 +0900
|
875
|
+
|
876
|
+
Improvement of tests for Bio::KEGG::ORTHOLOGY using updated test data.
|
877
|
+
|
878
|
+
test/unit/bio/db/kegg/test_orthology.rb | 95 +++++++++++++++++++++++++++++++
|
879
|
+
1 files changed, 95 insertions(+), 0 deletions(-)
|
880
|
+
|
881
|
+
commit f61c232371f6f673044960b0626486b2e8e160b8
|
882
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
883
|
+
Date: Wed May 12 01:11:16 2010 +0900
|
884
|
+
|
885
|
+
Updated test data K02338.orthology to follow KEGG format changes.
|
886
|
+
|
887
|
+
test/data/KEGG/K02338.orthology | 232 ++++++++++++++++++++++++++++++---------
|
888
|
+
1 files changed, 180 insertions(+), 52 deletions(-)
|
889
|
+
|
890
|
+
commit 2aa060f42263392877683a47ef9bd744ef4de7f8
|
891
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
892
|
+
Date: Wed May 12 01:03:18 2010 +0900
|
893
|
+
|
894
|
+
Incompatible change of Bio::KEGG::ORTHOLOGY#pathways, and added new methods
|
895
|
+
|
896
|
+
* Incompatible change of Bio::KEGG::ORTHOLOGY#pathways due to the
|
897
|
+
changes of KEGG ORTHOLOGY format changes: Because PATHWAY field
|
898
|
+
is added, the method is changed to return a hash. The pathway
|
899
|
+
method of old behavior is renamed to pathways_in_keggclass
|
900
|
+
for compatibility.
|
901
|
+
* New methods are added to Bio::KEGG::ORTHOLOGY: references,
|
902
|
+
pathways_as_strings, pathways_as_hash, pathway_modules,
|
903
|
+
pathway_modules_as_hash, pathway_modules_as_strings.
|
904
|
+
|
905
|
+
lib/bio/db/kegg/orthology.rb | 41 ++++++++++++++++++++++++++++++++++++++++-
|
906
|
+
1 files changed, 40 insertions(+), 1 deletions(-)
|
907
|
+
|
908
|
+
commit 2e6754f2598f66f29afb573c3dc83592089b411c
|
909
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
910
|
+
Date: Wed May 12 00:59:26 2010 +0900
|
911
|
+
|
912
|
+
Changed to use Bio::KEGG::Common::PathwayModulesAsHash.
|
913
|
+
|
914
|
+
lib/bio/db/kegg/pathway.rb | 25 ++++++++-----------------
|
915
|
+
1 files changed, 8 insertions(+), 17 deletions(-)
|
916
|
+
|
917
|
+
commit 527920da990f4374e20333d6852b810ea73ead02
|
918
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
919
|
+
Date: Wed May 12 00:55:10 2010 +0900
|
920
|
+
|
921
|
+
New module Bio::KEGG::Common::PathwayModulesAsHash (internal use only)
|
922
|
+
|
923
|
+
* New module Bio::KEGG::Common::PathwayModulesAsHash is added,
|
924
|
+
based on Bio::KEGG::PATHWAY#pathway_modules_as_hash method.
|
925
|
+
Note that the method is Bio::KEGG::* internal use only.
|
926
|
+
|
927
|
+
lib/bio/db/kegg/common.rb | 22 ++++++++++++++++++++++
|
928
|
+
1 files changed, 22 insertions(+), 0 deletions(-)
|
929
|
+
|
930
|
+
commit 36041377dbafce642180eb1c664ee36ef21d3bfb
|
931
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
932
|
+
Date: Fri Mar 19 23:25:56 2010 +0900
|
933
|
+
|
934
|
+
New method Bio::KEGG::PATHWAY#references.
|
935
|
+
|
936
|
+
* New method Bio::KEGG::PATHWAY#references.
|
937
|
+
* Additional unit tests for Bio::KEGG::PATHWAY with test data.
|
938
|
+
|
939
|
+
lib/bio/db/kegg/pathway.rb | 8 ++
|
940
|
+
test/data/KEGG/map00030.pathway | 37 ++++++++++
|
941
|
+
test/unit/bio/db/kegg/test_pathway.rb | 120 ++++++++++++++++++++++++++++++++-
|
942
|
+
3 files changed, 162 insertions(+), 3 deletions(-)
|
943
|
+
create mode 100644 test/data/KEGG/map00030.pathway
|
944
|
+
|
945
|
+
commit d743892d298786eb9e88e2a51ac9f7774785848f
|
946
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
947
|
+
Date: Fri Mar 19 00:06:20 2010 +0900
|
948
|
+
|
949
|
+
Improvement of Bio::KEGG::Common::References#references.
|
950
|
+
|
951
|
+
* Improvement of Bio::KEGG::Common::References#references:
|
952
|
+
added support for parsing "journal (year)" style.
|
953
|
+
|
954
|
+
lib/bio/db/kegg/common.rb | 4 ++++
|
955
|
+
1 files changed, 4 insertions(+), 0 deletions(-)
|
956
|
+
|
957
|
+
commit 35807ae22c9ad9a3ce37ed5c655d1c080f8d2334
|
958
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
959
|
+
Date: Fri Mar 19 00:02:10 2010 +0900
|
960
|
+
|
961
|
+
Implementation of Bio::KEGG::GENOME#references is moved.
|
962
|
+
|
963
|
+
* Implementation of Bio::KEGG::GENOME#references is moved to
|
964
|
+
Bio::KEGG::Common::References#references, which will be
|
965
|
+
shared with Bio::KEGG::Pathway and other classes.
|
966
|
+
|
967
|
+
lib/bio/db/kegg/common.rb | 61 +++++++++++++++++++++++++++++++++++++++++++-
|
968
|
+
lib/bio/db/kegg/genome.rb | 62 +++++---------------------------------------
|
969
|
+
2 files changed, 67 insertions(+), 56 deletions(-)
|
970
|
+
|
971
|
+
commit 263c37a07203b87e3b33d35adef3aa3ddcf89601
|
972
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
973
|
+
Date: Wed Mar 17 00:26:56 2010 +0900
|
974
|
+
|
975
|
+
Bug fix: Bio::KEGG::GENES#pathway may fail, and other parse issues due to the format changes of KEGG GENES.
|
976
|
+
|
977
|
+
* Bug fix: Bio::KEGG::GENES#pathway may return unexpected value
|
978
|
+
after calling pathways, pathways_as_hash or pathways_as_string
|
979
|
+
methods.
|
980
|
+
* Bio::KEGG::GENES#eclinks, Bio::KEGG::Common::PathwaysAsHash,
|
981
|
+
and Bio::KEGG::Common::OrthologsAsHash are modified due to
|
982
|
+
the file format changes of KEGG::GENES.
|
983
|
+
|
984
|
+
lib/bio/db/kegg/common.rb | 9 +++++----
|
985
|
+
lib/bio/db/kegg/genes.rb | 17 +++++++++++------
|
986
|
+
2 files changed, 16 insertions(+), 10 deletions(-)
|
987
|
+
|
988
|
+
commit 364cd405a10d0742091281c5a16b77cb54a8087e
|
989
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
990
|
+
Date: Wed Mar 17 00:25:51 2010 +0900
|
991
|
+
|
992
|
+
New methods Bio::Location#== and Bio::Locations#==.
|
993
|
+
|
994
|
+
lib/bio/location.rb | 39 +++++++++++++++++++++++++++++++++++++++
|
995
|
+
1 files changed, 39 insertions(+), 0 deletions(-)
|
996
|
+
|
997
|
+
commit 2c7ffd6808e572cf35b82d6e74790447d44d08cc
|
998
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
999
|
+
Date: Wed Mar 17 00:23:00 2010 +0900
|
1000
|
+
|
1001
|
+
Improved unit tests for Bio::KEGG::GENES with new test data.
|
1002
|
+
|
1003
|
+
test/data/KEGG/b0529.gene | 47 +++++++
|
1004
|
+
test/unit/bio/db/kegg/test_genes.rb | 254 ++++++++++++++++++++++++++++++++++-
|
1005
|
+
2 files changed, 300 insertions(+), 1 deletions(-)
|
1006
|
+
create mode 100644 test/data/KEGG/b0529.gene
|
1007
|
+
|
1008
|
+
commit 764869fd42d1e3f96885b3499844bf4fadde80f1
|
1009
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1010
|
+
Date: Wed Mar 17 00:10:51 2010 +0900
|
1011
|
+
|
1012
|
+
Bug fix: Bio::KEGG::GENOME parser issues for PLASMID, REFERENCE, and ORIGINAL_DB fields.
|
1013
|
+
|
1014
|
+
* Bug fix: Fixed parse error for PLASMID fields due to the changes
|
1015
|
+
of the KEGG GENOME file format. For the bug fix, tag_get and
|
1016
|
+
tag_cut methods are redefined.
|
1017
|
+
* Bug fix: Fixed parse error for REFERENCE fields due to the changes
|
1018
|
+
of the file format.
|
1019
|
+
* New method Bio::KEGG::GENOME#original_databases is added to get
|
1020
|
+
ORIGINAL_DB record as an Array of String objects.
|
1021
|
+
|
1022
|
+
lib/bio/db/kegg/genome.rb | 69 +++++++++++++++++++++++++++++++++++++++-----
|
1023
|
+
1 files changed, 61 insertions(+), 8 deletions(-)
|
1024
|
+
|
1025
|
+
commit 75db7c6c7132f19e212be36d06643a0f48a7df44
|
1026
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1027
|
+
Date: Wed Mar 17 00:09:09 2010 +0900
|
1028
|
+
|
1029
|
+
New method Bio::Reference#==.
|
1030
|
+
|
1031
|
+
lib/bio/reference.rb | 24 ++++++++++++++++++++++++
|
1032
|
+
1 files changed, 24 insertions(+), 0 deletions(-)
|
1033
|
+
|
1034
|
+
commit 64a6bfb52ca1bb27bd38c86c060e2925f38924fb
|
1035
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1036
|
+
Date: Wed Mar 17 00:07:43 2010 +0900
|
1037
|
+
|
1038
|
+
Newly added unit tests for Bio::KEGG::GENOME with test data.
|
1039
|
+
|
1040
|
+
test/data/KEGG/T00005.genome | 140 ++++++++++++
|
1041
|
+
test/data/KEGG/T00070.genome | 34 +++
|
1042
|
+
test/unit/bio/db/kegg/test_genome.rb | 408 ++++++++++++++++++++++++++++++++++
|
1043
|
+
3 files changed, 582 insertions(+), 0 deletions(-)
|
1044
|
+
create mode 100644 test/data/KEGG/T00005.genome
|
1045
|
+
create mode 100644 test/data/KEGG/T00070.genome
|
1046
|
+
create mode 100644 test/unit/bio/db/kegg/test_genome.rb
|
1047
|
+
|
1048
|
+
commit 21c92bb991c83dce27a4411382c456cdd6029a82
|
1049
|
+
Author: Naohisa Goto <ngoto@gen-info.osaka-u.ac.jp>
|
1050
|
+
Date: Tue Mar 9 23:24:15 2010 +0900
|
1051
|
+
|
1052
|
+
Renamed Bio::KEGG::PATHWAY#keggmodules to pathway_modules_as_strings, etc.
|
1053
|
+
|
1054
|
+
* Bio::KEGG::PATHWAY#keggmodules is renamed to
|
1055
|
+
pathway_modules_as_strings.
|
1056
|
+
* New method pathway_modules_as_hash and its alias method
|
1057
|
+
pathway_modules is added.
|
1058
|
+
* Bio::KEGG::PATHWAY#rel_pathways is renamed to
|
1059
|
+
rel_pathways_as_strings.
|
1060
|
+
* New method rel_pathways_as_hash is added, and rel_pathways
|
1061
|
+
is changed to be the alias of the rel_pathways_as_hash method.
|
1062
|
+
* Unit tests are also changed.
|
1063
|
+
|
1064
|
+
lib/bio/db/kegg/pathway.rb | 42 +++++++++++++++++++++++++++++++-
|
1065
|
+
test/unit/bio/db/kegg/test_pathway.rb | 29 ++++++++++++++++++++--
|
1066
|
+
2 files changed, 66 insertions(+), 5 deletions(-)
|
1067
|
+
|
1068
|
+
commit fa10f38716ec2eecd6fa8e8b027085377e9ee421
|
1069
|
+
Author: Naohisa Goto <ngoto@gen-info.osaka-u.ac.jp>
|
1070
|
+
Date: Tue Mar 9 21:13:18 2010 +0900
|
1071
|
+
|
1072
|
+
Fixed text indentations.
|
1073
|
+
|
1074
|
+
lib/bio/db/kegg/pathway.rb | 4 ++--
|
1075
|
+
test/unit/bio/db/kegg/test_pathway.rb | 25 +++++++++++++------------
|
1076
|
+
2 files changed, 15 insertions(+), 14 deletions(-)
|
1077
|
+
|
1078
|
+
commit 0916b0cac5d17ce47ef5cc3382e3167293bcf4c2
|
1079
|
+
Author: Kozo Nishida <kozo-ni@cg04.naist.jp>
|
1080
|
+
Date: Tue Feb 2 17:34:17 2010 +0900
|
1081
|
+
|
1082
|
+
Newly added Bio::KEGG::PATHWAY with test code and test data.
|
1083
|
+
|
1084
|
+
lib/bio/db/kegg/pathway.rb | 73 +++++++++++++++++++++++++++++++++
|
1085
|
+
test/data/KEGG/map00052.pathway | 13 ++++++
|
1086
|
+
test/unit/bio/db/kegg/test_pathway.rb | 57 +++++++++++++++++++++++++
|
1087
|
+
3 files changed, 143 insertions(+), 0 deletions(-)
|
1088
|
+
create mode 100644 lib/bio/db/kegg/pathway.rb
|
1089
|
+
create mode 100644 test/data/KEGG/map00052.pathway
|
1090
|
+
create mode 100644 test/unit/bio/db/kegg/test_pathway.rb
|
1091
|
+
|
1092
|
+
commit c3ceea339164754071f03ce13da4f65e08230f40
|
1093
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1094
|
+
Date: Fri Feb 19 00:43:38 2010 +0900
|
1095
|
+
|
1096
|
+
Tutorial.rd.html is regenerated.
|
1097
|
+
|
1098
|
+
doc/Tutorial.rd.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++-
|
1099
|
+
1 files changed, 54 insertions(+), 1 deletions(-)
|
1100
|
+
|
1101
|
+
commit 315da0213edfece696d22cc4648cb7a74f18ad34
|
1102
|
+
Author: Ra <ilpuccio.febo@gmail.com>
|
1103
|
+
Date: Sun Feb 7 10:38:36 2010 +0100
|
1104
|
+
|
1105
|
+
Added BioSQL docs links
|
1106
|
+
|
1107
|
+
doc/Tutorial.rd | 4 ++--
|
1108
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
1109
|
+
|
1110
|
+
commit 22374415873906f4bcd3e84950c14b5f0b6c7e61
|
1111
|
+
Author: Ra <ilpuccio.febo@gmail.com>
|
1112
|
+
Date: Sun Feb 7 02:39:16 2010 +0100
|
1113
|
+
|
1114
|
+
Added link to BioSQL install doc.
|
1115
|
+
|
1116
|
+
doc/Tutorial.rd | 2 +-
|
1117
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1118
|
+
|
1119
|
+
commit 4d18dd2f5a3f18348e5f4aa07b14c104d3a65f5b
|
1120
|
+
Author: Ra <ilpuccio.febo@gmail.com>
|
1121
|
+
Date: Fri Feb 5 21:30:36 2010 +0100
|
1122
|
+
|
1123
|
+
Added other examples about BioSQL
|
1124
|
+
|
1125
|
+
doc/Tutorial.rd | 36 ++++++++++++++++++++++++++++--------
|
1126
|
+
1 files changed, 28 insertions(+), 8 deletions(-)
|
1127
|
+
|
1128
|
+
commit b704f01cd0799ab1a7e3975119e9d6139ddfbd51
|
1129
|
+
Author: Ra <ilpuccio.febo@gmail.com>
|
1130
|
+
Date: Wed Jan 27 21:08:25 2010 +0100
|
1131
|
+
|
1132
|
+
BioSQL tutorial continue...
|
1133
|
+
|
1134
|
+
doc/Tutorial.rd | 18 ++++++++++++++++--
|
1135
|
+
1 files changed, 16 insertions(+), 2 deletions(-)
|
1136
|
+
|
1137
|
+
commit 1993a1566b5ade937703d0291c4eaf2de673d170
|
1138
|
+
Author: Ra <ilpuccio.febo@gmail.com>
|
1139
|
+
Date: Wed Jan 27 20:32:23 2010 +0100
|
1140
|
+
|
1141
|
+
BioSQL tutorial inital draft.
|
1142
|
+
|
1143
|
+
doc/Tutorial.rd | 25 ++++++++++++++++++++++++-
|
1144
|
+
1 files changed, 24 insertions(+), 1 deletions(-)
|
1145
|
+
|
1146
|
+
commit 09047b664a03492d7546d92b619faacee72d0cd5
|
1147
|
+
Author: Jan Aerts <jan.aerts@gmail.com>
|
1148
|
+
Date: Sun Feb 7 17:58:59 2010 +0900
|
1149
|
+
|
1150
|
+
Added code example that will serve as basis for sequence/codon howto
|
1151
|
+
|
1152
|
+
doc/howtos/sequence_codon.txt | 38 ++++++++++++++++++++++++++++++++++++++
|
1153
|
+
1 files changed, 38 insertions(+), 0 deletions(-)
|
1154
|
+
create mode 100644 doc/howtos/sequence_codon.txt
|
1155
|
+
|
1156
|
+
commit c1e2165ba801cccd52135b13ed36713517e1fa8a
|
1157
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1158
|
+
Date: Fri Feb 5 12:50:38 2010 +0900
|
1159
|
+
|
1160
|
+
Suppressed "warning: parenthesize argument(s) for future version" in Ruby 1.8.5.
|
1161
|
+
|
1162
|
+
lib/bio/appl/paml/codeml/report.rb | 2 +-
|
1163
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1164
|
+
|
1165
|
+
commit f7ce9ba6a2f4e680ee40017a21aa95d05baf34f4
|
1166
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1167
|
+
Date: Thu Feb 4 20:26:00 2010 +0900
|
1168
|
+
|
1169
|
+
Added :startdoc: and removed an empty line for RDoc.
|
1170
|
+
|
1171
|
+
lib/bio/appl/paml/codeml/report.rb | 4 +++-
|
1172
|
+
1 files changed, 3 insertions(+), 1 deletions(-)
|
1173
|
+
|
1174
|
+
commit 6d4d2e1f37efb1e53091fbc9a0977568996788ff
|
1175
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1176
|
+
Date: Thu Feb 4 16:58:10 2010 +0900
|
1177
|
+
|
1178
|
+
New unit test for Bio::PAML::Codeml::Report.
|
1179
|
+
|
1180
|
+
* New unit test for Bio::PAML::Codeml::Report and related classes.
|
1181
|
+
The test code is copied from the examples described in
|
1182
|
+
lib/bio/appl/paml/codeml/report.rb and modified for the unit test.
|
1183
|
+
|
1184
|
+
test/unit/bio/appl/paml/codeml/test_report.rb | 253 +++++++++++++++++++++++++
|
1185
|
+
1 files changed, 253 insertions(+), 0 deletions(-)
|
1186
|
+
create mode 100644 test/unit/bio/appl/paml/codeml/test_report.rb
|
1187
|
+
|
1188
|
+
commit 8418549811293c3e20b91d4e95da2cb2a282a064
|
1189
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1190
|
+
Date: Thu Feb 4 16:47:37 2010 +0900
|
1191
|
+
|
1192
|
+
Changes due to the rename to report_single.rb.
|
1193
|
+
|
1194
|
+
.../bio/appl/paml/codeml/test_report_single.rb | 2 +-
|
1195
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1196
|
+
|
1197
|
+
commit 7bfb428da237709b243c8d0e4646bd41710d1519
|
1198
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1199
|
+
Date: Thu Feb 4 16:39:10 2010 +0900
|
1200
|
+
|
1201
|
+
Renamed codeml/test_report.rb to codeml/test_report_single.rb.
|
1202
|
+
|
1203
|
+
* Renamed test/unit/bio/appl/paml/codeml/test_report.rb to
|
1204
|
+
test_report_single.rb.
|
1205
|
+
|
1206
|
+
test/unit/bio/appl/paml/codeml/test_report.rb | 46 --------------------
|
1207
|
+
.../bio/appl/paml/codeml/test_report_single.rb | 46 ++++++++++++++++++++
|
1208
|
+
2 files changed, 46 insertions(+), 46 deletions(-)
|
1209
|
+
delete mode 100644 test/unit/bio/appl/paml/codeml/test_report.rb
|
1210
|
+
create mode 100644 test/unit/bio/appl/paml/codeml/test_report_single.rb
|
1211
|
+
|
1212
|
+
commit 762d38b1564da7d846e3dcd461cf465aa685a1ae
|
1213
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1214
|
+
Date: Tue Jan 12 10:13:35 2010 +0100
|
1215
|
+
|
1216
|
+
Modified output of Bio::PAML::Codeml::PositiveSites#graph_to_s
|
1217
|
+
|
1218
|
+
* Modified output of Bio::PAML::Codeml::PositiveSites#graph_to_s.
|
1219
|
+
(Part of commit ea350da85e5db2ba35cb8dd1e86e3d4323ee3fd1.
|
1220
|
+
Original commit message is:
|
1221
|
+
HtmlPaml: fixed some missing output
|
1222
|
+
use real greek omega in output)
|
1223
|
+
|
1224
|
+
lib/bio/appl/paml/codeml/report.rb | 2 +-
|
1225
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1226
|
+
|
1227
|
+
commit f88645cd783b7027950133c0badb0a8da8e4fb95
|
1228
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1229
|
+
Date: Tue Jan 12 09:24:46 2010 +0100
|
1230
|
+
|
1231
|
+
Codeml: no negative gaps
|
1232
|
+
|
1233
|
+
lib/bio/appl/paml/codeml/report.rb | 2 +-
|
1234
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1235
|
+
|
1236
|
+
commit 978b21cf90d0280e6e6c7d6e4fa65c49692bdd69
|
1237
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1238
|
+
Date: Mon Jan 11 17:31:45 2010 +0100
|
1239
|
+
|
1240
|
+
Codeml: always raise an error when significance can not be calculated
|
1241
|
+
|
1242
|
+
lib/bio/appl/paml/codeml/report.rb | 15 ++++++++++-----
|
1243
|
+
1 files changed, 10 insertions(+), 5 deletions(-)
|
1244
|
+
|
1245
|
+
commit 12b5895f6f1819252d616bb0a38aa88a7828daff
|
1246
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1247
|
+
Date: Mon Jan 11 17:22:34 2010 +0100
|
1248
|
+
|
1249
|
+
Codeml: oops
|
1250
|
+
|
1251
|
+
lib/bio/appl/paml/codeml/report.rb | 6 +++---
|
1252
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
1253
|
+
|
1254
|
+
commit a8ff0a07fdbef72f72103f0bceb9c24a63162fc6
|
1255
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1256
|
+
Date: Mon Jan 11 17:19:26 2010 +0100
|
1257
|
+
|
1258
|
+
Codeml: added significance testing for a few model combinations
|
1259
|
+
|
1260
|
+
lib/bio/appl/paml/codeml/report.rb | 57 +++++++++++++++++++++++++++++++++++-
|
1261
|
+
1 files changed, 56 insertions(+), 1 deletions(-)
|
1262
|
+
|
1263
|
+
commit 0e11af19450faca3568f89b23d5bd764688f75c0
|
1264
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1265
|
+
Date: Mon Jan 11 16:24:51 2010 +0100
|
1266
|
+
|
1267
|
+
Codeml: raise error instead of a 'nil' error when buffer is incomplete
|
1268
|
+
|
1269
|
+
lib/bio/appl/paml/codeml/report.rb | 1 +
|
1270
|
+
1 files changed, 1 insertions(+), 0 deletions(-)
|
1271
|
+
|
1272
|
+
commit 1cb2aaaa701a1613812dd479201d27c1d7dcf016
|
1273
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1274
|
+
Date: Mon Jan 11 14:37:52 2010 +0100
|
1275
|
+
|
1276
|
+
Bio::PAML::Codeml::PositiveSites#graph_to_s gets fill character
|
1277
|
+
|
1278
|
+
* Bio::PAML::Codeml::PositiveSites#graph_to_s gets fill character
|
1279
|
+
as an argument.
|
1280
|
+
(Part of commit d67259c9f203dc92c68ad04b4112329a7093a259.
|
1281
|
+
Original commit message is:
|
1282
|
+
HtmlPaml: show colors for probabilities of positive selection)
|
1283
|
+
|
1284
|
+
lib/bio/appl/paml/codeml/report.rb | 15 +++++++++------
|
1285
|
+
1 files changed, 9 insertions(+), 6 deletions(-)
|
1286
|
+
|
1287
|
+
commit ae5b9cf9ee697cc237c77335b12b57709a0e7a46
|
1288
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1289
|
+
Date: Mon Jan 11 13:37:52 2010 +0100
|
1290
|
+
|
1291
|
+
Codeml: return correct buffer
|
1292
|
+
|
1293
|
+
lib/bio/appl/paml/codeml/report.rb | 10 +++++-----
|
1294
|
+
1 files changed, 5 insertions(+), 5 deletions(-)
|
1295
|
+
|
1296
|
+
commit 44f2e28c3e0d382505b067ec3c7aa55cbb9f0a38
|
1297
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1298
|
+
Date: Mon Jan 11 13:10:40 2010 +0100
|
1299
|
+
|
1300
|
+
Improvement of Bio::PAML::Codeml::PositiveSites#initialize, etc
|
1301
|
+
|
1302
|
+
* Improved target analysis location detection in
|
1303
|
+
Bio::PAML::Codeml::PositiveSites#initialize.
|
1304
|
+
* Changed description inside Bio::PAML::Codeml::Report#nb_sites
|
1305
|
+
and sites methods.
|
1306
|
+
* This is part of commit e88ff474748b3295a8a4089356d3086638200d64.
|
1307
|
+
(Original commit message: HtmlPaml: improved output)
|
1308
|
+
|
1309
|
+
lib/bio/appl/paml/codeml/report.rb | 20 ++++++++++++--------
|
1310
|
+
1 files changed, 12 insertions(+), 8 deletions(-)
|
1311
|
+
|
1312
|
+
commit ee8973696d0434c591ceaffc580f1aa30fd036f9
|
1313
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1314
|
+
Date: Mon Jan 11 12:54:40 2010 +0100
|
1315
|
+
|
1316
|
+
Codeml: fixed doctests
|
1317
|
+
|
1318
|
+
lib/bio/appl/paml/codeml/report.rb | 6 +++---
|
1319
|
+
1 files changed, 3 insertions(+), 3 deletions(-)
|
1320
|
+
|
1321
|
+
commit f7bbb0859e28cb51137d0a8f8d962821eb67db91
|
1322
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1323
|
+
Date: Mon Jan 11 12:51:25 2010 +0100
|
1324
|
+
|
1325
|
+
New method Bio::PAML::Codeml::PositiveSites#to_s
|
1326
|
+
|
1327
|
+
* New method Bio::PAML::Codeml::PositiveSites#to_s
|
1328
|
+
(part of the commit 82e933fd1961a2b31873bc37cbf3205adbf0a6de,
|
1329
|
+
original commit message: HtmlPaml: add facility for color output)
|
1330
|
+
|
1331
|
+
lib/bio/appl/paml/codeml/report.rb | 6 ++++++
|
1332
|
+
1 files changed, 6 insertions(+), 0 deletions(-)
|
1333
|
+
|
1334
|
+
commit d4f3dbaf78f623d870a1a76ab1353d786e0fb73b
|
1335
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1336
|
+
Date: Mon Jan 11 12:34:59 2010 +0100
|
1337
|
+
|
1338
|
+
Codeml: HtmlPaml: minor tweaks
|
1339
|
+
|
1340
|
+
lib/bio/appl/paml/codeml/report.rb | 7 ++-----
|
1341
|
+
1 files changed, 2 insertions(+), 5 deletions(-)
|
1342
|
+
|
1343
|
+
commit 7d41b6acb41c5913622fde127a030f940a432cc5
|
1344
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1345
|
+
Date: Mon Jan 11 12:19:15 2010 +0100
|
1346
|
+
|
1347
|
+
Codeml: add short description to positive sites line
|
1348
|
+
|
1349
|
+
lib/bio/appl/paml/codeml/report.rb | 13 +++++++++++++
|
1350
|
+
1 files changed, 13 insertions(+), 0 deletions(-)
|
1351
|
+
|
1352
|
+
commit a9d6765b3a5d23be7e8cf59954d67cd2354e5878
|
1353
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1354
|
+
Date: Mon Jan 11 12:13:55 2010 +0100
|
1355
|
+
|
1356
|
+
Codeml: fixed bug in graph output
|
1357
|
+
|
1358
|
+
lib/bio/appl/paml/codeml/report.rb | 2 +-
|
1359
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1360
|
+
|
1361
|
+
commit af124dcaa2adb446e273456f8dd0b84aff9b00db
|
1362
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1363
|
+
Date: Mon Jan 11 12:11:00 2010 +0100
|
1364
|
+
|
1365
|
+
Codeml: added graph_seq, which shows the AA of the first sequence at positive sites
|
1366
|
+
|
1367
|
+
lib/bio/appl/paml/codeml/report.rb | 11 +++++++++--
|
1368
|
+
1 files changed, 9 insertions(+), 2 deletions(-)
|
1369
|
+
|
1370
|
+
commit 1924dcd951a9e655726bc1af72626526ed223258
|
1371
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1372
|
+
Date: Fri Jan 8 10:13:37 2010 +0100
|
1373
|
+
|
1374
|
+
Codeml: added :stopdoc: directive for rdoc
|
1375
|
+
|
1376
|
+
lib/bio/appl/paml/codeml/report.rb | 21 ++++++++++++---------
|
1377
|
+
1 files changed, 12 insertions(+), 9 deletions(-)
|
1378
|
+
|
1379
|
+
commit 7b68fd9d785723935f90144f67999fcf74bcc7c0
|
1380
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1381
|
+
Date: Fri Jan 8 10:01:49 2010 +0100
|
1382
|
+
|
1383
|
+
Codeml: fixed the doctests and added some info.
|
1384
|
+
all tests pass &
|
1385
|
+
|
1386
|
+
lib/bio/appl/paml/codeml/report.rb | 43 ++++++++++++++++++++++++-----------
|
1387
|
+
1 files changed, 29 insertions(+), 14 deletions(-)
|
1388
|
+
|
1389
|
+
commit ce212c507e9e81120e7ad12be6df955e90d0ad33
|
1390
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1391
|
+
Date: Fri Jan 8 09:46:05 2010 +0100
|
1392
|
+
|
1393
|
+
Codeml: exclude TestFile class from RDoc generated documentation
|
1394
|
+
|
1395
|
+
lib/bio/appl/paml/codeml/report.rb | 9 ++++++---
|
1396
|
+
1 files changed, 6 insertions(+), 3 deletions(-)
|
1397
|
+
|
1398
|
+
commit 9d64a70b628cb3cda9cc1576b9966dae242e5230
|
1399
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1400
|
+
Date: Fri Jan 8 09:39:02 2010 +0100
|
1401
|
+
|
1402
|
+
Codeml: added many comments
|
1403
|
+
|
1404
|
+
lib/bio/appl/paml/codeml/report.rb | 87 +++++++++++++++++++++++++++++------
|
1405
|
+
1 files changed, 72 insertions(+), 15 deletions(-)
|
1406
|
+
|
1407
|
+
commit 2b92df64016865a2ab40c93650409cfd67a2a98e
|
1408
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1409
|
+
Date: Mon Jan 4 17:57:32 2010 +0100
|
1410
|
+
|
1411
|
+
codeml: Added parser for full Bayesian sites
|
1412
|
+
all tests pass &
|
1413
|
+
|
1414
|
+
lib/bio/appl/paml/codeml/report.rb | 52 ++++++++++++++++++++++++++++++-----
|
1415
|
+
1 files changed, 44 insertions(+), 8 deletions(-)
|
1416
|
+
|
1417
|
+
commit 198f0c014f7993fbe22825d0be67e9b1aa19d2de
|
1418
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1419
|
+
Date: Mon Jan 4 17:37:15 2010 +0100
|
1420
|
+
|
1421
|
+
codeml: show graph
|
1422
|
+
|
1423
|
+
lib/bio/appl/paml/codeml/report.rb | 46 ++++++++++++++++++++++++++++++++++-
|
1424
|
+
1 files changed, 44 insertions(+), 2 deletions(-)
|
1425
|
+
|
1426
|
+
commit 0843bb4d79dc4d94a22d79a797a39dc2866222c5
|
1427
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1428
|
+
Date: Mon Jan 4 17:09:27 2010 +0100
|
1429
|
+
|
1430
|
+
Codeml: added full support for positive selection sites
|
1431
|
+
doctests + unit tests pass &
|
1432
|
+
|
1433
|
+
lib/bio/appl/paml/codeml/report.rb | 150 ++++++++++++++++++++++++++++--------
|
1434
|
+
1 files changed, 118 insertions(+), 32 deletions(-)
|
1435
|
+
|
1436
|
+
commit 1610c5d86cddd53f7f0300d0f7a137daaa61ef94
|
1437
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1438
|
+
Date: Mon Jan 4 12:33:20 2010 +0100
|
1439
|
+
|
1440
|
+
codeml: added M3 classes
|
1441
|
+
|
1442
|
+
lib/bio/appl/paml/codeml/report.rb | 28 +++++++++++++++++++++++++---
|
1443
|
+
1 files changed, 25 insertions(+), 3 deletions(-)
|
1444
|
+
|
1445
|
+
commit efc939fbd300ceb371b342172382cdec9fcc74b7
|
1446
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1447
|
+
Date: Mon Jan 4 12:02:47 2010 +0100
|
1448
|
+
|
1449
|
+
codeml: adding compatibility layer for single model (old type)
|
1450
|
+
unit tests pass &
|
1451
|
+
|
1452
|
+
lib/bio/appl/paml/codeml/report.rb | 44 +++++++++++++++++++++++++++++++-----
|
1453
|
+
1 files changed, 38 insertions(+), 6 deletions(-)
|
1454
|
+
|
1455
|
+
commit b89990daa3ea26a9f9195ec16044fb2070bcdd1a
|
1456
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1457
|
+
Date: Sun Jan 3 12:34:53 2010 +0100
|
1458
|
+
|
1459
|
+
Implementation parsing one model - doctests for M0 pass
|
1460
|
+
|
1461
|
+
lib/bio/appl/paml/codeml/report.rb | 90 ++++++++++++++++++++++++++++++++----
|
1462
|
+
1 files changed, 81 insertions(+), 9 deletions(-)
|
1463
|
+
|
1464
|
+
commit dce447d3e81e738323e6fb6b2d28324e1fa62e7d
|
1465
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1466
|
+
Date: Sun Jan 3 11:27:54 2010 +0100
|
1467
|
+
|
1468
|
+
Codeml: use BioTestFile for locating test data in the doctest
|
1469
|
+
|
1470
|
+
lib/bio/appl/paml/codeml/report.rb | 9 ++++++++-
|
1471
|
+
1 files changed, 8 insertions(+), 1 deletions(-)
|
1472
|
+
|
1473
|
+
commit 27a7b558d60b7ec127df2c351542433c321704ac
|
1474
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1475
|
+
Date: Sat Jan 2 23:36:47 2010 +0100
|
1476
|
+
|
1477
|
+
Codeml: split new type report and old type report
|
1478
|
+
|
1479
|
+
lib/bio/appl/paml/codeml/report.rb | 19 +++++++++++++++----
|
1480
|
+
1 files changed, 15 insertions(+), 4 deletions(-)
|
1481
|
+
|
1482
|
+
commit 027808e4723ca77af3e15b461ddcc09faf692732
|
1483
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1484
|
+
Date: Sat Jan 2 23:25:22 2010 +0100
|
1485
|
+
|
1486
|
+
Added example files for PAML codeml dual model runs
|
1487
|
+
|
1488
|
+
test/data/paml/codeml/models/aa.aln | 26 ++
|
1489
|
+
test/data/paml/codeml/models/aa.dnd | 13 +
|
1490
|
+
test/data/paml/codeml/models/aa.ph | 13 +
|
1491
|
+
test/data/paml/codeml/models/alignment.phy | 49 ++++
|
1492
|
+
test/data/paml/codeml/models/results0-3.txt | 312 ++++++++++++++++++++++++
|
1493
|
+
test/data/paml/codeml/models/results7-8.txt | 340 +++++++++++++++++++++++++++
|
1494
|
+
6 files changed, 753 insertions(+), 0 deletions(-)
|
1495
|
+
create mode 100644 test/data/paml/codeml/models/aa.aln
|
1496
|
+
create mode 100644 test/data/paml/codeml/models/aa.dnd
|
1497
|
+
create mode 100644 test/data/paml/codeml/models/aa.ph
|
1498
|
+
create mode 100644 test/data/paml/codeml/models/alignment.phy
|
1499
|
+
create mode 100644 test/data/paml/codeml/models/results0-3.txt
|
1500
|
+
create mode 100644 test/data/paml/codeml/models/results7-8.txt
|
1501
|
+
|
1502
|
+
commit 1d35e616ce411bf643ab6dcb7126a6e1aca1e186
|
1503
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1504
|
+
Date: Sat Jan 2 17:04:56 2010 +0100
|
1505
|
+
|
1506
|
+
Codeml::Report Added new description and reference
|
1507
|
+
|
1508
|
+
lib/bio/appl/paml/codeml/report.rb | 113 ++++++++++++++++++++++++++++++------
|
1509
|
+
1 files changed, 96 insertions(+), 17 deletions(-)
|
1510
|
+
|
1511
|
+
commit d21b26044e776fab44dbc95f181afd04b67abe28
|
1512
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1513
|
+
Date: Mon Feb 1 22:31:21 2010 +0900
|
1514
|
+
|
1515
|
+
Bug fix and Ruby 1.9 support: Bio::Command.call_command_fork etc.
|
1516
|
+
|
1517
|
+
* Bug fix: In Bio::Command.call_command_fork, thread switching is
|
1518
|
+
disabled in the child process. Thanks to Andrew Grimm who
|
1519
|
+
reports the bug ([BioRuby] Thread-safety of alignment).
|
1520
|
+
Note that call_command_fork no longer works in Ruby 1.9 because
|
1521
|
+
it is changed to use Thread.critical which is removed in Ruby 1.9.
|
1522
|
+
* Ruby 1.9 support: In Ruby 1.9, Bio::Command.call_command_popen
|
1523
|
+
bypasses shell execution by passing command-line as an Array,
|
1524
|
+
which is a new feature added in Ruby 1.9. Now, call_command_popen
|
1525
|
+
is safe and robust enough with Ruby 1.9.
|
1526
|
+
* Ruby 1.9 support: In Ruby 1.9, Bio::Command.call_command and
|
1527
|
+
query_command use call_command_popen and query_command_popen,
|
1528
|
+
respectively.
|
1529
|
+
* RDoc for the above and related methods are modified.
|
1530
|
+
|
1531
|
+
lib/bio/command.rb | 80 +++++++++++++++++++++++++++++++----
|
1532
|
+
test/functional/bio/test_command.rb | 4 ++
|
1533
|
+
2 files changed, 76 insertions(+), 8 deletions(-)
|
1534
|
+
|
1535
|
+
commit 981dc1c89049bf00e56a9e83ef352cb4c4b45d6a
|
1536
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1537
|
+
Date: Tue Feb 2 22:47:36 2010 +0900
|
1538
|
+
|
1539
|
+
Bug fix: Bio::FastaNumericFormat#to_biosequence bug fix
|
1540
|
+
|
1541
|
+
* Bug fix: New method Bio::FastaNumericFormat#to_biosequence is
|
1542
|
+
defined to avoid NomethodError occurred in the superclass'es
|
1543
|
+
method. For the purpose, a new module
|
1544
|
+
Bio::Sequence::Adapter::FastaNumericFormat is added.
|
1545
|
+
Thanks to Hiroyuki MISHIMA who reports the bug ([BioRuby] trouble
|
1546
|
+
on the FASTA.QUAL format (Bio::FastaNumericFormat)).
|
1547
|
+
* Newly added unit test for Bio::FastaNumericFormat#to_biosequence.
|
1548
|
+
|
1549
|
+
lib/bio/db/fasta/qual.rb | 24 ++++++++++++++++++++++++
|
1550
|
+
lib/bio/db/fasta/qual_to_biosequence.rb | 29 +++++++++++++++++++++++++++++
|
1551
|
+
lib/bio/sequence/adapter.rb | 1 +
|
1552
|
+
test/unit/bio/db/test_qual.rb | 11 +++++++++--
|
1553
|
+
4 files changed, 63 insertions(+), 2 deletions(-)
|
1554
|
+
create mode 100644 lib/bio/db/fasta/qual_to_biosequence.rb
|
1555
|
+
|
1556
|
+
commit 29ed6870e453f54aac2ce9dcb7891186eb01c40d
|
1557
|
+
Author: Ben J Woodcroft <ben@reefedge.sols.uq.edu.au>
|
1558
|
+
Date: Wed Jan 13 14:38:13 2010 +1000
|
1559
|
+
|
1560
|
+
Bug fix: fixed uniprot GN parsing issue
|
1561
|
+
|
1562
|
+
lib/bio/db/embl/sptr.rb | 2 +-
|
1563
|
+
1 files changed, 1 insertions(+), 1 deletions(-)
|
1564
|
+
|
1565
|
+
commit a3002a79ec012559f5847ba8ebe4faf6e7fa609e
|
1566
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1567
|
+
Date: Fri Jan 8 22:14:15 2010 +0900
|
1568
|
+
|
1569
|
+
Tutorial.rd.html is regenerated.
|
1570
|
+
|
1571
|
+
doc/Tutorial.rd.html | 29 ++++++++++++++---------------
|
1572
|
+
1 files changed, 14 insertions(+), 15 deletions(-)
|
1573
|
+
|
1574
|
+
commit 9238c3cb0e8f1156d23a5dfb3ce4e299a91b9f23
|
1575
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1576
|
+
Date: Fri Jan 8 09:04:23 2010 +0100
|
1577
|
+
|
1578
|
+
Tutorial: removed bad links
|
1579
|
+
|
1580
|
+
doc/Tutorial.rd | 10 +---------
|
1581
|
+
1 files changed, 1 insertions(+), 9 deletions(-)
|
1582
|
+
|
1583
|
+
commit 60542fd9863c5fc1240a15cc76f8fa90644a15c8
|
1584
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1585
|
+
Date: Wed Jan 6 20:38:25 2010 +0900
|
1586
|
+
|
1587
|
+
Changed header and the depth of loading helper due to the rename.
|
1588
|
+
|
1589
|
+
test/unit/bio/appl/clustalw/test_report.rb | 4 ++--
|
1590
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
1591
|
+
|
1592
|
+
commit 68924e736df76fe3c77d9fe132b6df01fc0621fe
|
1593
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1594
|
+
Date: Wed Jan 6 20:34:10 2010 +0900
|
1595
|
+
|
1596
|
+
Renamed test/unit/bio/db/test_clustalw.rb to test/unit/bio/appl/clustalw/test_report.rb.
|
1597
|
+
|
1598
|
+
test/unit/bio/appl/clustalw/test_report.rb | 61 ++++++++++++++++++++++++++++
|
1599
|
+
test/unit/bio/db/test_clustalw.rb | 61 ----------------------------
|
1600
|
+
2 files changed, 61 insertions(+), 61 deletions(-)
|
1601
|
+
create mode 100644 test/unit/bio/appl/clustalw/test_report.rb
|
1602
|
+
delete mode 100644 test/unit/bio/db/test_clustalw.rb
|
1603
|
+
|
1604
|
+
commit 8368eee50de51f6218ffc7b1bf1aad332702c4ba
|
1605
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1606
|
+
Date: Tue Jan 5 12:54:43 2010 +0100
|
1607
|
+
|
1608
|
+
Clustal: unit tests according to Naohisa
|
1609
|
+
|
1610
|
+
lib/bio/appl/clustalw/report.rb | 6 +++---
|
1611
|
+
test/unit/bio/db/test_clustalw.rb | 10 +++++-----
|
1612
|
+
2 files changed, 8 insertions(+), 8 deletions(-)
|
1613
|
+
|
1614
|
+
commit ad525a01fa17052e9b7e9b7f30639c48596552ba
|
1615
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1616
|
+
Date: Tue Jan 5 12:50:17 2010 +0100
|
1617
|
+
|
1618
|
+
Clustal: unit test uses File.read
|
1619
|
+
|
1620
|
+
test/unit/bio/db/test_clustalw.rb | 4 ++--
|
1621
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
1622
|
+
|
1623
|
+
commit 7ab517e05cc470b9ca57273092599adb8c00dc11
|
1624
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1625
|
+
Date: Tue Jan 5 12:49:21 2010 +0100
|
1626
|
+
|
1627
|
+
Clustal: unit test, changed class name and copyright header
|
1628
|
+
|
1629
|
+
test/unit/bio/db/test_clustalw.rb | 4 ++--
|
1630
|
+
1 files changed, 2 insertions(+), 2 deletions(-)
|
1631
|
+
|
1632
|
+
commit 0829ee91a97976eb6671a2feec7edfc524f44b2c
|
1633
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1634
|
+
Date: Tue Jan 5 12:46:37 2010 +0100
|
1635
|
+
|
1636
|
+
Clustal: Changed [] to get_sequence, with method description
|
1637
|
+
|
1638
|
+
* Clustal: Added copyright.
|
1639
|
+
* Changed [] to get_sequence, with method description.
|
1640
|
+
|
1641
|
+
lib/bio/appl/clustalw/report.rb | 12 ++++++++++--
|
1642
|
+
1 files changed, 10 insertions(+), 2 deletions(-)
|
1643
|
+
|
1644
|
+
commit 3b8968a6b7b98e0f03b0822849594262a8f4ac99
|
1645
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1646
|
+
Date: Sun Dec 27 16:44:30 2009 +0100
|
1647
|
+
|
1648
|
+
ClustalW: Added [] method to reach sequence + definition
|
1649
|
+
|
1650
|
+
lib/bio/appl/clustalw/report.rb | 9 +++++++++
|
1651
|
+
test/unit/bio/db/test_clustalw.rb | 6 ++----
|
1652
|
+
2 files changed, 11 insertions(+), 4 deletions(-)
|
1653
|
+
|
1654
|
+
commit 3926fabbcc0636c6e4ed08233af3d647c620cd5b
|
1655
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1656
|
+
Date: Sun Dec 27 16:22:38 2009 +0100
|
1657
|
+
|
1658
|
+
ClustalW: Add ALN parser unit test
|
1659
|
+
|
1660
|
+
test/data/clustalw/example1.aln | 58 ++++++++++++++++++++++++++++++++++
|
1661
|
+
test/unit/bio/db/test_clustalw.rb | 63 +++++++++++++++++++++++++++++++++++++
|
1662
|
+
2 files changed, 121 insertions(+), 0 deletions(-)
|
1663
|
+
create mode 100644 test/data/clustalw/example1.aln
|
1664
|
+
create mode 100644 test/unit/bio/db/test_clustalw.rb
|
1665
|
+
|
1666
|
+
commit 2ef97f945b122dc279eb0ec0a34a2adb0c5f0cff
|
1667
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1668
|
+
Date: Sat Jan 2 13:24:33 2010 +0100
|
1669
|
+
|
1670
|
+
Tutorial: Fixed URLs
|
1671
|
+
|
1672
|
+
doc/Tutorial.rd | 10 +++++-----
|
1673
|
+
1 files changed, 5 insertions(+), 5 deletions(-)
|
1674
|
+
|
1675
|
+
commit 567ca8b010e15cbea9398ee74c78eae01fc6671d
|
1676
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1677
|
+
Date: Fri Jan 1 12:08:50 2010 +0100
|
1678
|
+
|
1679
|
+
Tutorial: Added info on gem install
|
1680
|
+
|
1681
|
+
doc/Tutorial.rd | 9 +++++++--
|
1682
|
+
1 files changed, 7 insertions(+), 2 deletions(-)
|
1683
|
+
|
1684
|
+
commit 21070ab4928d9c7446d58f3003d43ee6235046aa
|
1685
|
+
Author: Pjotr Prins <pjotr.public01@thebird.nl>
|
1686
|
+
Date: Thu Dec 31 11:41:54 2009 +0100
|
1687
|
+
|
1688
|
+
Tutorial.rd: Added Naohisa's Ruby replacement for sed conversion
|
1689
|
+
|
1690
|
+
doc/Tutorial.rd | 6 +++++-
|
1691
|
+
1 files changed, 5 insertions(+), 1 deletions(-)
|
1692
|
+
|
1693
|
+
commit ebded2364f716fa03b0fdbec9887f807836eb789
|
1694
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1695
|
+
Date: Wed Jan 6 10:59:39 2010 +0900
|
1696
|
+
|
1697
|
+
Bio::BIORUBY_EXTRA_VERSION is changed to ".5000".
|
1698
|
+
|
1699
|
+
bioruby.gemspec | 2 +-
|
1700
|
+
lib/bio/version.rb | 2 +-
|
1701
|
+
2 files changed, 2 insertions(+), 2 deletions(-)
|
1702
|
+
|
1703
|
+
commit a1bda9088662edec55af0106b4292c39e51c8b7b
|
1704
|
+
Author: Naohisa Goto <ng@bioruby.org>
|
1705
|
+
Date: Mon Dec 28 21:56:33 2009 +0900
|
1706
|
+
|
1707
|
+
BioRuby 1.4.0 is released.
|
1708
|
+
|
1709
|
+
ChangeLog | 32 ++++++++++++++++++++++++++++++++
|
1710
|
+
bioruby.gemspec | 3 ++-
|
1711
|
+
2 files changed, 34 insertions(+), 1 deletions(-)
|
1712
|
+
|
1
1713
|
commit 5c88896357e1eff0686ceb06cbec0a7837f85050
|
2
1714
|
Author: Naohisa Goto <ng@bioruby.org>
|
3
1715
|
Date: Mon Dec 28 21:55:41 2009 +0900
|