class BlastClust

Parse BLAST cluster file

Public Class Methods

new(fn) click to toggle source
# File lib/bigbio/db/blast/blastclust.rb, line 6
def initialize fn
  @fn = fn
end

Public Instance Methods

each() { |split| ... } click to toggle source
# File lib/bigbio/db/blast/blastclust.rb, line 10
def each
  File.new(@fn).each_line do | line |
    yield line.split
  end
end