| Trees | Indices | Help |
|
|---|
|
|
object --+
|
list --+
|
Record
A class for holding the results of a MEME run.
A MEME.Record is an object that holds the results from running
MEME. It implements no methods of its own.
The MEME.Record class inherits from list, so you can access individual
motifs in the record by their index. Alternatively, you can find a motif
by its name:
>>> f = open("meme.output.txt")
>>> from Bio import motifs
>>> record = motifs.parse(f, 'MEME')
>>> motif = record[0]
>>> print motif.name
Motif 1
>>> motif = record['Motif 1']
>>> print motif.name
Motif 1
|
|||
new list |
|
||
|
|||
|
Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
__init__ (self)
|
x[y]
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Feb 5 18:02:53 2013 | http://epydoc.sourceforge.net |