Neha Patil (Editor)

Multiple EM for Motif Elicitation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Multiple EM for Motif Elicitation or MEME is a tool for discovering motifs in a group of related DNA or protein sequences.

Contents

A motif is a sequence pattern that occurs repeatedly in a group of related protein or DNA sequences and is often associated with some biological function. MEME represents motifs as position-dependent letter-probability matrices which describe the probability of each possible letter at each position in the pattern. Individual MEME motifs do not contain gaps. Patterns with variable-length gaps are split by MEME into two or more separate motifs.

MEME takes as input a group of DNA or protein sequences (the training set) and outputs as many motifs as requested. It uses statistical modeling techniques to automatically choose the best width, number of occurrences, and description for each motif.

MEME is the first of a collection of tools for analyzing motifs called the MEME suite.

Definition

What the MEME algorithm actually does can be understood from two different perspectives. From a biological point of view, MEME identifies and characterizes shared motifs in a set of unaligned sequences. From the computer science aspect, MEME finds a set of non-overlapping, approximately matching substrings given a starting set of strings.

Use

With MEME one can find similar biological functions and structures in different sequences. One has to take into account that the sequences variation can be significant and that the motifs are sometimes very small. It is also useful to take into account that the binding sites for proteins are very specific. This makes it easier to reduce wet-lab experiments (reduces costs and time). Indeed, to better discover the motifs relevant from a biological point of view one has to carefully choose:

  • The best width of motifs.
  • The number of occurrences in each sequence.
  • The composition of each motif.
  • Algorithm Components

    The algorithm uses several types of well known functions:

  • Expectation maximization (EM).
  • EM based heuristic for choosing the EM starting point.
  • Maximum likelihood ratio based (LRT-based). Heuristic for determining the best number of model-free parameters.
  • Multi-start for searching over possible motif widths.
  • Greedy search for finding multiple motifs.
  • However, one often doesn't know where the starting position is. Several possibilities exist:

  • Exactly one motif per sequence.
  • One or zero motif per sequence.
  • Any number of motifs per sequence.
  • Example

    In the following example, one has a weight matrix of 3 different sequences, without gaps.

    Now one counts the number of nucleotides contained in all sequences:

    Now one needs to sum up the total: 7+3+12+5 = 27; this gives us a "dividing factor" for each base, or the equivalent probability of each nucleotides.

    Now one can "redo" the weight matrix (WM) by dividing it by the total number of sequences (in our case 3):

    Next, one divides the entries of the WM at position x i with the probability of the base x .

    In general one would now multiply the probabilities. In our case one would have zero for every one. Due to this we define log 10 0 := 10 and take the (base 10) logarithm:

    This is our new weight matrix (WM). One is ready to use an example of a promoter sequence to determine its score. To do this, one has to add the numbers found at the position x i of the logarithmic WM. For instance, if one takes the AGGCTGATC promoter:
    0.11 - 0.12 + 0.35 - 10 + 0.73 - 0.12 + 0.41 - 10 + 0.48 = -18.17
    This is then divided by the number of entries (in our case 9) yielding a score of -2.02.

    Shortcomings

    The MEME algorithms has several drawbacks including:

  • Allowance for gaps/substitutions/insertions not included.
  • Ability to test significance often not included.
  • Erased input data each time a new motif is discovered (the algorithm assumes the new motif is correct).
  • Limitation to two component case.
  • Time complexity is high, scaling O(n^2). A faster implementation of MEME, known as EXTREME, uses the online EM algorithm to significantly speed up motif discovery.
  • Very pessimistic about alignment (which might lead to missed signals).
  • References

    Multiple EM for Motif Elicitation Wikipedia