class SequenceServer::BLAST::HSP::BLASTP

HSP subclass for BLASTP algorithm.

Public Instance Methods

stats() click to toggle source
Calls superclass method
# File lib/sequenceserver/blast/hsp.rb, line 195
def stats
  super.update(
    'Positives' =>
    [
      in_fraction(positives,   length),
      in_percentage(positives, length)
    ]
  )
end