Class: Bio::Blast::WU::Report

Inherits:
Default::Report show all
Defined in:
lib/bio/appl/blast/wublast.rb

Overview

Bio::Blast::WU::Report parses WU-BLAST default output and stores information in the data. It may contain a Bio::Blast::WU::Report::Iteration object. Because it inherits Bio::Blast::Default::Report, please also refer Bio::Blast::Default::Report.

Direct Known Subclasses

Report_TBlast

Defined Under Namespace

Classes: F0dbstat, HSP, Hit, Iteration

Constant Summary

Constants inherited from Default::Report

Default::Report::DELIMITER, Default::Report::DELIMITER_OVERRUN

Instance Attribute Summary

Attributes inherited from Default::Report

#db_len, #db_num, #eff_space, #entry_overrun, #gap_extend, #gap_open, #iterations, #matrix, #num_hits, #posted_date, #sc_match, #sc_mismatch

Instance Method Summary collapse

Methods inherited from Default::Report

#converged?, #db, #each_hit, #each_iteration, #entropy, #gapped_entropy, #gapped_kappa, #gapped_lambda, #hits, #initialize, #kappa, #lambda, #message, open, #pattern, #pattern_positions, #program, #query_def, #query_len, #reference, #references, #to_s, #version, #version_date, #version_number

Constructor Details

This class inherits a constructor from Bio::Blast::Default::Report

Instance Method Details

#expectObject

Returns e-value threshold specified when BLAST was executed.



50
# File 'lib/bio/appl/blast/wublast.rb', line 50

def expect; parse_parameters; @parameters['E']; end

#noticeObject

Returns notice messages.



62
63
64
65
66
67
# File 'lib/bio/appl/blast/wublast.rb', line 62

def notice
  unless defined?(@notice)
    @notice = @f0notice.to_s.gsub(/\s+/, ' ').strip
  end #unless
  @notice
end

#parameter_matrixObject

Returns parameter matrix (???)



44
45
46
47
# File 'lib/bio/appl/blast/wublast.rb', line 44

def parameter_matrix
  parse_parameters
  @parameter_matrix
end

#parametersObject

Returns parameters (???)



38
39
40
41
# File 'lib/bio/appl/blast/wublast.rb', line 38

def parameters
  parse_parameters
  @parameters
end

#warningsObject

Returns warning messages.



53
54
55
56
57
58
59
# File 'lib/bio/appl/blast/wublast.rb', line 53

def warnings
  unless defined?(@warnings)
    @warnings = @f0warnings
    iterations.each { |x| @warnings.concat(x.warnings) }
  end
  @warnings
end