请输入您要查询的百科知识:

 

词条 Sequence motif
释义

  1. Overview

  2. Motif Representation

     Motifs and consensus sequences  Pattern description notations  PROSITE pattern notation  Matrices  Encoding scheme 

  3. Computational discovery of motifs

     De novo motif discovery  Discovery through evolutionary conservation  De novo motif pair discovery 

  4. See also

  5. References

  6. Further reading

{{Hatnote|Compare conserved sequences, protein domains, and structural motifs.}}

In genetics, a sequence motif is a nucleotide or amino-acid sequence pattern that is widespread and has, or is conjectured to have, a biological significance. For proteins, a sequence motif is distinguished from a structural motif, a motif formed by the three-dimensional arrangement of amino acids which may not be adjacent.

An example is the N-glycosylation site motif:

Asn, followed by anything but Pro, followed by either Ser or Thr, followed by anything but Pro

where the three-letter abbreviations are the conventional designations for amino acids (see genetic code).

Overview

When a sequence motif appears in the exon of a gene, it may encode the "structural motif" of a protein; that is a stereotypical element of the overall structure of the protein. Nevertheless, motifs need not be associated with a distinctive secondary structure. "Noncoding" sequences are not translated into proteins, and nucleic acids with such motifs need not deviate from the typical shape (e.g. the "B-form" DNA double helix).

Outside of gene exons, there exist regulatory sequence motifs and motifs within the "junk", such as satellite DNA. Some of these are believed to affect the shape of nucleic acids (see for example RNA self-splicing), but this is only sometimes the case. For example, many DNA binding proteins that have affinity for specific DNA binding sites bind DNA in only its double-helical form. They are able to recognize motifs through contact with the double helix's major or minor groove.

Short coding motifs, which appear to lack secondary structure, include those that label proteins for delivery to particular parts of a cell, or mark them for phosphorylation.

Within a sequence or database of sequences, researchers search and find motifs using computer-based techniques of sequence analysis, such as BLAST. Such techniques belong to the discipline of bioinformatics.

See also consensus sequence.

Motif Representation

Consider the N-glycosylation site motif mentioned above:

Asn, followed by anything but Pro, followed by either Ser or Thr, followed by anything but Pro

This pattern may be written as N{P}[ST]{P} where N = Asn, P = Pro, S = Ser, T = Thr; {X} means any amino acid except X; and [XY] means either X or Y.

The notation [XY] does not give any indication of the probability of X or Y occurring in the pattern. Observed probabilities can be graphically represented using sequence logos. Sometimes patterns are defined in terms of a probabilistic model such as a hidden Markov model.

Motifs and consensus sequences

The notation [XYZ] means X or Y or Z, but does not indicate the likelihood of any particular match. For this reason, two or more patterns are often associated with a single motif: the defining pattern, and various typical patterns.

For example, the defining sequence for the IQ motif may be taken to be:

[FILV]Qxxx[RK]Gxxx[RK]xx[FILVWY]

where x signifies any amino acid, and the square brackets indicate an alternative (see below for further details about notation).

Usually, however, the first letter is I, and both [RK] choices resolve to R. Since the last choice is so wide, the pattern IQxxxRGxxxR is sometimes equated with the IQ motif itself, but a more accurate description would be a consensus sequence for the IQ motif.

Pattern description notations

Several notations for describing motifs are in use but most of them are variants of standard notations for regular expressions and use these conventions:

  • there is an alphabet of single characters, each denoting a specific amino acid or a set of amino acids;
  • a string of characters drawn from the alphabet denotes a sequence of the corresponding amino acids;
  • any string of characters drawn from the alphabet enclosed in square brackets matches any one of the corresponding amino acids; e.g. [abc] matches any of the amino acids represented by a or b or c.

The fundamental idea behind all these notations is the matching principle, which assigns a meaning to a sequence of elements of the pattern notation:

a sequence of elements of the pattern notation matches a sequence of amino acids if and only if the latter sequence can be partitioned into subsequences in such a way that each pattern element matches the corresponding subsequence in turn.

Thus the pattern [AB] [CDE] F matches the six amino acid sequences corresponding to ACF, ADF, AEF, BCF, BDF, and BEF.

Different pattern description notations have other ways of forming pattern elements. One of these notations is the PROSITE notation, described in the following subsection.

PROSITE pattern notation

The PROSITE notation uses the IUPAC one-letter codes and conforms to the above description with the exception that a concatenation symbol, '-', is used between pattern elements, but it is often dropped between letters of the pattern alphabet.

