1
2
3
4
5 """
6 Parser for dealing with text output from the MEME motif search program (DEPRECATED).
7
8 Now superseded by Bio.Motif
9
10 Class mapping:
11 Bio.MEME.Motif.MEMEMotif -> Bio.Motif.Motif
12 Bio.MEME.parser.MEMEParser -> Bio.Motif.MEMEParser
13 Bio.MEME.parser.MASTParser -> Bio.Motif.MASTParser
14
15 Instead of using Bio.MEME.parser.MEMEParser class, you can use
16 Bio.Motif.parse(handle,format="MEME")
17
18 """
19
20 import warnings
21 warnings.warn('Bio.MEME is deprecated. Please use Bio.Motif instead.',
22 DeprecationWarning)
23