File: ChangeLog

package info (click to toggle)
bioruby 0.6.2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,488 kB
  • ctags: 2,327
  • sloc: ruby: 25,294; makefile: 46
file content (561 lines) | stat: -rw-r--r-- 17,568 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
2004-12-13  KATAYAMA Toshiaki <k@bioruby.org>

	* BioRuby 0.6.2 released.

	* test/all_tests.rb

	  Unit tests for some classes are newly incorporated by
	  Moses Hohman.  You can try it by 'ruby install.rb test'

	* lib/bio/appl/spidey/report.rb

	  Newly added Spidey result parser class.

	* lib/bio/appl/blat/report.rb

	  Newly added BLAT result parser class.

	* lib/bio/db/kegg/glycan.rb, lib/bio/db/kegg/reaction.rb

	  Newly added KEGG GLYCAN, KEGG REACTION parser classes.

	* fixes and improvements:
	  * lib/bio/appl/blast/blast/format0.rb
	    * minor fix for the Blast default format parser
	  * lib/bio/alignment.rb
	    * Alignment class
	  * lib/bio/db/prosite.rb
	    * bug reported by Rolv Seehuus is fixed
	    * some methods are added
	  * lib/bio/db/kegg/compound.rb
	    * some methods are added

2004-10-25  KATAYAMA Toshiaki <k@bioruby.org>

	* lib/bio/db/{compound.rb,reaction.rb,glycan.rb}:

	  Newly added parser for KEGG REACTION and KEGG GLYCAN database
	  entries, fix for KEGG COMPOUND parser to support the new format.

2004-10-09  GOTO Naohisa <ng@bioruby.org>

	* lib/bio/appl/sim4.rb

	  Newly added sim4 wrapper class.
	  This is test version, specs would be changed frequently.

	* lib/bio/appl/sim4/report.rb

	  Newly added sim4 result parser class.

