class Bio::Blast::Report::Iteration
Attributes
Returns an Array of Bio::Blast::Report::Hit
objects.
Returns a String (or nil) containing execution message (typically “CONVERGED”).
Returns the number of iteration counts.
query definition, only available for new BLAST XML format
query ID, only available for new BLAST XML format
query length, only available for new BLAST XML format
Returns a Hash containing execution statistics. Valid keys are: ‘db-len’, ‘db-num’, ‘eff-space’, ‘entropy’, ‘hsp-len’, ‘kappa’, ‘lambda’
Public Class Methods
Source
# File lib/bio/appl/blast/report.rb 219 def initialize 220 @message = nil 221 @statistics = {} 222 @num = 1 223 @hits = [] 224 end
Public Instance Methods
Source
# File lib/bio/appl/blast/report.rb 241 def each 242 @hits.each do |x| 243 yield x 244 end 245 end
Iterates on each Bio::Blast::Report::Hit
object.