class Bio::Blast::Report::Hit
Attributes
Accession
Definition line of subject
SeqId of subject
Returns an Array of Bio::Blast::Report::Hsp
objects.
Length of subject
Compatible method with Bio::Fasta::Report::Hit
class.
Compatible method with Bio::Fasta::Report::Hit
class.
Compatible method with Bio::Fasta::Report::Hit
class.
Definition line of subject
Accession
Length of subject
Public Class Methods
Public Instance Methods
Source
# File lib/bio/appl/blast/report.rb 303 def bit_score; @hsps.first.bit_score; end
Source
# File lib/bio/appl/blast/report.rb 280 def each 281 @hsps.each do |x| 282 yield x 283 end 284 end
Iterates on each Hsp
object.
Source
# File lib/bio/appl/blast/report.rb 302 def evalue; @hsps.first.evalue; end
Shortcut methods for the best Hsp
, some are also compatible with Bio::Fasta::Report::Hit
class.
Source
# File lib/bio/appl/blast/report.rb 316 def lap_at 317 [ query_start, query_end, target_start, target_end ] 318 end
Source
# File lib/bio/appl/blast/report.rb 305 def percent_identity; @hsps.first.percent_identity; end
Source
# File lib/bio/appl/blast/report.rb 313 def query_end; @hsps.first.query_to; end
Source
# File lib/bio/appl/blast/report.rb 312 def query_start; @hsps.first.query_from; end
Source
# File lib/bio/appl/blast/report.rb 315 def target_end; @hsps.first.hit_to; end
Source
# File lib/bio/appl/blast/report.rb 314 def target_start; @hsps.first.hit_from; end