Jump to content

PatternQuery:Atlas: Difference between revisions

From WebChemistry Wiki
Initial fill
 
No edit summary
Line 1: Line 1:
__NOTOC__
{{TOC limit|2}}
 
=DNA=
=RNA kink-turn motif (Kt-7)=
=RNA=
==RNA kink-turn motif (Kt-7)==
[[Image:PatternQuery-Atlas-Kt-7.png|200px|thumb|left|Example from ''1ffk'' protein.]]
[[Image:PatternQuery-Atlas-Kt-7.png|200px|thumb|left|Example from ''1ffk'' protein.]]


Line 20: Line 21:




 
=Protein=
=C2H2 Zinc finger=
==C<sub>2</sub>H<sub>2</sub> Zinc finger==


[[Image:PatternQuery-Atlas-C2H2.png|200px|thumb|left|Example from ''4r2a'' protein.]]
[[Image:PatternQuery-Atlas-C2H2.png|200px|thumb|left|Example from ''4r2a'' protein.]]
Line 39: Line 40:
<br style="clear:both" />
<br style="clear:both" />


<code>
The classical C<sub>2</sub>H<sub>2</sub> zinc finger domain is composed of a simple ββα fold, which is stabilized by a zinc ion coordinated by two histidine and two cysteine residues. The fold is often described by the pattern of X<sub>2</sub>-C-X<sub>2-4</sub>-C-X<sub>12</sub>-H-X<sub>3-5</sub>-H, where X stands for any amino acid, C is cysteine and H is histidine.
Some description goes here
</code>




=PA-IIL lectin inding site=
==PA-IIL lectin binding site==
[[Image:PatternQuery-Intro1.png|200px|thumb|left|Example from ''1gzt'' protein.]]
[[Image:PatternQuery-Intro1.png|200px|thumb|left|Example from ''1gzt'' protein.]]


Line 59: Line 58:
<br style="clear:both" />
<br style="clear:both" />


<code>
 
Some description goes here
The PQ expression searches for 2 calcium ions at most 4Å apart, and all the residues with direct interaction with either of these ions. Furthermore, just the molecular patterns containing a residue with a furan or pyran ring were preserved. Additionally, nucleotides are filtered out as well.
</code>

Revision as of 10:11, 28 July 2015

DNA

RNA

RNA kink-turn motif (Kt-7)

Example from 1ffk protein.

PQ expression

 Near(4, 
  RegularMotifs(GGCGAAGAAC, Type=Nucleotide), 
  RegularMotifs(GGGAGCC, Type=Nucleotide))


Some description goes here



Protein

C2H2 Zinc finger

Example from 4r2a protein.

PQ expression

RegularMotifs('.{2}C.{2,4}C.{12}H.{3,5}H').
	  ConnectedAtoms(1).
	  Filter(lambda m:
	    m.Find(Atoms('Zn').
              ConnectedResidues(1).
              Filter(lambda n: 
			(n.Count(Residues('Cys')) == 2) & (n.Count(Residues('His')) == 2))).
		SeqCount() > 0)


The classical C2H2 zinc finger domain is composed of a simple ββα fold, which is stabilized by a zinc ion coordinated by two histidine and two cysteine residues. The fold is often described by the pattern of X2-C-X2-4-C-X12-H-X3-5-H, where X stands for any amino acid, C is cysteine and H is histidine.


PA-IIL lectin binding site

Example from 1gzt protein.

PQ expression

	
Near(4, Atoms("Ca"), Atoms("Ca"))
  .ConnectedResidues(1)
  .Filter(lambda l:
    l.Count(Or(Rings(5 * ["C"] + ["O"]), Rings(4 * ["C"] + ["O"]))) > 0)
  .Filter(lambda l: l.Count(Atoms("P")) == 0)



The PQ expression searches for 2 calcium ions at most 4Å apart, and all the residues with direct interaction with either of these ions. Furthermore, just the molecular patterns containing a residue with a furan or pyran ring were preserved. Additionally, nucleotides are filtered out as well.