PROSITE allows the following pattern elements in addition to those described previously:

  • The lower case letter 'x' can be used as a pattern element to denote any amino acid.
  • A string of characters drawn from the alphabet and enclosed in braces (curly brackets) denotes any amino acid except for those in the string. For example, {ST} denotes any amino acid other than S or T.
  • If a pattern is restricted to the N-terminal of a sequence, the pattern is prefixed with '<'.
  • If a pattern is restricted to the C-terminal of a sequence, the pattern is suffixed with '>'.
  • The character '>' can also occur inside a terminating square bracket pattern, so that S[T>] matches both "ST" and "S>".
  • If e is a pattern element, and m and n are two decimal integers with m <= n, then:
    • e(m) is equivalent to the repetition of e exactly m times;
    • e(m,n) is equivalent to the repetition of e exactly k times for any integer k satisfying: m <= k <= n.

Some examples:

  • x(3) is equivalent to x-x-x.
  • x(2,4) matches any sequence that matches x-x or x-x-x or x-x-x-x.

The signature of the C2H2-type zinc finger domain is:

  • C-x(2,4)-C-x(3)-[LIVMFYWC]-x(8)-H-x(3,5)-H

Matrices

A matrix of numbers containing scores for each residue or nucleotide at each position of a fixed-length motif. There are two types of weight matrices.

  • A position frequency matrix (PFM) records the position-dependent frequency of each residue or nucleotide. PFMs can be experimentally determined from SELEX experiments or computationally discovered by tools such as MEME using hidden Markov models.
  • A position weight matrix (PWM) contains log odds weights for computing a match score. A cutoff is needed to specify whether an input sequence matches the motif or not. PWMs are calculated from PFMs.

An example of a PFM from the TRANSFAC database for the transcription factor AP-1:

Pos A C G T IUPAC
01 6 2 8 1 R
02 3 5 9 0 S
03 0 0 0 17 T
04 0 0 17 0 G
05 17 0 0 0 A
06 0 16 0 1 C
07 3 2 3 9 T
08 4 7 2 4 N
09 9 6 1 1 M
10 4 3 7 3 N
11 6 3 1 7 W

The first column specifies the position, the second column contains the number of occurrences of A at that position, the third column contains the number of occurrences of C at that position, the fourth column contains the number of occurrences of G at that position, the fifth column contains the number of occurrences of T at that position, and the last column contains the IUPAC notation for that position.

Note that the sums of occurrences for A, C, G, and T for each row should be equal because the PFM is derived from aggregating several consensus sequences.

Encoding scheme

The following example comes from the paper by Matsuda, et al. 1997.[1]

The E. coli lactose operon repressor LacI ({{PDB|1lcc}} chain A) and E. coli catabolite gene activator ({{PDB|3gap}} chain A) both have a helix-turn-helix motif, but their amino acid sequences do not show much similarity, as shown in the table below.

Matsuda, et al.[1] devised a code they called the "three-dimensional chain code" for representing a protein structure as a string of letters. This encoding scheme reveals the similarity between the proteins much more clearly than the amino acid sequence:

3D chain code Amino acid sequence
1lccA TWWWWWWWKCLKWWWWWWG LYDVAEYAGVSYQTVSRVV
3gapA KWWWWWWGKCFKWWWWWWW RQEIGQIVGCSRETVGRIL

where "W" corresponds to an α-helix, and "E" and "D" correspond to a β-strand.

Computational discovery of motifs

De novo motif discovery

There are software programs which, given multiple input sequences, attempt to identify one or more candidate motifs. One example is the Multiple EM for Motif Elicitation (MEME) algorithm, which generates statistical information for each candidate.[2] There are more than 100 publications detailing motif discovery algorithms; Weirauch et al. evaluated many related algorithms in a 2013 benchmark.[3] The planted motif search is another motif discovery method that is based on combinatorial approach.

Discovery through evolutionary conservation

Motifs have also been discovered by taking a phylogenetic approach and studying similar genes in different species. For example, by aligning the amino acid sequences specified by the GCM (glial cells missing) gene in man, mouse and D. melanogaster, Akiyama and others discovered a pattern which they called the GCM motif.[4] It spans about 150 amino acid residues, and begins as follows:

WDIND*.*P..*...D.F.*W***.**.IYS**...A.*H*S*WAMRNTNNHN

Here each . signifies a single amino acid or a gap, and each * indicates one member of a closely related family of amino acids.

The authors were able to show that the motif has DNA binding activity. PhyloGibbs[5] is an example of a motif discovery algorithm that considers phylogenetic conservation.

De novo motif pair discovery

In 2017, MotifHyades has been developed as a motif discovery tool that can be directly applied to paired sequences [6].

See also

