| Trees | Indices | Help |
|
|---|
|
|
|
|||
|
MEMEMotif A subclass of Motif used in parsing MEME (and MAST) output. |
|||
|
MEMEInstance A class describing the instances of a MEME motif, and the data thereof. |
|||
|
MEMERecord A class for holding the results of a MEME run. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Parses the text output of the MEME program into MEME.Record object.
Example:
>>> f = open("meme.output.txt")
>>> from Bio.Motif.Parsers import MEME
>>> record = MEME.read(f)
>>> for motif in record.motifs:
... for instance in motif.instances:
... print instance.motif_name, instance.sequence_name, instance.strand, instance.pvalue
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Feb 5 17:59:45 2013 | http://epydoc.sourceforge.net |