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: Ab initio

Thursday, July 27, 2006

Ab initio

Seeks to predict the native conformation of a protein from the amino acid sequence alone.

Simplifications: to employ implicit solvent models, united atom representations, side chains represented using a limited set of conformations found prevalent in PDB, restricting the conformation available to the polypeptide backbone.

Rosetta: based on a model of folding in which short segments of the protein chain flicker between different local structures, consistent with their local sequences, and folding to the native state occurs when these local segments are oriented such that low free energy interactions are made throughout the protein.


Two categories of potential functions can be employed in evaluating the free energy of the peptide chain and the surrounding solvent: molecular mechanics and protein-structure derived potentials or scoring functions derived from experimental structures from the PDB.

[+/-] show/hide this post  

0 Comments:

Post a Comment

<< Home