File: Changes-0.7.rd

package info (click to toggle)
ruby-bio 2.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,108 kB
  • sloc: ruby: 68,331; perl: 13; makefile: 11; sh: 1
file content (376 lines) | stat: -rw-r--r-- 13,064 bytes parent folder | download | duplicates (9)
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
= Incompatible and important changes since the BioRuby 0.6.4 release

A lot of changes have been made to the BioRuby after the version 0.6.4
is released.

--- Ruby 1.6 series are no longer supported.

We use autoload functionality and many standard (bundled) libraries
(such as SOAP, open-uri, pp etc.) only in Ruby >1.8.2.

--- BioRuby will be loaded about 30 times faster than before.

As we changed to use autoload instead of require, time required
to start up the BioRuby library made surprisingly faster.

Other changes (including newly introduced BioRuby shell etc.) made
in this series will be described in this file.

== New features

--- BioRuby shell

A new command line user interface for the BioRuby is now included.
You can invoke the shell by

  % bioruby

--- UnitTest

Test::Unit now covers wide range of the BioRuby library.
You can run them by

  % ruby test/runner.rb

or

  % ruby install.rb config
  % ruby install.rb setup
  % ruby install.rb test

during the installation procedure.

--- Documents

README, README.DEV, doc/Tutorial.rd, doc/Tutorial.rd.ja etc. are updated
or newly added.

== Incompatible changes

--- Bio::Sequence

Bio::Sequence is completely refactored to be a container class for
any sequence annotations.  Functionalities are separated into several
files under the lib/bio/sequence/ directory as

  * common.rb : module provides common methods for NA and AA sequences
  * compat.rb : methods for backward compatibility
  * aa.rb     : Bio::Sequence::AA class
  * na.rb     : Bio::Sequence::NA class
  * format.rb : module for format conversion

Bio::Sequence is no longer a sub-class of String, instead,
Bio::Sequence::NA and AA inherits String directly.

* Bio::Sequence::NA#gc_percent returns integer instead of float
* Bio::Sequence::NA#gc (was aliased to gc_percent) is removed

Previously, GC% is rounded to one decimal place.  However, how many digits
should be left when rounding the value is not clear and as the GC% is an
rough measure by its nature, we have changed to return integer part only.
If you need a precise value, you can calculate it by values from the
'composition' method by your own criteria.

Also, the 'gc' method is removed as the method name doesn't represent
its value is ambiguous.

* Bio::Sequence#blast
* Bio::Sequence#fasta

These two methods are removed.  Use Bio::Blast and Bio::Fasta to execute
BLAST and FASTA search.

--- Bio::NucleicAcid

Bio::NucleicAcid::Names and Bio::NucleicAcid::Weight no longer exists.

Bio::NucleicAcid::Names is renamed to Bio::NucleicAcid::Data::NAMES and
can be accessed by Bio::NucleicAcid#names, Bio::NucleicAcid.names methods
and Bio::NucleicAcid::WEIGHT hash as the Data module is included.

Bio::NucleicAcid::Weight is renamed to Bio::NucleicAcid::Data::Weight and
can be accessed by Bio::NucleicAcid#weight, Bio::NucleicAcid.weight methods
and Bio::NucleicAcid::WEIGHT hash as the Data module is included.

--- Bio::AminoAcid

Bio::AminoAcid::Names and Bio::AminoAcid::Weight no longer exists.

Bio::AminoAcid::Names is renamed to Bio::AminoAcid::Data::NAMES and
can be accessed by Bio::AminoAcid#names, Bio::AminoAcid.names methods
and Bio::AminoAcid::WEIGHT hash as the Data module is included.

Bio::AminoAcid::Weight is renamed to Bio::AminoAcid::Data::Weight and
can be accessed by Bio::AminoAcid#weight, Bio::AminoAcid.weight methods
and Bio::AminoAcid::WEIGHT hash as the Data module is included.

--- Bio::CodonTable

Bio::CodonTable::Tables, Bio::CodonTable::Definitions,
Bio::CodonTable::Starts, and Bio::CodonTable::Stops
are renamed to
Bio::CodonTable::TABLES, Bio::CodonTable::DEFINITIONS,
Bio::CodonTable::STARTS, and Bio::CodonTable::STOPS
respectively.

--- Bio::KEGG::Microarrays, Bio::KEGG::Microarray

* lib/bio/db/kegg/microarray.rb is renamed to lib/bio/db/kegg/expression.rb
* Bio::KEGG::Microarray is renamed to Bio::KEGG::EXPRESSION
* Bio::KEGG::Microarrays is removed

Bio::KEGG::Microarrays was intended to store a series of microarray
expressions as a Hash of Array -like data structure,

  gene1 => [exp1, exp2, exp3, ... ]
  gene2 => [exp1, exp2, exp3, ... ]

however, it is not utilized well and more suitable container class
can be proposed.  Until then, this class is removed.

