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
motifs[R]
Public Class Methods
new(mast_hitlist)
click to toggle 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
each() { |motif| ... }
click to toggle source
Iterates each motif (Bio::Meme::Motif
)
# File lib/bio/appl/meme/mast/report.rb 45 def each 46 @motifs.each do |motif| 47 yield motif 48 end 49 end
Also aliased as: each_motif