Given p strings and a length k, find the most “mutually similar” substring from each string.
- Each motif appears exactly once in one sequence
- The motif has fixed length
- Start with random motif locations and calculate a motif model
- Randomly select a sequence, remove its motif and recalculate temporary model
- With temporary model, calculate probability of motif at each position on sequence
- Select new position based on this distribution
- Update model and iterate