tag) function generic() { translate(); }; //setup onload function if(typeof window.addEventListener != 'undefined') { //.. gecko, safari, konqueror and standard window.addEventListener('load', generic, false); } else if(typeof document.addEventListener != 'undefined') { //.. opera 7 document.addEventListener('load', generic, false); } else if(typeof window.attachEvent != 'undefined') { //.. win/ie window.attachEvent('onload', generic); } //** remove this condition to degrade older browsers else { //.. mac/ie5 and anything else that gets this far //if there's an existing onload function if(typeof window.onload == 'function') { //store it var existing = onload; //add new onload handler window.onload = function() { //call existing onload function existing(); //call generic onload function generic(); }; } else { //setup onload function window.onload = generic; } } Bioinformatics arena: Inferring function from structure

Thursday, July 27, 2006

Inferring function from structure

Structure and function can be transferred between similar sequences because they have been conserved over long periods of time. Above 40% sequence identity, homologous proteins tend to have the same function.

Function: Biochemical: the chemical interactions ocurring in a protein; Biological: the role within the cell of the protein; Phenotypic: the role played by the protein in the organism as a whole.

EC (Enzyme Commission) provides a widely used protein functiona classification scheme. There are several databases containing funcional information: SWISS-PROT, GenProtEC, etc. There exist also multifunctional proteins. Gene Ontologies uses a controlled vocabulary for describing the roles of genes and gene products in any organism: (biological, molecular, cellular).

Functional information which can be obtained from 3D protein structures

  • Basic structure: in the form of a PDB file.
  • Protein-ligand complexes: can provide the biochemical function of the protein.
Relationship between structure and function

Protein structural classification is not of much help since some structures are under-represented. Furthermore, as the number of folds in limited in nature, similar structures can have totally different functions. Most folds have a homologous familiy associated with them, and it is expected that family members will have related function. There are, however, examples of divergence of function.

Analogues: some functions have different structural solutions (examples of convergent evolution).

Assigning function from structure

  • Ab initio prediction: a protein-ligand binding site (active site) is often found to be the largest cleft in the protein.
  • Structural comparisons: using structural databases such as CATH or SCOP. It is the most powerful method. Sometimes structural similarit can be the result of convergent evolution.
  • Structural motifs: detailed knowledge of the active site is required. Six methods:
  1. SITE and SITE-Match: correlates an alignment with PDB and SWISS-PROT files.
  2. TESS: 3D Template Search and Superposition.
  3. Fuzzy Functional Forms (FFFs): derives FFFs from 3D structural information.
  4. SPASM, RIGOR: tools for studying constellations of small number of residues.
  5. Molecular Recognition: searches for similar spatial arrangements of atoms around a particular chemical moiety in proteins by superposing them.
  6. Protein Side Chain Patterns: detects active site in proteins via recurring amino acid side-chain patterns.

[+/-] show/hide this post  

0 Comments:

Post a Comment

<< Home