class Bio::Meme::Mast::Report
Description¶ ↑
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
Examples¶ ↑
Attributes
Public Class Methods
Source
# File lib/bio/appl/meme/mast/report.rb 40 def initialize(mast_hitlist) 41 @motifs = parse_hit_list(mast_hitlist) 42 end
Public Instance Methods
Source
# File lib/bio/appl/meme/mast/report.rb 45 def each 46 @motifs.each do |motif| 47 yield motif 48 end 49 end
Iterates each motif (Bio::Meme::Motif
)
Also aliased as: each_motif