A class to parse the output from Mast
WARNING: Currently support is only for -hit_list (machine readable) format
HTML (default) output is not supported
# File lib/bio/appl/meme/mast/report.rb, line 40 def initialize(mast_hitlist) @motifs = parse_hit_list(mast_hitlist) end
Iterates each motif (Bio::Meme::Motif)
# File lib/bio/appl/meme/mast/report.rb, line 45 def each @motifs.each do |motif| yield motif end end