Class: Bio::Blast::Report::Hsp
Overview
Bio::Blast::Report::Hsp
Instance Attribute Summary collapse
-
#align_len ⇒ Object
Length of the alignment used.
-
#bit_score ⇒ Object
Score (in bits) of HSP.
-
#density ⇒ Object
Score density.
-
#evalue ⇒ Object
E-value of HSP.
-
#gaps ⇒ Object
Number of gaps in HSP.
-
#hit_frame ⇒ Object
Translation frame of subject.
-
#hit_from ⇒ Object
Start of HSP in subject.
-
#hit_to ⇒ Object
End of HSP.
-
#hseq ⇒ Object
Alignment string for subject (with gaps).
-
#hsp ⇒ Object
readonly
Returns the value of attribute hsp.
-
#identity ⇒ Object
Number of identities in HSP.
-
#midline ⇒ Object
Formating middle line.
-
#mismatch_count ⇒ Object
Available only for ‘-m 8’ format outputs.
-
#num ⇒ Object
HSP number.
-
#pattern_from ⇒ Object
Start of PHI-BLAST pattern.
-
#pattern_to ⇒ Object
End of PHI-BLAST pattern.
-
#percent_identity ⇒ Object
Available only for ‘-m 8’ format outputs.
-
#positive ⇒ Object
Number of positives in HSP.
-
#qseq ⇒ Object
Alignment string for the query (with gaps).
-
#query_frame ⇒ Object
Translation frame of query.
-
#query_from ⇒ Object
Start of HSP in query.
-
#query_to ⇒ Object
End of HSP.
-
#score ⇒ Object
Sscore of HSP.
Instance Method Summary collapse
-
#initialize ⇒ Hsp
constructor
A new instance of Hsp.
Constructor Details
#initialize ⇒ Hsp
Returns a new instance of Hsp.
318 319 320 |
# File 'lib/bio/appl/blast/report.rb', line 318 def initialize @hsp = {} end |
Instance Attribute Details
#align_len ⇒ Object
Length of the alignment used
354 355 356 |
# File 'lib/bio/appl/blast/report.rb', line 354 def align_len @align_len end |
#bit_score ⇒ Object
Score (in bits) of HSP
326 327 328 |
# File 'lib/bio/appl/blast/report.rb', line 326 def bit_score @bit_score end |
#density ⇒ Object
Score density
356 357 358 |
# File 'lib/bio/appl/blast/report.rb', line 356 def density @density end |
#evalue ⇒ Object
E-value of HSP
330 331 332 |
# File 'lib/bio/appl/blast/report.rb', line 330 def evalue @evalue end |
#gaps ⇒ Object
Number of gaps in HSP
352 353 354 |
# File 'lib/bio/appl/blast/report.rb', line 352 def gaps @gaps end |
#hit_frame ⇒ Object
Translation frame of subject
346 347 348 |
# File 'lib/bio/appl/blast/report.rb', line 346 def hit_frame @hit_frame end |
#hit_from ⇒ Object
Start of HSP in subject
336 337 338 |
# File 'lib/bio/appl/blast/report.rb', line 336 def hit_from @hit_from end |
#hit_to ⇒ Object
End of HSP
338 339 340 |
# File 'lib/bio/appl/blast/report.rb', line 338 def hit_to @hit_to end |
#hseq ⇒ Object
Alignment string for subject (with gaps)
360 361 362 |
# File 'lib/bio/appl/blast/report.rb', line 360 def hseq @hseq end |
#hsp ⇒ Object (readonly)
Returns the value of attribute hsp.
321 322 323 |
# File 'lib/bio/appl/blast/report.rb', line 321 def hsp @hsp end |
#identity ⇒ Object
Number of identities in HSP
348 349 350 |
# File 'lib/bio/appl/blast/report.rb', line 348 def identity @identity end |
#midline ⇒ Object
Formating middle line
362 363 364 |
# File 'lib/bio/appl/blast/report.rb', line 362 def midline @midline end |
#mismatch_count ⇒ Object
Available only for ‘-m 8’ format outputs.
366 367 368 |
# File 'lib/bio/appl/blast/report.rb', line 366 def mismatch_count @mismatch_count end |
#num ⇒ Object
HSP number
324 325 326 |
# File 'lib/bio/appl/blast/report.rb', line 324 def num @num end |
#pattern_from ⇒ Object
Start of PHI-BLAST pattern
340 341 342 |
# File 'lib/bio/appl/blast/report.rb', line 340 def pattern_from @pattern_from end |
#pattern_to ⇒ Object
End of PHI-BLAST pattern
342 343 344 |
# File 'lib/bio/appl/blast/report.rb', line 342 def pattern_to @pattern_to end |
#percent_identity ⇒ Object
Available only for ‘-m 8’ format outputs.
364 365 366 |
# File 'lib/bio/appl/blast/report.rb', line 364 def percent_identity @percent_identity end |
#positive ⇒ Object
Number of positives in HSP
350 351 352 |
# File 'lib/bio/appl/blast/report.rb', line 350 def positive @positive end |
#qseq ⇒ Object
Alignment string for the query (with gaps)
358 359 360 |
# File 'lib/bio/appl/blast/report.rb', line 358 def qseq @qseq end |
#query_frame ⇒ Object
Translation frame of query
344 345 346 |
# File 'lib/bio/appl/blast/report.rb', line 344 def query_frame @query_frame end |
#query_from ⇒ Object
Start of HSP in query
332 333 334 |
# File 'lib/bio/appl/blast/report.rb', line 332 def query_from @query_from end |
#query_to ⇒ Object
End of HSP
334 335 336 |
# File 'lib/bio/appl/blast/report.rb', line 334 def query_to @query_to end |
#score ⇒ Object
Sscore of HSP
328 329 330 |
# File 'lib/bio/appl/blast/report.rb', line 328 def score @score end |