bio 1.3.0 → 1.3.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.
Files changed (75) hide show
  1. data/COPYING +56 -0
  2. data/COPYING.ja +51 -0
  3. data/ChangeLog +540 -0
  4. data/GPL +340 -0
  5. data/LEGAL +141 -0
  6. data/LGPL +504 -0
  7. data/README.rdoc +4 -2
  8. data/Rakefile +2 -2
  9. data/bioruby.gemspec +17 -29
  10. data/doc/Tutorial.rd +118 -90
  11. data/doc/Tutorial.rd.html +124 -87
  12. data/lib/bio/appl/blast.rb +2 -2
  13. data/lib/bio/appl/blast/format0.rb +1 -1
  14. data/lib/bio/appl/fasta.rb +5 -12
  15. data/lib/bio/appl/fasta/format10.rb +96 -6
  16. data/lib/bio/appl/gcg/msf.rb +11 -14
  17. data/lib/bio/appl/pts1.rb +0 -4
  18. data/lib/bio/appl/sim4/report.rb +50 -17
  19. data/lib/bio/db/biosql/biosql_to_biosequence.rb +10 -0
  20. data/lib/bio/db/biosql/sequence.rb +234 -298
  21. data/lib/bio/db/embl/embl.rb +0 -3
  22. data/lib/bio/db/genbank/common.rb +3 -1
  23. data/lib/bio/io/biosql/ar-biosql.rb +257 -0
  24. data/lib/bio/io/biosql/biosql.rb +39 -0
  25. data/lib/bio/io/biosql/config/database.yml +5 -4
  26. data/lib/bio/io/ncbirest.rb +12 -5
  27. data/lib/bio/io/pubmed.rb +5 -1
  28. data/lib/bio/io/sql.rb +43 -150
  29. data/lib/bio/sequence/compat.rb +5 -1
  30. data/lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb +6 -4
  31. data/lib/bio/version.rb +1 -1
  32. data/test/data/gcg/pileup-aa.msf +67 -0
  33. data/test/data/sim4/complement-A4.sim4 +43 -0
  34. data/test/data/sim4/simple-A4.sim4 +25 -0
  35. data/test/data/sim4/simple2-A4.sim4 +25 -0
  36. data/test/functional/bio/io/test_pubmed.rb +129 -0
  37. data/test/unit/bio/appl/bl2seq/test_report.rb +5 -5
  38. data/test/unit/bio/appl/gcg/test_msf.rb +154 -0
  39. data/test/unit/bio/appl/hmmer/test_report.rb +2 -2
  40. data/test/unit/bio/appl/sim4/test_report.rb +869 -0
  41. data/test/unit/bio/appl/test_blast.rb +1 -1
  42. data/test/unit/bio/db/biosql/tc_biosql.rb +110 -0
  43. data/test/unit/bio/db/biosql/ts_suite_biosql.rb +8 -0
  44. data/test/unit/bio/test_feature.rb +18 -17
  45. data/test/unit/bio/test_reference.rb +18 -18
  46. data/test/unit/bio/test_sequence.rb +1 -1
  47. metadata +18 -30
  48. data/lib/bio/io/biosql/biodatabase.rb +0 -64
  49. data/lib/bio/io/biosql/bioentry.rb +0 -29
  50. data/lib/bio/io/biosql/bioentry_dbxref.rb +0 -11
  51. data/lib/bio/io/biosql/bioentry_path.rb +0 -12
  52. data/lib/bio/io/biosql/bioentry_qualifier_value.rb +0 -10
  53. data/lib/bio/io/biosql/bioentry_reference.rb +0 -10
  54. data/lib/bio/io/biosql/bioentry_relationship.rb +0 -10
  55. data/lib/bio/io/biosql/biosequence.rb +0 -11
  56. data/lib/bio/io/biosql/comment.rb +0 -7
  57. data/lib/bio/io/biosql/dbxref.rb +0 -13
  58. data/lib/bio/io/biosql/dbxref_qualifier_value.rb +0 -12
  59. data/lib/bio/io/biosql/location.rb +0 -32
  60. data/lib/bio/io/biosql/location_qualifier_value.rb +0 -11
  61. data/lib/bio/io/biosql/ontology.rb +0 -10
  62. data/lib/bio/io/biosql/reference.rb +0 -9
  63. data/lib/bio/io/biosql/seqfeature.rb +0 -32
  64. data/lib/bio/io/biosql/seqfeature_dbxref.rb +0 -11
  65. data/lib/bio/io/biosql/seqfeature_path.rb +0 -11
  66. data/lib/bio/io/biosql/seqfeature_qualifier_value.rb +0 -20
  67. data/lib/bio/io/biosql/seqfeature_relationship.rb +0 -11
  68. data/lib/bio/io/biosql/taxon.rb +0 -12
  69. data/lib/bio/io/biosql/taxon_name.rb +0 -9
  70. data/lib/bio/io/biosql/term.rb +0 -27
  71. data/lib/bio/io/biosql/term_dbxref.rb +0 -11
  72. data/lib/bio/io/biosql/term_path.rb +0 -12
  73. data/lib/bio/io/biosql/term_relationship.rb +0 -13
  74. data/lib/bio/io/biosql/term_relationship_term.rb +0 -11
  75. data/lib/bio/io/biosql/term_synonym.rb +0 -10
