Method: Bio::Blat::Report::Hit#initialize

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

#initialize(str) ⇒ Hit

Creates a new Hit object from a piece of BLAT result text. It is designed to be called internally from Bio::Blat::Report object. Users shall not use it directly.



293
294
295
# File 'lib/bio/appl/blat/report.rb', line 293

def initialize(str)
  @data = str.chomp.split(/\t/)
end