Method: Bio::Sim4::Report#each_hit

Defined in:
lib/bio/appl/sim4/report.rb

#each_hit(&x) ⇒ Object Also known as: each

Iterates over each hits of the sim4 result. Same as hits.each. Yields a Bio::Sim4::Report::Hit object.



486
487
488
# File 'lib/bio/appl/sim4/report.rb', line 486

def each_hit(&x) #:yields: hit
  @hits.each(&x)
end