data/COPYING ADDED
@@ -0,0 +1,56 @@
1
+ BioRuby is copyrighted free software by Toshiaki Katayama <k@bioruby.org>.
2
+ You can redistribute it and/or modify it under either the terms of the GPL
3
+ version 2 (see the file GPL), or the conditions below:
4
+
5
+ 1. You may make and give away verbatim copies of the source form of the
6
+ software without restriction, provided that you duplicate all of the
7
+ original copyright notices and associated disclaimers.
8
+
9
+ 2. You may modify your copy of the software in any way, provided that
10
+ you do at least ONE of the following:
11
+
12
+ a) place your modifications in the Public Domain or otherwise
13
+ make them Freely Available, such as by posting said
14
+ modifications to Usenet or an equivalent medium, or by allowing
15
+ the author to include your modifications in the software.
16
+
17
+ b) use the modified software only within your corporation or
18
+ organization.
19
+
20
+ c) give non-standard binaries non-standard names, with
21
+ instructions on where to get the original software distribution.
22
+
23
+ d) make other distribution arrangements with the author.
24
+
25
+ 3. You may distribute the software in object code or binary form,
26
+ provided that you do at least ONE of the following:
27
+
28
+ a) distribute the binaries and library files of the software,
29
+ together with instructions (in the manual page or equivalent)
30
+ on where to get the original distribution.
31
+
32
+ b) accompany the distribution with the machine-readable source of
33
+ the software.
34
+
35
+ c) give non-standard binaries non-standard names, with
36
+ instructions on where to get the original software distribution.
37
+
38
+ d) make other distribution arrangements with the author.
39
+
40
+ 4. You may modify and include the part of the software into any other
41
+ software (possibly commercial). But some files in the distribution
42
+ are not written by the author, so that they are not under these terms.
43
+
44
+ For the list of those files and their copying conditions, see the
45
+ file LEGAL.
46
+
47
+ 5. The scripts and library files supplied as input to or produced as
48
+ output from the software do not automatically fall under the
49
+ copyright of the software, but belong to whomever generated them,
50
+ and may be sold commercially, and may be aggregated with this
51
+ software.
52
+
53
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
54
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
55
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
56
+ PURPOSE.
@@ -0,0 +1,51 @@
1
+ $BK\%W%m%0%i%`$O%U%j!<%=%U%H%&%'%"$G$9!%(BGPL (the GNU General
2
+ Public License)$B%P!<%8%g%s(B2$B$^$?$O0J2<$K<($9>r7o$GK\%W%m%0%i%`(B
3
+ $B$r:FG[I[$G$-$^$9!%(BGPL$B$K$D$$$F$O(BGPL$B%U%!%$%k$r;2>H$7$F2<$5$$!%(B
4
+
5
+ 1. $BJ#@=$O@)8B$J$/<+M3$G$9!%(B
6
+
7
+ 2. $B0J2<$N>r7o$N$$$:$l$+$rK~$?$9;~$KK\%W%m%0%i%`$N%=!<%9$r(B
8
+ $B<+M3$KJQ99$G$-$^$9!%(B
9
+
10
+ (a) $B%M%C%H%K%e!<%:$K%]%9%H$7$?$j!$:n<T$KJQ99$rAwIU$9$k(B
11
+ $B$J$I$NJ}K!$G!$JQ99$r8x3+$9$k!%(B
12
+
13
+ (b) $BJQ99$7$?K\%W%m%0%i%`$r<+J,$N=jB0$9$kAH?%FbIt$@$1$G(B
14
+ $B;H$&!%(B
15
+
16
+ (c) $BJQ99E@$rL@<($7$?$&$(!$%=%U%H%&%'%"$NL>A0$rJQ99$9$k!%(B
17
+ $B$=$N%=%U%H%&%'%"$rG[I[$9$k;~$K$OJQ99A0$NK\%W%m%0%i(B
18
+ $B%`$bF1;~$KG[I[$9$k!%$^$?$OJQ99A0$NK\%W%m%0%i%`$N%=!<(B
19
+ $B%9$NF~<jK!$rL@<($9$k!%(B
20
+
21
+ (d) $B$=$NB>$NJQ99>r7o$r:n<T$H9g0U$9$k!%(B
22
+
23
+ 3. $B0J2<$N>r7o$N$$$:$l$+$rK~$?$9;~$KK\%W%m%0%i%`$r%3%s%Q%$(B
24
+ $B%k$7$?%*%V%8%'%/%H%3!<%I$d<B9T7A<0$G$bG[I[$G$-$^$9!%(B
25
+
26
+ (a) $B%P%$%J%j$r<u$1<h$C$??M$,%=!<%9$rF~<j$G$-$k$h$&$K!$(B
27
+ $B%=!<%9$NF~<jK!$rL@<($9$k!%(B
28
+
29
+ (b) $B5!3#2DFI$J%=!<%9%3!<%I$rE:IU$9$k!%(B
30
+
31
+ (c) $BJQ99$r9T$C$?%P%$%J%j$OL>A0$rJQ99$7$?$&$(!$%*%j%8%J(B
32
+ $B%k$N%=!<%9%3!<%I$NF~<jK!$rL@<($9$k!%(B
33
+
34
+ (d) $B$=$NB>$NG[I[>r7o$r:n<T$H9g0U$9$k!%(B
35
+
36
+ 4. $BB>$N%W%m%0%i%`$X$N0zMQ$O$$$+$J$kL\E*$G$"$l<+M3$G$9!%$?(B
37
+ $B$@$7!$K\%W%m%0%i%`$K4^$^$l$kB>$N:n<T$K$h$k%3!<%I$O!$$=(B
38
+ $B$l$>$l$N:n<T$N0U8~$K$h$k@)8B$,2C$($i$l$k>l9g$,$"$j$^$9!%(B
39
+
40
+ $B$=$l$i%U%!%$%k$N0lMw$H$=$l$>$l$NG[I[>r7o$J$I$KIU$$$F$O(B
41
+ LEGAL$B%U%!%$%k$r;2>H$7$F$/$@$5$$!%(B
42
+
43
+ 5. $BK\%W%m%0%i%`$X$NF~NO$H$J$k%9%/%j%W%H$*$h$S!$K\%W%m%0%i(B
44
+ $B%`$+$i$N=PNO$N8"Mx$OK\%W%m%0%i%`$N:n<T$G$O$J$/!$$=$l$>(B
45
+ $B$l$NF~=PNO$r@8@.$7$??M$KB0$7$^$9!%$^$?!$K\%W%m%0%i%`$K(B
46
+ $BAH$_9~$^$l$k$?$a$N3HD%%i%$%V%i%j$K$D$$$F$bF1MM$G$9!%(B
47
+
48
+ 6. $BK\%W%m%0%i%`$OL5J]>Z$G$9!%:n<T$OK\%W%m%0%i%`$r%5%]!<%H(B
49
+ $B$9$k0U;V$O$"$j$^$9$,!$%W%m%0%i%`<+?H$N%P%0$"$k$$$OK\%W(B
50
+ $B%m%0%i%`$N<B9T$J$I$+$iH/@8$9$k$$$+$J$kB;32$KBP$7$F$b@U(B
51
+ $BG$$r;}$A$^$;$s!%(B
data/ChangeLog CHANGED
@@ -1,3 +1,543 @@
1
+ 2009-09-02 Naohisa Goto <ng@bioruby.org>
2
+
3
+ * BioRuby 1.3.1 is released.
4
+
5
+ 2009-09-02 Naohisa Goto <ng@bioruby.org>
6
+
7
+ * lib/bio/version.rb
8
+
9
+ Preparation for bioruby-1.3.1 release.
10
+ (commit 3d86bc6d519c4c3319e5a1b2ca36f8f5177f127f)
11
+
12
+ 2009-08-31 Naohisa Goto <ng@bioruby.org>
13
+
14
+ * lib/bio/sequence/compat.rb
15
+
16
+ Document bug fix: Bio::Sequence::(NA|AA|Generic)#to_fasta are
17
+ currently not deprecated.
18
+ (commit 0e0f888a73a60c0f0a7b103019aeb82c8f063c4e)
19
+
20
+ 2009-08-28 Naohisa Goto <ng@bioruby.org>
21
+
22
+ * lib/bio/appl/sim4/report.rb
23
+
24
+ Bug fix: parse error when unaligned regions exist. Thanks to
25
+ Tomoaki NISHIYAMA who reports the bug ([BioRuby] SIM4 parser).
26
+
27
+ * test/unit/bio/appl/sim4/test_report.rb,
28
+ test/data/sim4/complement-A4.sim4
29
+
30
+ To confirm the bug fix, tests are added with new test data.
31
+ (commit 02d531e36ecf789f232cf3e05f85391b60279f00)
32
+
33
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
34
+
35
+ * lib/bio/appl/sim4/report.rb
36
+
37
+ Bug fix: parse errpr when the alignment of an intron is splitted
38
+ into two lines. Thanks to Tomoaki NISHIYAMA who sent the patch
39
+ ([BioRuby] SIM4 parser).
40
+ (commit 137ec4c3099236c89ac4a0157d0c77ba13d1875c)
41
+
42
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
43
+
44
+ * lib/bio/appl/sim4/report.rb
45
+
46
+ Ruby 1.9 support: String#each_line instead of String#each
47
+ (commit b65f176f3be74c21a8bb8fc2a6f204fb8ab08fd6)
48
+
49
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
50
+
51
+ * test/unit/bio/appl/sim4/test_report.rb,
52
+ test/data/sim4/simple-A4.sim4, test/data/sim4/simple2-A4.sim4
53
+
54
+ Newly added unit tests for Bio::Sim4::Report with test data.
55
+ The test data is based on the data provided by Tomoaki NISHIYAMA
56
+ ([BioRuby] SIM4 parser), and most of the sequence data is
57
+ replaced by random sequence.
58
+ (commit 0f53916dd728b871f02d1caf0c5105a2e1c58bc4)
59
+
60
+ 2009-08-18 Naohisa Goto <ng@bioruby.org>
61
+
62
+ * COPYING, COPYING.ja, GPL, LGPL, LEGAL
63
+
64
+ License files are added. COPYING, COPYING.ja, GPL, LGPL are taken
65
+ from Ruby's svn repository. LEGAL is written for BioRuby.
66
+ (commit c65531331e840562ac7342f1896f7e2a3aac6c88)
67
+
68
+ * README.rdoc
69
+
70
+ Added descriptions about license to refer COPYING and LEGAL.
71
+ (commit d88015a2e3b2c5f7c2a931261819b908084d0179)
72
+
73
+ * COPYING
74
+
75
+ Modified COPYING for BioRuby, following Matz's recommendation
76
+ in [ruby-list:46293].
77
+ (commit 2c30e7342e33c878bd7132a302974364c54caad9)
78
+
79
+ 2009-05-06 Naohisa Goto <ng@bioruby.org>
80
+
81
+ * lib/bio/appl/fasta.rb, lib/bio/appl/fasta/format10.rb
82
+
83
+ Restored Bio::Fasta.parser for keeping compatibility, and added
84
+ forgotten require.
85
+ (commit 97b9284109c9a4431b92eab208509e1df6069b4b)
86
+
87
+ 2009-05-02 Naohisa Goto <ng@bioruby.org>
88
+
89
+ * lib/bio/appl/fasta.rb
90
+
91
+ * Bug fix: Bio::Fasta::Report should be autoloaded.
92
+ * Removed useless method Bio::Fasta::Report.parser because
93
+ only the "format10" parser is available for a long time
94
+ and dynamic require is a potential security hole.
95
+ * Removed "require" lines in Bio::Fasta#parse_result.
96
+ (commit 3d3edc44127f4fd97abcc17a859e36623facdc7c)
97
+
98
+ 2009-05-02 Naohisa Goto <ng@bioruby.org>
99
+
100
+ * lib/bio/appl/fasta/format10.rb
101
+
102
+ Bug Fix: stack overflow problem, and added support for multiple
103
+ query sequences.
104
+
105
+ * Bug fix: stack overflow problem. Thanks to Fredrik Johansson who
106
+ reports the bug ([BioRuby] Made a change in format10.rb).
107
+ * Changed to set @entry_overrun when a report containing multiple
108
+ query sequences' results is given.
109
+ * New methods Bio::Fasta::Report#query_def and query_len.
110
+ * To support reading a search result with multiple query sequences
111
+ by using Bio::FlatFile, a flatfile splitter class
112
+ Bio::Fasta::Report::FastaFormat10Splitter is newly added.
113
+ (commit e57349594427ad1a51979c9d4e0c3efcffd160c2)
114
+
115
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
116
+
117
+ * test/unit/bio/test_feature.rb, test/unit/bio/test_reference.rb
118
+
119
+ class name conflict of NullStderr
120
+ (commit 1607b60d905eb8cb5ca289e357cbb2cbb7a118ff)
121
+
122
+ * test/unit/bio/appl/test_blast.rb
123
+
124
+ Bug fix: method redefined: TestBlast#test_self_local
125
+ (commit 9caa4c9d94126b3568c439878876062c84afbdec)
126
+
127
+ * test/unit/bio/appl/hmmer/test_report.rb
128
+ Bug fix: method name conflict:
129
+ TestHMMERReportClassMethods#test_reports_ary
130
+ (commit cc3e1b85cf885736a7b1293c7e0951e099cd7e6b)
131
+
132
+ * test/unit/bio/appl/bl2seq/test_report.rb
133
+
134
+ * Bug fix: method redefined: TestBl2seqReport#test_undefed_methods.
135
+ To fix the bug, the second "test_undefed_methods" is renamed to
136
+ "test_undefed_methods_for_iteration".
137
+ * Assertions are changed in the first "test_undefed_methods".
138
+ * Fixed typo.
139
+ (commit 7e1a550de3dffde3fd8808803e44f35072e4d40b)
140
+
141
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
142
+
143
+ * lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb
144
+ Bug fix: attribute "strands_for_display" is disabled because the
145
+ method definition with the same name overwrites the attribute
146
+ definition.
147
+ (commit af07e2784faacc51366ddfab5bedd45841734f53)
148
+
149
+ * lib/bio/db/embl/embl.rb
150
+
151
+ Bug fix: removed duplicated alias
152
+ (commit 65c360f39580322b5eee64b7c2d8274ff7b8dfff)
153
+
154
+ * lib/bio/appl/pts1.rb
155
+
156
+ Bug fix: removed unused attribute "function" in Bio::PTS1
157
+ because method definition with the same name appeared later
158
+ wipes out the attribute definition.
159
+ (commit 81cbe9da55217d186e6dc9c1bfb56a39fba73590)
160
+
161
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
162
+
163
+ * lib/bio/appl/blast/format0.rb
164
+
165
+ Bug fix: forgotten "if false #dummy" in the attribute "query_to".
166
+ (commit 7c2e8d0d11baf8cb9e25207ba5b27d4e9d756054)
167
+
168
+ * lib/bio/appl/blast.rb
169
+
170
+ Bug fix: suppressing warning messages when $VERBOSE=true.
171
+
172
+ * To suppress warining message "lib/bio/appl/blast.rb:402: warning:
173
+ useless use of :: in void context", a dummy variable is added.
174
+ * The attribute "server" is changed to attr_reader because "server="
175
+ is defined later.
176
+ (commit f9404276d2ddcf15966cab74c419733ccd748af2)
177
+
178
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
179
+
180
+ * test/unit/bio/test_sequence.rb
181
+
182
+ Fixed test name overwriting another test name in TestSequence.
183
+ Fixed by Andrew Grimm at git://github.com/agrimm/bioruby.git
184
+ in Thu Feb 19 22:30:26 2009 +1100.
185
+ (commit a6c39a719b284a43fe8c67edc1f2826d2941647f)
186
+
187
+ 2009-04-26 Naohisa Goto <ng@bioruby.org>
188
+
189
+ * test/unit/bio/appl/gcg/test_msf.rb,
190
+ test/data/gcg/pileup-aa.msf
191
+
192
+ Newly added unit tests for Bio::GCG::Msf with test data
193
+ (commit a1819cd3b772300ef5bea2ebb63376e5b9fc64da)
194
+
195
+ 2009-04-23 Naohisa Goto <ng@bioruby.org>
196
+
197
+ * lib/bio/appl/gcg/msf.rb
198
+
199
+ * Bug fix: incorrect parsing of GCG clustalw+ results.
200
+ * Small refactoring of codes
201
+ (commit 2eae8f722aa888c85d54aa958eb117d49ce42f8b)
202
+
203
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
204
+
205
+ * lib/bio/appl/gcg/msf.rb
206
+
207
+ * Bug fix: Bio::GCG::Msf fails parsing when two dots are appeared
208
+ at the end of a line. Thanks to Fredrik Johansson who reports the
209
+ bug and send the patch ([BioRuby] Parsing MSF alignment file).
210
+ * bug fix: misspelling of "ALIGNMENT".
211
+ (commit 44ca52443e0249f54c43f92d08cf083cdd12c692)
212
+
213
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
214
+
215
+ * lib/bio/io/pubmed.rb
216
+
217
+ Bug fix: Bio::PubMed#efetch should return an array of string
218
+ objects. Thanks to Masahide Kikkawa and Fredrik Johansson
219
+ who report the bug (in "[BioRuby] Bio::PubMed.efetch, bug?"
220
+ and "[BioRuby] PubMed.efetch error").
221
+ (commit a48a9a35b87dead069fe328ba7086977304af995)
222
+
223
+ * test/functional/bio/io/test_pubmed.rb
224
+
225
+ Newly added functional test for Bio::PubMed.
226
+ (commit bf5ba6d4503f3ddb0ca31673882f5b396a932bbe)
227
+
228
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
229
+
230
+ * lib/bio/io/ncbirest.rb
231
+
232
+ * Bug fix: Bio::NCBI::REST#esearch ignores hash["retstart"].
233
+ * In Bio::NCBI::REST#esearch, the priority of limit and
234
+ hash["retmax"] is clarified: limit is used unless it is nil.
235
+ In addition, default value of limit is changed to nil. If both
236
+ limit and hash["retmax"] are nil, default value 100 is used.
237
+ * Bio::NCBI::REST::NCBI_INTERVAL is changed to 1.
238
+ (commit fc0339fe8a42cd00199cfdc938590ae9626551bc)
239
+
240
+ 2009-03-19 Naohisa Goto <ng@bioruby.org>
241
+
242
+ * lib/bio/io/ncbirest.rb
243
+
244
+ Bug fix: Bio::PubMed.efetch/esearch ignores retmax after refactoring
245
+ of Bio::PubMed. efetch/esearch methods in Bio::NCBI::REST are also
246
+ affected. Thanks to Craig Knox who reports the bug ([BioRuby]
247
+ efetch/esearch broken). Bug fix by Toshiaki Katayama.
248
+ (commit 51c3223e033b2992a7bd95da282f88164406ff92)
249
+
250
+ 2009-03-19 Naohisa Goto <ng@bioruby.org>
251
+
252
+ * doc/Tutorial.rd
253
+
254
+ GO example using Ensembl API is moved to Appendix.
255
+ (commit d677c3d7cbd2f4ff6193255e0e30366ecd0aa421)
256
+
257
+ fixed RD text formatting issues
258
+ (commit 642577ae70647f8bd0ae3bcc8ddc118cecc886c7)
259
+
260
+ * doc/Tutorial.rd.html
261
+
262
+ doc/Tutorial.rd.html is regenerated
263
+ (commit dd878d3ecd83ad5e61a21bbf90d27d1c89d5f12d)
264
+
265
+ 2009-03-18 Naohisa Goto <ng@bioruby.org>
266
+
267
+ * doc/Tutorial.rd
268
+
269
+ Reverted a Blast example code because it aims to tell usage of
270
+ blocks to explore a Blast report, and getting the "result" is
271
+ only a side effect and not the main purpose.
272
+ (commit db172eb1e5f1cbc17317bff8043cc07bf6597073)
273
+
274
+ 2009-03-18 Pjotr Prins <pjotr.public01@thebird.nl>
275
+
276
+ * doc/Tutorial.rd
277
+
278
+ Updated Tutorial.
279
+ (commit b3363ee94cfb86540a7d286ccac608b74737b30d)
280
+
281
+ Updated tutorial with links and gene ontology example
282
+ by Marc Hoeppner.
283
+ (commit 27a5019ca7a41211055550f9731672aa71a3a4b3)
284
+
285
+ Fixed doctests in documentation.
286
+ (commit 9a21a1750a9584152fae669be132af89086e7d5f)
287
+
288
+ Added working BLAST example.
289
+ (commit 45c27f109f069db3b6208fd59cc2b683a5bca5a9)
290
+
291
+ Added BLAST example. All doctests work again in Tutorial.rd.
292
+ (commit 05edf3092d0322b8f2775e60448700024d8cb343)
293
+
294
+ Slightly improved remarks. Tutorial.rd runs its doctests.
295
+ (commit 541a4cf0d9d0d3904f1570e1258a847a22f9238b)
296
+
297
+ reference to github.com/pjotrp/bioruby-support
298
+ (commit ec5dfb1544e32034457b0dd36a9dc50fef6c0fbe)
299
+
300
+ Added info on how to split large BLAST XML files.
301
+ (commit 6c9a80cde4be6c4c3d02b77c44dfa8bfbf0a41ff)
302
+
303
+ Updated Tutorial
304
+ (commit 07267e2d9c5b774bb0f41b795f6be1f24ff175ba)
305
+
306
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
307
+
308
+ * lib/bio/db/biosql/sequence.rb
309
+
310
+ Fixed: taxonomy, do not report node_rank of type "class".
311
+ GenBanks Tests I/O passed.
312
+ (commit ba5400eaf6de0f38341825cb0fbc24ca1d99eeba)
313
+
314
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
315
+
316
+ * test/unit/bio/db/biosql/tc_biosql.rb
317
+
318
+ Removed last "\n" from reference GenBank string
319
+ (commit 2de87ceef220056a502c5a9a3457abdf1d93fab0)
320
+
321
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
322
+
323
+ * lib/bio/db/biosql/sequence.rb
324
+
325
+ Fix: reference deletion from bioentry deletion, when reference
326
+ is a leaf (no more bioentries connected to it)
327
+ (commit 6f3195a023cab8ee64eb3e3bb9c491534cd80603)
328
+
329
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
330
+
331
+ * lib/bio/io/biosql/ar-biosql.rb
332
+
333
+ Added: relation between bioentry and refernces, also through
334
+ references by bioentry_reference. This is useful to accomplish
335
+ complete bioentry's delete.
336
+ (commit d9e5876231d451c9ab1a2e75702f9fe70b1509b8)
337
+
338
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
339
+
340
+ * test/unit/bio/db/biosql/tc_biosql.rb
341
+
342
+ Fixed: title test
343
+ (commit 45e2d5e21bc1f93240827dee2e46ac02d24cf696)
344
+
345
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
346
+
347
+ * lib/bio/db/genbank/common.rb
348
+
349
+ Fix: Delete added dot at the end of TITLE.
350
+ (commit 2a29c9e7fd41da9d6bf065b3d6dbd473e4d03bbe)
351
+
352
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
353
+
354
+ * lib/bio/db/biosql/sequence.rb
355
+
356
+ Add: bioentry_qualifier_value recognize if it's handling data
357
+ (reader) and format it accordingly with GenBank/EMBL format
358
+ ex: 26-SEP-2006 .
359
+ (commit 05ba3f1647d4cc71747ada95c9bb7f2a5a44b518)
360
+
361
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
362
+
363
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
364
+
365
+ Fixed: date_modified, the code is moved to
366
+ Bio::SQL::Sequence#bioentry_qualifier_anchor#method_reader.
367
+ It's most an exercise of style than good programming.
368
+ date_modifier reader should be a method apart.
369
+ (commit c9a980877c9222e05aa0d9163ba51aa2c77a7146)
370
+
371
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
372
+
373
+ * test/unit/bio/db/biosql/tc_biosql.rb,
374
+ test/unit/bio/db/biosql/test_biosql.rb,
375
+ test/unit/bio/db/biosql/ts_suite_biosql.rb
376
+
377
+ Add: BioSQL's TestSuite, alpha stage
378
+ (commit be1839b3bf3008fe234e8f89d85302caef83398f)
379
+
380
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
381
+
382
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
383
+
384
+ Fix: date_modifier biosequence adapter
385
+ (commit a7c1c717e1684fd9117fc2d096e8d6e7c647b62d)
386
+
387
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
388
+
389
+ * test/unit/bio/db/biosql/test_biosql.rb
390
+
391
+ Added preliminar tests using connection with jdbcmysql.
392
+ Test are focused on input/output coherence.
393
+ (commit 0ada9f8b4bb8553bf076caca76bc76a4d6791c6b)
394
+
395
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
396
+
397
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
398
+
399
+ Fixed: GI:xxxx reference on VERSION's line using
400
+ biosql/to_biosequence.output(:genbank)
401
+ (commit 35e1dce1a75ed967ec707457ed3655ce927f83c3)
402
+
403
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
404
+
405
+ * lib/bio/db/biosql/sequence.rb
406
+
407
+ added other_seqids as alias of identifier, for the adapter.
408
+ Export problem of GI in output(:genbank) from biosql/biosequence.
409
+ (commit 7f69ea73dcd28e76743bd5213c3719cf7d9d44a0)
410
+
411
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
412
+
413
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
414
+
415
+ (Changed comments only) Added TODOs as comments:
416
+ to_biosequence.output(:genbank) some major and minor problems.
417
+ 1) Major. GI: is not exported IN(VERSION X64011.1 GI:44010),
418
+ OUT(VERSION X64011.1)
419
+ 1.1) Db storage is ok, GI is saved into identifier of bioentry
420
+ 2) Moderate. date wrong format IN(26-SEP-2006), OUT(2006-09-26)
421
+ 3) Minor. Organism in output as more terms.
422
+ 4) Minor. Title has a dot at the end, input was without
423
+
424
+ ref for GI in genbank are functions ncbi_gi_number/other_seqids
425
+ (commit 03662955a45e1c3d5d32150b423a92d40c0c33c7)
426
+
427
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
428
+
429
+ * lib/bio/io/sql.rb
430
+
431
+ get and first converted from DataMapper to ActiveRecord
432
+ (commit 78b37c61bbb0a16bbee6c3dd16bff7c292e77695)
433
+
434
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
435
+
436
+ * lib/bio/db/biosql/sequence.rb
437
+
438
+ converted syntax of first function from DataMapper to ActiveRecord
439
+ (commit 822a35794b958906e5d4bfb6d5b9d74efb360ea7)
440
+
441
+ converted .get! method in find with conditions
442
+ (commit 1f3012ba93a9c462e8b1daa762372a55534db29c)
443
+
444
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
445
+
446
+ * lib/bio/io/biosql/biosql.rb
447
+
448
+ establish_connection rewrite and update Class.first call with
449
+ ActiveRecord syntax. Coming from DataMapper.
450
+ (commit 66fb6ff597a2ebf2f2dc1ebe7e505fbcc46c993c)
451
+
452
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
453
+
454
+ * lib/bio/db/biosql/sequence.rb
455
+
456
+ Version developed with DataMapper, need to be tested with
457
+ ActiveRecord -current ORM-.
458
+ (commit 7bf5d24364fce8f3a466697e479af5f28c672265)
459
+
460
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
461
+
462
+ * lib/bio/io/biosql/config/database.yml
463
+
464
+ Configured development database with jdbcmysql adapter.
465
+ (commit 7e143b1d0451bce6865e560febc5c57048210416)
466
+
467
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
468
+
469
+ * lib/bio/io/biosql/ar-biosql.rb
470
+
471
+ Newly added lib/bio/io/biosql/ar-biosql.rb: In one file
472
+ definition of all BioSQL's ActiveRecords classes.
473
+ (commit 87f7bc6ac844583adc07e409c9fac7fa1f275d2b)
474
+
475
+ class Bioentry: added has_many obejct_bioentry_path and
476
+ subject_bioentry_path.
477
+ (commit e969eae59d0de098e094ea21007c34371bab3bdd)
478
+
479
+ class BioentryRelationship: added relation to Term class.
480
+ (commit f77b28045f0631391c6f4ad4e9eed15d296bec95)
481
+
482
+ class Biosequence: changed to composite primary keys,
483
+ :bioentry_id, :version.
484
+ (commit c6683346e4c13d8969bb859e882698b90d0828f1)
485
+
486
+ class SeqfeatureQualifierValue: find function deleted, wrong here.
487
+ (commit 89f64af363d0b204e50ea71924909724d56bccc4)
488
+
489
+ * lib/bio/io/sql.rb
490
+
491
+ Separated connection (see lib/bio/io/biosql.rb) from definition
492
+ of public methods.
493
+ (commit 24b9e6473ce36e3151c560ea26c3b95105656ef4)
494
+
495
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
496
+
497
+ * lib/bio/io/biosql
498
+
499
+ To integrate BioSQL ActiveRecords classes to one file, as the
500
+ first step, following 28 files listed below are deleted. In the
501
+ later commit, they will be integrated into one file,
502
+ lib/bio/io/biosql/ar-biosql.rb.
503
+ (commit 0ea9f08b36e10e50c855d4346194849e8e7a263b)
504
+
505
+ * lib/bio/io/biosql/biodatabase.rb
506
+ * lib/bio/io/biosql/bioentry.rb
507
+ * lib/bio/io/biosql/bioentry_dbxref.rb
508
+ * lib/bio/io/biosql/bioentry_path.rb
509
+ * lib/bio/io/biosql/bioentry_qualifier_value.rb
510
+ * lib/bio/io/biosql/bioentry_reference.rb
511
+ * lib/bio/io/biosql/bioentry_relationship.rb
512
+ * lib/bio/io/biosql/biosequence.rb
513
+ * lib/bio/io/biosql/comment.rb
514
+ * lib/bio/io/biosql/dbxref.rb
515
+ * lib/bio/io/biosql/dbxref_qualifier_value.rb
516
+ * lib/bio/io/biosql/location.rb
517
+ * lib/bio/io/biosql/location_qualifier_value.rb
518
+ * lib/bio/io/biosql/ontology.rb
519
+ * lib/bio/io/biosql/reference.rb
520
+ * lib/bio/io/biosql/seqfeature.rb
521
+ * lib/bio/io/biosql/seqfeature_dbxref.rb
522
+ * lib/bio/io/biosql/seqfeature_path.rb
523
+ * lib/bio/io/biosql/seqfeature_qualifier_value.rb
524
+ * lib/bio/io/biosql/seqfeature_relationship.rb
525
+ * lib/bio/io/biosql/taxon.rb
526
+ * lib/bio/io/biosql/taxon_name.rb
527
+ * lib/bio/io/biosql/term.rb
528
+ * lib/bio/io/biosql/term_dbxref.rb
529
+ * lib/bio/io/biosql/term_path.rb
530
+ * lib/bio/io/biosql/term_relationship.rb
531
+ * lib/bio/io/biosql/term_relationship_term.rb
532
+ * lib/bio/io/biosql/term_synonym.rb
533
+
534
+ 2009-03-17 Naohisa Goto <ng@bioruby.org>
535
+
536
+ * Rakefile
537
+
538
+ Rake::Task#execute now needs to take an argument. Currently,
539
+ nil is given.
540
+
1
541
  2009-02-20 Naohisa Goto <ng@bioruby.org>
2
542
 
3
543
  * BioRuby 1.3.0 is released.