2004-08-25  KATAYAMA Toshiaki <k@bioruby.org>

	* BioRuby 0.6.1 released.
	  * fix for the packaging miss of 0.6.0
	  * bin/*.rb are renamed to bin/br_*.rb (similar to the BioPerl's
	    convention: bp_*.pl)

2004-08-24  KATAYAMA Toshiaki <k@bioruby.org>

	* BioRuby 0.6.0 released.
	  * many fixes for Ruby 1.8
	  * updated for genome.ad.jp -> genome.jp transition

	* lib/bio/db/pdb.rb

	  Newly added parser for PDB contributed by Alex Gutteridge (EBI).

	* lib/bio/data/codontable.rb

	  Bio::CodonTable is rewrited to be a class instead of static variable.
	  Now it can hold table definition, start codons, stop codons and
	  added methods to detect start/stop codons and reverse translation.

	  Also includes sample code to show codon table in ANSI colored
	  ascii art, have fun.

	* lib/bio/sequence.rb

	  Bio::Sequence::NA#translate is rewrited to accept an user defined
	  codon table as a Bio::CodonTable object and any character can be
	  specified for the unknown codon.  This method runs about 30% faster
	  than ever before.

	  Bio::Sequence::AA#to_re method is added for the symmetry.

	  Bio::Seq will be changed to hold generic rich sequence features.
	  This means Bio::Seq is no longer an alias of Bio::Sequence but
	  is a sequence object model, something like contents of a GenBank
	  entry, common in BioPerl, BioJava etc.

	* lib/bio/io/soapwsdl.rb

	  Newly added common interface for SOAP/WSDL in BioRuby
	  used by keggapi.rb, ddbjxml.rb.

	* lib/bio/io/keggapi.rb

	  Completely rewrited to support KEGG API v3.0

	* lib/bio/io/esoap.rb

	  Newly added client library for Entrez Utilities SOAP interface.

	* lib/bio/db/genbank, lib/bio/db/embl

	  Refactored to use common.rb as a common module.

	* bin/pmfetch.rb

	  Newly added command to search PubMed.

	* bin/biofetch.rb, flatfile.rb, biogetseq.rb

	  Renamed to have .rb suffix.

	* sample/biofetch.rb

	  Rewrited to use KEGG API instead of DBGET


2003-10-13  KATAYAMA Toshiaki <k@bioruby.org>

	* BioRuby 0.5.3 released.

	  Fixed bugs in Blast XML parsers: xmlparser.rb is fixed not to
	  omit the string after ' and " in sequence definitions,
	  rexml.rb is fixed not to raise NoMethodError as "undefined
	  method `each_element_with_text' for nil:NilClass".

2003-10-07  GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>

	* lib/bio/db/nbrf.rb

	  Newly added NBRF/PIR flatfile sequence format class.

2003-09-30  GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>

	* lib/bio/db/pdb.rb

	  Newly added PDB database flatfile format class.
	  This is pre-alpha version, specs shall be changed frequently.

2003-08-22  KATAYAMA Toshiaki <k@bioruby.org>

	* BioRuby 0.5.2 released.

	  Fixed to be loaded in Ruby 1.8.0 without warnings.

	* doc/KEGG_API.rd.ja

	  Newly added a Japanese document on the KEGG API.

2003-08-12  GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>

	* lib/bio/appl/blast/format0.rb

	  Newly added NCBI BLAST default (-m 0) output parser,
	  which may be 5-10x faster than BioPerl's parser.
	  This is alpha version, specs may be frequently changed.
	  PHI-BLAST support is still incomplete.
	  Ruby 1.8 recommended. In ruby 1.6, you need strscan.

	* lib/bio/appl/blast/wublast.rb

	  Newly added WU-BLAST default output parser.
	  This is alpha version, specs may be frequently changed.
	  Support for parameters and statistics are still incomplete.
	  Ruby 1.8 recommended. In ruby 1.6, you need strscan.

2003-07-25  GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>

	* lib/bio/alignment.rb:

	  Newly added multiple sequence alignment class.

	* lib/bio/appl/alignfactory.rb:

	  Newly added template class for multiple alignment software.

	* lib/bio/appl/clustalw.rb:

	  Newly added CLUSTAL W wrapper.
	  <http://www.ebk.ac.uk/clustalw/>
	  <ftp://ftp.ebk.ac.uk/pub/software/unix/clustalw/>

	* lib/bio/appl/clustalw/report.rb:

	  Newly added CLUSTAL W result data (*.aln file) parser.

	* lib/bio/appl/mafft.rb, lib/bio/appl/mafft/report.rb:

	  Newly added MAFFT wrapper and report parser.
	  (MAFFT is a multiple sequence alignment program based on FFT.)
	  <http://www.biophys.kyoto-u.ac.jp/~katoh/programs/align/mafft/>

2003-07-16  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.5.1 released.

	* lib/bio/sequence.rb: some methods (using 'rna?' internally) were
	  temporally unusable by the changes in 0.5.0 is fixed.

	* lib/bio/io/flatfile.rb: autodetection failure of the fasta entry
	  without sequence is fixed.  FlatFile.auto method is added.

	* lib/bio/db.rb: sugtag2array fixed.  DB.open now accepts IO/ARGF.

	* lib/bio/db/embl.rb: references method is added.


2003-06-25  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.5.0 released.

	* lib/bio/appl/blast/report.rb:

	    Refactored from xmlparser.rb, rexml.rb, and format8.rb files.
	    Formats are auto detected and parsers are automatically
	    selected by checking whether XMLParser or REXML are installed.
	    You can call simply as
	      Bio::Blast::Report.new(blastoutput)
	    or you can choose parsers/format explicitly by
	      Bio::Blast::Report.xmlparser(format7blastoutput)
	      Bio::Blast::Report.rexml(fomat7blastoutput)
	      Bio::Blast::Report.tab(format8blastoutput)
	    You can also use newly added class method reports for multiple
	    xml blast output.
	      Bio::Blast.reports(output) # output can be IO or String

	* lib/bio/appl/fasta/report.rb:

	    Refactored from format10.rb, format6.rb and sample/* files.

	* lib/bio/appl/hmmer/report.rb:

	    Bug fix and clean up.

	* bin/biogetseq:

	    Newly added OBDA (BioRegistry) entry retrieval command.

	* etc/bioinformatics/seqdatabase.ini, lib/bio/io/registry.rb:
	    Updated for new OBDA spec (Singapore version).
	    Including config file versioning and changes in tag names,
	    support for OBDA_SEARCH_PATH environmental variable.

	* lib/bio/io/keggapi.rb:

	    Newly added KEGG API client library.
	    <http://www.genome.ad.jp/kegg/soap/>

	* lib/bio/io/ddbjxml.rb:

	    Newly added DDBJ XML client library (test needed).
	    <http://xml.nig.ac.jp/>

	* lib/bio/io/das.rb:

	    Newly added BioDAS client library.

	* lib/bio/db/gff.rb:

	    Newly added GFF format parser/store library.

	* lib/bio/appl/tmhmm/report.rb:

	    Newly added TMHMM report parser.
	    <http://www.cbs.dtu.dk/services/TMHMM/>

	* lib/bio/appl/targetp/report.rb:

	    Newly added TargetP report parser.
	    <http://www.cbs.dtu.dk/services/TargetP/>

	* lib/bio/appl/sosui/report.rb:

	    Newly added SOSUI report parser.
	    <http://sosui.proteome.bio.tuat.ac.jp/cgi-bin/sosui.cgi>

	* lib/bio/appl/psort/report.rb:

	    Newly added PSORT report parser.
	    <http://www.psort.org/>, <http://psort.ims.u-tokyo.ac.jp/>

	* lib/bio/appl/genscan/report.rb:

	    Newly added GENSCAN report parser.
	    <http://genes.mit.edu/GENSCAN.html>

	* lib/bio/db/prosite.rb: bug fix in ps2re method.

	* lib/bio/db/fantom.rb:

	    Newly added FANTOM database parser (XML).
	    <http://fantom2.gsc.riken.go.jp/>

	* lib/bio/db/go.rb:

	    Newly added GO parser.
	    <http://www.geneontology.org/>

	* lib/bio/feature.rb:
	
	    'each' method now accepts an argument to select specific feature.

	* lib/bio/db/fasta.rb: definition=, data= to change comment line.

	* lib/bio/db/genbank.rb:
	
	    References and features now accept a block. 'acc_version' method
	    is added to return the Accsession.Version string.
	    'accession' method now returns Accession part of the acc_version.
	    'version' method now returns Version part of the acc_version as
	    an integer.

	* lib/bio/db/keggtab.rb:

	    Rewrited for bug fix and clean up (note: some methods renamed!)
	    * gsub('abrev', 'abbrev') in method names
	    * db_path_by_keggorg is changed to db_path_by_abbrev
	    * @bio_root is changed to @bioroot (ENV['BIOROOT'] overrides)
	    * Bio::KEGG::DBname is changed to Bio::KEGG::Keggtab::DB
	      * @database is added (a hash with its key db_abbreb)
	      * database, name, path methods added with its argument db_abbreb

	* lib/bio/io/flatfile.rb:

	   Enumerable mix-in is included.

	* lib/bio/io/flatfile/indexer.rb:

	    Indexing of the FASTA format file is now supported with various
	    type of definition line.

	* bin/dbget:

	    Removed (moved under sample directory because the port of the
	    dbget server is now closed).

	* install.rb:

	    Changed to use setup 3.1.4 to avoid installing CVS/ directory.

	* sample/goslim.rb:

	    Added a sample to generate histogram from GO slim.

	* sample/tdiary.rb:

	    Added for tDiary <http://www.tdiary.org/> users. have fun. :)

2003-01-28  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.4.0 released.
	* bin/bioflat:
	  * newly added for the BioFlat indexing
	* lib/bio/io/flatfile.rb, flatfile/{indexer.rb,index.rb,bdb.rb}:
	  * flatfile indexing is supported by N. Goto
	* lib/bio/db/genbank.rb: changed to contain common methods only
	  * lib/bio/db/genbank/genbank.rb
	  * lib/bio/db/genbank/genpept.rb
	  * lib/bio/db/genbank/refseq.rb
	  * lib/bio/db/genbank/ddbj.rb
	* lib/bio/db/embl.rb: changed to contain common methods only
	  * lib/bio/db/embl/embl.rb
	  * lib/bio/db/embl/sptr.rb
	  * lib/bio/db/embl/swissprot.rb
	  * lib/bio/db/embl/trembl.rb
	* lib/bio/appl/emboss.rb:
	  * added - just a generic wrapper, no specific parsers yet.
	* lib/bio/appl/hmmer.rb:
	  * added - execution wrapper
	* lib/bio/appl/hmmer/report.rb:
	  * added - parsers for hmmsearch, hmmpfam contributed by H. Suga
	* lib/bio/db.rb: open method added for easy use of flatfile.
	* lib/bio/db/kegg/genes.rb:
	  * fixed bug in codon_usage method in the case of long sequence >999
	  * eclinks, splinks, pathways, gbposition, chromosome methods added
	* lib/bio/db/aaindex.rb:
	  * adapted for the new AAindex2 format (release >= 6.0).
	* lib/bio/db/fasta.rb: entry_id is changed to return first word	only
	* lib/bio/data/na.rb, aa.rb, keggorg.rb:
	  * moved under class NucleicAcid, AminoAcid, KEGG (!)
	* in the test codes, DBGET is replaced by BioFetch

2002-08-30  Yoshinori K. Okuji  <okuji@enbug.org>

	* lib/bio/matrix.rb: Removed.
	* lib/bio/db/aaindex.rb: Require matrix instead of bio/matrix.
	* lib/bio/db/transfac.rb: Likewise.
	* lib/bio/pathway.rb: Likewise.
	  (Pathway#dump_matrix): Don't use Matrix#dump.

2002-07-30  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.3.9 released.
	* lib/bio/location.rb:
	  * Locations#length (size) methods added (contributed by N. Goto)
	  * Locations#relative method added  (contributed by N. Goto)
	  * Locations#absolute method is renamed from offset
	  * Locations#offset, offset_aa methods removed
	    * use absolute/relative(n, :aa) for _aa
          * Locations#[], range methods added
	  * Location#range method added
	* lib/bio/db/embl.rb:
	  * fix accession method.
	* lib/bio/db/genpept.rb:
	  * temporally added - in the next release, we will make refactoring.
	* lib/bio/reference.rb:
	  * in bibtex and bibitem format, "PMIDnum" is changed to "PMID:num".
	* lib/bio/io/pubmed.rb:
	  * esearch, efetch methods are added.
	* lib/bio/db/aaindex.rb:
	  * fix serious bug in the index method to support negative values.
	* lib/bio/db.rb:
	  * fix fetch method to cut tag without fail.
	* lib/bio/extend.rb:
	  * added first_line_only option for the prefix in fill method.
	* doc/Tutorial.rd.ja:
	  * added docs on BibTeX etc.

2002-06-26  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.3.8 released.
	* lib/bio/sequence.rb:
	  * normalize! method added for clean up the object itself.
	  * 'to_seq' method was renamed to 'seq' (!)
	    * to_xxxx should be used when the class of the object changes.
	* lib/bio/appl/blast/xmparser.rb:
	  * each_iteration, each_hit, each, hits, statistics, message methods
	    are added in Report class.
	  * statistics, message methods are added in Iteration class.
	  * methods compatible with Fasta::Report::Hit are added in Hit class.
	* lib/bio/appl/blast/rexml.rb:
	  * many APIs were changed to follow the xmlparser.rb's. (!)
	* lib/bio/appl/{blast.rb,fasta.rb]:
	  * class method parser() is added for loading specified Report class.
	* etc/bioinformatics/seqdatabase.ini: added for OBDA (!)
	  * sample setup for BioRegistry - Open Bio Sequence Database Access.
	* lib/bio/extend.rb: added (!)
	  * This module adds some functionarity to the existing classes and
	    not loaded by default. User should require specifically if needed.
	* lib/bio/util/*: removed and merged into lib/bio/extend.rb (!)
	* lib/bio/id.rb: removed (!)
	* lib/bio/db/{embl.rb,sptr.rb,transfac.rb}: added entry_id
	* lib/bio/data/keggorg.rb: updated
	* sample/genes2* sample/genome2*: updated
	* doc/Tutrial.rd.ja: updated

2002-06-19  KATAYAMA Toshiaki  <k@bioruby.org>

	* BioRuby version 0.3.7 released.
	* lib/bio/sequence.rb: Sequence inherits String again (!)
	* lib/bio/db.rb, db/embl.rb, db/sptr.rb: moved EMBL specific methods

2002-06-18  KATAYAMA Toshiaki  <k@bioruby.org>

	* lib/bio/feature.rb: Bio::Feature#[] method added
	* doc/Tutrial.rd.ja: changed to use Feature class

2002-05-28  KATAYAMA Toshiaki  <k@bioruby.org>

	* lib/bio/appl/fasta.rb: parser separated, API renewal (!)
	  * lib/bio/appl/fasta/format10.rb: moved from fasta.rb

	* lib/bio/appl/blast.rb: parser separated, API renewal (!)
	  * lib/bio/appl/blast/format8.rb: newly added
	  * lib/bio/appl/blast/rexml.rb: newly added
	  * lib/bio/appl/blast/xmlparser.rb: moved from blast.rb

2002-05-16  KATAYAMA Toshiaki  <k@bioruby.org>

	* lib/bio/sequence.rb: added alias 'Seq' for class Sequence
	* lib/bio/db/fasta.rb: entry method added

2002-05-15  KATAYAMA Toshiaki  <k@bioruby.org>
	
	* lib/bio/io/dbget.rb: bug fixed for pfam (was wrongly skip # lines)
	* lib/bio/location.rb: offset method added, eased range check

2002-04-26  KATAYAMA Toshiaki  <k@bioruby.org>
	
	* sample/biofetch.rb: new 'info=' option added

2002-04-22  KATAYAMA Toshiaki  <k@bioruby.org>
	
	* lib/bio/appl/fasta.rb: follow changes made at fasta.genome.ad.jp
	* sample/gb2tab.rb: fixed to use authors.inspect for reference

2002-04-15  KATAYAMA Toshiaki  <k@bioruby.org>
	
	* sample/gb2fasta.rb: changed to follow new genbank.rb spec.
	* sample/gt2fasta.rb: changed to follow new genbank.rb spec.
	* sample/gbtab2mysql.rb: added for loading tab delimited data.

2002/04/08
	* version 0.3.6 released -k
	  * fixed inconsistency among db.rb, genbank.rb, genome.rb -k
	  * lib/bio/db/genbank.rb : serious bug fixed in locus method -k
	  * lib/bio/feature.rb : method name 'type' has changed -k

2002/03/27
	* sample/gb2tab.rb changed to follow new genbank.rb w/ new schema -k

2002/03/26
	* sample/gb2tab.rb use ruby instead of perl in the example -o
	* sample/gb2fasta.rb updated -o

2002/03/11
	* version 0.3.5 released -k

2002/03/04
	* lib/bio/sequence.rb to_a, to_ary methods renamed to names, codes -k
	* sample/biofetch.rb added for BioFetch server -k
	* bin/biofetch added for BioFetch client -k
	* lib/bio/io/fetch.rb added for BioFetch library -k
	* lib/bio/io/sql.rb added for BioSQL -k
	* lib/bio/io/registry.rb added for BioDirectory/Registry -k
	* lib/bio/feature.rb added for BioSQL, GenBank, EMBL etc. -k
	* lib/bio/db/genbank.rb rewrited to use Features, References -k
	* lib/bio/db/{genes,genome}.rb clean up -k
	* lib/bio/reference.rb added class References -k

2002/02/05
	* changed to use 'cgi' instead of 'cgi-lib' -n,k

2002/01/31
	* version 0.3.4 released -k
	  * lib/bio/db/genbank.rb -k
	    * fix for multiple 'allele' in the feature key. (thanx Lixin)

2002/01/07
	* lib/bio/appl/blast.rb -n
	  * remote blast support etc.

2001/12/18
	* lib/bio/id.rb -k
	  * newly created
	* lib/bio/io/brdb.rb -k
	  * newly created
	* lib/bio/db.rb -k
	  * template methods are deleted
	  * detailed docuement added
	* lib/bio/sequence.rb -k
	  * to_fasta, complement, translate fixed (due to the changes made
	    in 0.3.3)
	  * Sequence::NA#initialize doesn't replace 'u' with 't' any longer
	    * gc_percent, complement, translate, to_re, molecular_weight
	      methods are adapted to this change
	  * molecular_weight changed to calculate more precisely
	  * test code added 
	* lib/bio.rb -k
	  * rescue for require 'bio/appl/blast' is deleted

2001/12/15
	* lib/bio/sequence.rb -o
	  * Sequence#to_str added

2001/12/15
	* version 0.3.3 released -k