Shane Chu

Proteins with complex binding modes

Simplified single motif discovery problem

In the motif discovery problem, an example dataset will look exactly like:

Unaligned

i.e., a dataset whose entries are all DNA strings.

This dataset usually is obtained from a sequencing experiment, e.g., Chip-Seq.

In addition, this dataset is associated with a protein. The assumption is that this protein tends to bind to a set of similar DNA substrings embedded in those DNA strings (In biology it's colloquially called the protein's binding specificity), and we need to find out where those substrings occurred.

Let's assume we possess a well-defined problem formulation alongside an effective algorithm for identifying this set of similar string – referred to as the purple substrings in the dataset:

Unaligned

We can then turn them into a multiple sequence alignment (MSA):

Unaligned

This MSA, in turn, can be made into a position weight matrix (PWM) P\bm P.

We estimate the position weight matrix P\bm P by first using the empirical frequency fαi\bm f_{\alpha i} of each nucleotide α\alpha at each position ii from the MSA. This step is equivalent to doing a maximum likelihood estimate of the parameters of a product multinomial distribution. Then, we fill each (α,i)(\alpha, i)-entry of the PWM P\bm P by Pαi=log2(fαi/bα)\bm P_{\alpha i} = \log_2 (\bm f_{\alpha i} / \bm b_\alpha), where bα\bm b_\alpha is the assumed genomic background frequency for nucleotide α\alpha.

We can visualize the PWM P\bm P in the following picture:

Unaligned

where the height of the nucleotide at each column shows how conserved each nucleotide is at each position. The higher the nucleotide, the more conserved; each ii-th column's height is given by the so-called information content formula, i.e., αfαilog2(fαi/bα)\sum_\alpha \bm f_{\alpha i} \log_2 (\bm f_{\alpha i} / \bm b_\alpha).

However, the motif discovery problem becomes significantly more intricate when considering the mechanism by which proteins bind to DNA.

Complex binding modes

Here, we present qualitative characterizations of various binding modes along with illustrative examples sourced from the study by Siggers and Gordan.

One complex mechanism through which a protein can bind to DNA is via variable spacing:

vs

In variable spacing, the binding sites are fragmented into distinct parts. It's a common biological terminology to denote the separation between these parts as a spacer when a protein binds to the DNA.

Another scenario involves multiple DNA binding domains (DBDs):

vs

In cases of multiple DBDs, a protein may possess distinct binding sites across its structure. Additionally, we can also have a situation called multimeric binding:

vs

In multimeric binding, once more, the protein features more than one binding site. However, in this scenario, one binding site represents an extended version of another, meaning that the binding sites overlap.

Last, we have alternate structural conformations:

vs

In summary, these situations, encompassing binding modes such as variable spacing, multiple DBDs, multimeric binding, and alternate structural conformations, collectively render motif discovery significantly more intricate than the simplified version of the problem discussed earlier.

Moreover, these binding modes for a protein may not necessarily be mutually exclusive. For instance, a protein could exhibit binding modes that encompass both multimeric binding and variable spacing.

Detecting motifs characterized by the aforementioned binding modes presents a computational challenge. In the upcoming series of blog posts, we will outline our approach to identifying these complex binding patterns.

References

Contact me by E-mail | Github | Linkedin
This work is licensed under CC BY-SA 4.0. Last modified: August 26, 2024.
Website built with Franklin.jl and the Julia language.