{{Portal|Biology|Molecular and cellular biology}}{{colbegin}}
  • Biomolecular structure
  • MaMF (Mammalian Motif Finder), an algorithm for identifying motifs to which transcription factors bind
  • Multiple EM for Motif Elicitation
  • Nucleic acid sequence
  • Protein primary structure
  • Protein I-sites
  • Sequence logo
  • Sequence mining
  • Structural motif
  • Short linear motif
{{colend}}

References

1. ^{{cite journal |author1=Matsuda H |author2=Taniguchi F |author3=Hashimoto A |year=1997 |title=An approach to detection of protein structural motifs using an encoding scheme of backbone conformations |journal=Proc. Of 2nd Pacific Symposium on Biocomputing |pages=280–291 |url=http://helix-web.stanford.edu/psb97/matsuda.pdf}}
2. ^{{cite journal |vauthors=Bailey TL, Williams N, Misleh C, Li WW |title=MEME: discovering and analyzing DNA and protein sequence motifs |journal=Nucleic Acids Res |year=2006 |volume=34 |issue=Web Server issue |pages=W369–373 |pmid=16845028 |doi=10.1093/nar/gkl198 |pmc=1538909}}
3. ^{{cite journal |author=Weirauch|year=2013 |title=Evaluation of methods for modeling transcription factor sequence specificity |journal=Nature Biotechnology |volume=31 |pages=126–134 |doi=10.1038/nbt.2486 |pmid=23354101 |pmc=3687085 |issue=2|display-authors=etal}}
4. ^{{cite journal |author1=Akiyama Y |author2=Hosoya T |author3=Poole AM |author4=Hotta Y |year=1996 |title=The gcm-motif: a novel DNA-binding motif conserved in Drosophila and mammals |journal=Proc. Natl. Acad. Sci. U.S.A. |volume=93 |issue=25 |pages=14912–14916 |pmid=8962155 |doi=10.1073/pnas.93.25.14912 |pmc=26236}}
5. ^{{cite journal |author1=Siddharthan R |author2=Siggia ED |author3=van Nimwegen E |title=PhyloGibbs: A Gibbs sampling motif finder that incorporates phylogeny |journal=PLoS Comput Biol |volume=1 |issue=7 |pages=e67 |year=2005 |doi=10.1371/journal.pcbi.0010067 |pmid=16477324 |pmc=1309704}}
6. ^Ka-Chun Wong; [https://doi.org/10.1093/bioinformatics/btx381 MotifHyades: expectation maximization for de novo DNA motif pair discovery on paired sequences], Bioinformatics, Volume 33, Issue 19, 1 October 2017, Pages 3028–3035, https://doi.org/10.1093/bioinformatics/btx381

Further reading

  • {{cite journal |author=Stormo GD |year=2000 |title=DNA binding sites: representation and discovery |journal=Bioinformatics |volume=16 |issue=1 |pages=16–23 |pmid=10812473 |doi=10.1093/bioinformatics/16.1.16}}
  • {{cite journal |author1=Balla S |author2=Thapar V |author3=Verma S |author4=Luong T |author5=Faghri T |author6=Huang CH |author7=Rajasekaran S |author8=del Campo JJ |author9=Shinn JH |author10=Mohler WA |author11=Maciejewski MW |author12=Gryk MR |author13=Piccirillo B |author14=Schiller SR |author15=Schiller MR |year=2006 |title=Minimotif Miner: a tool for investigating protein function |journal=Nature Methods |volume=3 |issue=3 |pages=175–177 |pmid=16489333 |doi=10.1038/nmeth856|title-link=Minimotif Miner }}
  • {{cite book |author=Schiller MR |year=2007 |title=Minimotif miner: a computational tool to investigate protein function, disease, and genetic diversity |journal=Curr Protoc Protein Sci |volume=chapter 2 |issue=unit 2.12 |pmid=18429315 |doi=10.1002/0471140864.ps0212s48 |pages=2.12.1–2.12.14|isbn=978-0471140863 }}
  • {{cite journal |author1=Kadaveru K |author2=Vyas J |author3=Schiller MR |year=2008 |title=Viral infection and human disease--insights from minimotifs |journal=Front Biosci |volume=13 |pages=6455–6471 |pmid=18508672 |pmc=2628544 |doi=10.2741/3166 |issue=13}}
  • {{cite book |author1=Doaa Altarawy |author2=M. A. Ismail |author3=Sahar Ghanem |last-author-amp=yes |year=2009 |title=MProfiler: A Profile-Based Method for DNA Motif Discovery |journal=Pattern Recognition in Bioinformatics |volume=5780 |pages=13–23 |doi=10.1007/978-3-642-04031-3_2|series=Lecture Notes in Computer Science |isbn=978-3-642-04030-6 }}

1 : Bioinformatics

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/21 3:30:38