#
# Following changes are suspended for a while (not yet introduced for now)
#
# --- Bio::Pathway
#
# * Bio::Pathway#nodes returns an Array of the node objects instead of
#   the number of the node objects.
# * Bio::Pathway#edges returns an Array of the edge objects instead of
#   the number of the edge objects.
#

--- Bio::GenBank

Bio::GenBank#gc is removed as the value can be calculated by the
Bio::Sequence::NA#gc method and the method is also changed to
return integer instead of float.

Bio::GenBank#varnacular_name is renamed to Bio::GenBank#vernacular_name
as it was a typo.

--- Bio::GenBank::Common

* lib/bio/db/genbank/common.rb is removed.

Renamed to Bio::NCBIDB::Common to make simplify the autoload dependency.

--- Bio::EMBL::Common

* lib/bio/db/embl/common.rb is removed.

Renamed to Bio::EMBLDB::Common to make simplify the autoload dependency.

--- Bio::KEGG::GENES

* lib/bio/db/kegg/genes.rb

linkdb method is changed to return a Hash of an Array of entry IDs
instead of a Hash of a entry ID string.

--- Bio::TRANSFAC

* Bio::TFMATRIX is renamed to Bio::TRANSFAC::MATRIX
* Bio::TFSITE   is renamed to Bio::TRANSFAC::SITE
* Bio::TFFACTOR is renamed to Bio::TRANSFAC::FACTOR
* Bio::TFCELL   is renamed to Bio::TRANSFAC::CELL
* Bio::TFCLASS  is renamed to Bio::TRANSFAC::CLASS
* Bio::TFGENE   is renamed to Bio::TRANSFAC::GENE

--- Bio::GFF

* Bio::GFF2 is renamed to Bio::GFF::GFF2
* Bio::GFF3 is renamed to Bio::GFF::GFF3

--- Bio::Alignment

In 0.7.0:

* Old Bio::Alignment class is renamed to Bio::Alignment::OriginalAlignment.
  Now, new Bio::Alignment is a module. However, you don't mind so much
  because most of the class methods previously existed are defined
  to delegate to the new Bio::Alignment::OriginalAlignment class,
  for keeping backward compatibility.
* New classes and modules are introduced. Please refer RDoc.
* each_site and some methods changed to return Bio::Alignment::Site,
  which inherits Array (previously returned Array).
* consensus_iupac now returns only standard bases
  'a', 'c', 'g', 't', 'm', 'r', 'w', 's', 'y', 'k', 'v',
  'h', 'd', 'b', 'n', or nil (in SiteMethods#consensus_iupac) or
  '?' (or missing_char, in EnumerableExtension#consensus_iupac).
  Note that consensus_iupac now does not return u and invalid letters
  not defined in IUPAC standard even if all bases are equal.
* There are more and more changes to be written...

In 1.1.0:

* Bio::Alignment::ClustalWFormatter is removed and methods in this module
  are renemed and moved to Bio::Alignment::Output.

--- Bio::PDB

In 0.7.0:

* Bio::PDB::Atom is removed. Instead, please use Bio::PDB::Record::ATOM and
  Bio::PDB::Record::HETATM.
* Bio::PDB::FieldDef is removed and Bio::PDB::Record is completely
  changed. Now, records is changed from hash to Struct objects.
  (Note that method_missing is no longer used.)
* In records, "do_parse" is now automatically called.
  Users don't need to call do_parse explicitly.
  (0.7.0 feature: "inspect" does not call do_parse.)
  (0.7.1 feature: "inspect" calls do_parse.)
* In the "MODEL" record, model_serial is changed to serial.
* In records, record_type is changed to record_name.
* In most records contains real numbers, return values are changed
  to float instead of string.
* Pdb_AChar, Pdb_Atom, Pdb_Character, Pdb_Continuation,
  Pdb_Date, Pdb_IDcode, Pdb_Integer, Pdb_LString, Pdb_List,
  Pdb_Real, Pdb_Residue_name, Pdb_SList, Pdb_Specification_list,
  Pdb_String, Pdb_StringRJ and Pdb_SymOP are moved under
  Bio::PDB::DataType.
* There are more and more changes to be written...

In 0.7.1:

* Heterogens and HETATMs are completely separeted from residues and ATOMs.
  HETATMs (Bio::PDB::Record::HETATM objects) are stored in
  Bio::PDB::Heterogen (which inherits Bio::PDB::Residue).
* Waters (resName=="HOH") are treated as normal heterogens.
  Model#solvents is still available but it will be deprecated.
* In Bio::PDB::Chain, adding "LIGAND" to the heterogen id is no longer
  available. Instead, please use Chain#get_heterogen_by_id method.
  In addition, Bio::{PDB|PDB::Model::PDB::Chain}#heterogens, #each_heterogen,
  #find_heterogen, Bio::{PDB|PDB::Model::PDB::Chain::PDB::Heterogen}#hetatms,
  #each_hetatm, #find_hetatm methods are added.
* Bio::PDB#seqres returns Bio::Sequence::NA object if the chain seems to be
  a nucleic acid sequence.
* There are more and more changes to be written...

In 1.1.0:

* In Bio::PDB::ATOM#name, #resName, #iCode, and #charge, whitespaces are
  stripped during initializing.
* In Bio::PDB::ATOM#segID, whitespaces are right-stripped during initializing.
* In Bio::PDB::ATOM#element, whitespaces are left-stripped during initializing.
* Bio::PDB::HETATM#name, #resName, #iCode, #charge, #segID, and #element
  are also subject to the above changes, because Bio::PDB::HETATM inherits
  Bio::PDB::ATOM.
* Bio::PDB::Residue#[] and Bio::PDB::Heterogen#[] are changed to use the
  name field for selecting atoms, because the element field is not useful
  for selecting atoms and is not used in many pdb files.
* Bio::PDB#record is changed to return an empty array instead of nil
  for a nonexistent record.

--- Bio::FlatFile

In 0.7.2:

* Bio::FlatFile.open, Bio::FlatFile.auto and Bio::FlatFile.new are changed
  not to accept the last argument to specify raw mode, e.g. :raw => true,
  :raw => false, true or false. Instead, please use Bio::FlatFile#raw=
  method after creating a new object.
* Now, first argument of Bio::FlatFile.open, which shall be a database
  class or nil, can be omitted, and you can do
  Bio::FlatFile.open(filename, ...). Note that 
  Bio::FlatFile.open(dbclass, filaname, ...) is still available.
* Bio::FlatFile#io is obsoleted. Please use Bio::FlatFile#to_io instead.
* When reading GenBank or GenPept files, comments at the  head of the file
  before the first "LOCUS" lines are now skipped by default.
  When reading other file formats, white space characters are skipped.
* File format autodetection routine is completely rewritten.
  If it fails to determine data format which was previously determined,
  please report us with the data.
* Internal structure is now completely changed. Codes depend on the internal
  structure (which is not recommended) would not work.

In 1.1.0:

* Bio::FlatFile#entry_start_pos and #entry_ended_pos are enabled
  only when Bio::FlatFile#entry_pos_flag is true.

--- Bio::ClustalW, Bio::MAFFT, Bio::Sim4

In 1.1.0:

* Bio::(ClustalW|MAFFT|Sim4)#option is changed to #options.
* Bio::ClustalW::errorlog and Bio::(MAFFT|Sim4)#log are removed.
  No replacements/alternatives are available.

--- Bio::ClustalW, Bio::MAFFT

In 1.1.0:

* Bio::(ClustalW|MAFFT)#query_align, #query_string, #query_by_filename
  are changed not to get second (and third, ...) arguments.
* Bio::(ClustalW|MAFFT)#query, #query_string, #query_by_filename
  are changed not trying to guess whether given data is nucleotide or protein.
* Return value of Bio::(ClustalW|MAFFT)#query with no arguments is changed.
  If the program exists normally (exit status is 0), returns true.
  Otherwise, returns false.

--- Bio::MAFFT

In 1.1.0:

* Bio::MAFFT#output is changed to return a string of multi-fasta
  formmatted text instead of Array of Bio::FastaFormat objects.
  To get an array of Bio::FastaFormat objects, please use
  report.data instead.

--- Bio::MAFFT::Report

In 1.1.0:

* Bio::MAFFT::Report#initialize is changed to get a string of multi-fasta
  formmatted text instead of Array.

--- Bio::BLAST::Default::Report, Bio::BLAST::Default::Report::Hit,
    Bio::BLAST::Default::Report::HSP, Bio::BLAST::WU::Report,
    Bio::BLAST::WU::Report::Hit, Bio::BLAST::WU::Report::HSP

In 1.1.0:

* Hit#evalue, HSP#evalue, WU::Hit#pvalue, and WU::HSP#pvalue are
  changed to return a Float object instead of a String object.
* Report#expect, Hit#bit_score, and HSP#bit_score are changed to return
  a Float object or nil instead of a String object or nil.
* Following methods are changed to return an integer value or nil
  instead of a string or nil: score, percent_identity, percent_positive,
  percent_gaps.

--- BioRuby Shell

In 1.1.0:

* Shell commands seq, ent, obj are renamed to getseq, getent, getobj,
  respectively.

=== Deleted files

: lib/bio/db/genbank.rb
: lib/bio/db/embl.rb

These files are removed as we changed to use autoload.  You can safely
replace

  require 'bio/db/genbank'

or

  require 'bio/db/embl'

in your code to

  require 'bio'

and this change will also speeds up loading time even if you only need
one of the sub classes under the genbank/ or embl/ directory.

: lib/bio/extend.rb

This file contained some additional methods to String and Array classes.
The methods added to Array are already included in Ruby itself since the
version 1.8, and the methods added to String are moved to the BioRuby shell
(lib/bio/shell/plugin/seq.rb).