1 / 58

COT 6930 HPC and Bioinformatics Protein Structure Prediction

COT 6930 HPC and Bioinformatics Protein Structure Prediction. Xingquan Zhu Dept. of Computer Science and Engineering. Protein structure databases. Gene expression database. transcription. translation. DNA. RNA. protein. phenotype. Protein sequence databases. cDNA ESTs

karik
Download Presentation

COT 6930 HPC and Bioinformatics Protein Structure Prediction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. COT 6930HPC and BioinformaticsProtein Structure Prediction Xingquan Zhu Dept. of Computer Science and Engineering

  2. Protein structure databases Gene expression database transcription translation DNA RNA protein phenotype Protein sequence databases cDNA ESTs UniGene Genomic DNA Databases

  3. Outline • Protein Structure • Why structure • How to predict protein structure • Experimental methods • Computational methods (predictive methods) • Protein Structure Prediction • Secondary structure prediction (2D) • Machine learning methods for protein secondary structure prediction • Tertiary structure prediction (3D) • Ab initio • Homology modeling

  4. Proteins • Proteins play a crucial role in virtually all biological processes with a broad range of functions. • The activity of an enzyme or the function of a protein is governed by the three-dimensional structure

  5. Protein Structure is Hierarchical Protein Structure Video http://www.youtube.com/watch?v=lijQ3a8yUYQ

  6. Primary Structure: Sequence • The primary structure of a protein is the amino acid sequence

  7. Protein Structure Prediction Problem • Protein structure prediction • Predict protein 3D structure from (amino acid) sequence • One step closer to useful biological knowledge • Sequence → secondary structure → 3D structure → function

  8. Outline • Protein Structure • Why structure • How to Predict Protein Structure • Experimental methods • Computational methods (predictive methods) • Protein Structure Prediction • Secondary structure prediction (2D) • Machine learning methods for Protein Secondary Structure Prediction • Tertiary structure prediction (3D) • Ab initio • Homology modeling

  9. Why Predict Structure? Structure is more conserved than sequence Structure determines function • Goals: • Predict structure from sequence • Predict function based on structure • Predict function based on sequence Molecular function

  10. Why predict structure: Structure is more conserved than sequence 28% sequence identity

  11. Why predict structure: Can Label Proteins by Dominant Structure • SCOP: Structural Classification Of Proteins

  12. Why predict structure: Large number proteins vs. relative smaller number folds • Small number of unique folds found in practice • 90% proteins < 1000 folds, estimated ~4000 total folds http://www.rcsb.org/pdb/home/home.do As of 02/05/2008 48,878 structures

  13. Examples of Fold Classes

  14. How to Predict Protein Structure • A related biological question: what are the factors that determine a structure? • Energy • Kinematics • How can we determine structure? • Experimental methods • X-ray crystallography or NMR (Nuclear magnetic resonance) spectrometry • limitation: protein size, require crystallized proteins • Computational methods (predictive methods) • 2-D structure (secondary structure) • 3-D structure (tertiary structure)

  15. rotatable rotatable Geometry of Protein Structure

  16. Inter-atomic Forces • Covalent bond (short range, very strong) • Binds atoms into molecules / macromolecules • Hydrogen bond (short range, strong) • Binds two polar groups (hydrogen + electronegative atom) • Disulfide bond / bridge (short range, very strong) • Covalent bond between sulfhydryl (sulfur + hydrogen) groups • Hydrophobic / hydrophillic interaction (weak) • Hydrogen bonding w/ H2O in solution • Van der Waal’s interaction (very weak) • Nonspecific electrostatic attractive force

  17. Types of Inter-atomic Forces

  18. Quick Overview of Energy

  19. Protein Folding Animation • http://www.youtube.com/watch?v=fvBO3TqJ6FE • http://www.youtube.com/watch?v=swEc_sUVz5I

  20. Two Related Problems in Structure Prediction • Directly predicting protein structure from the amino acid sequence has proved elusive • Two sub-problems • Secondary Structure Prediction • Tertiary Structure Prediction

  21. amino acid sequence Secondary structure sequence Secondary Structure Predication (2D) • For each residues in a protein structure, three possible states: a (a-helix), ß (ß-strand), t (others). • Currently the accuracy of secondary structure methods is nearly 80% (2000). • Secondary structure prediction can provide useful information to improve other sequence and structure analysis methods, such as sequence alignment and 3-D modeling. http://bioinf.cs.ucl.ac.uk/psipred/psiform.html

  22. Outline • Protein Structure • Why structure • How to Predict Protein Structure • Experimental methods • Computational methods (predictive methods) • Protein Structure Prediction • Secondary structure prediction (2D) • Machine learning methods for Protein Secondary Structure Prediction • Tertiary structure prediction (3D) • Ab initio • Homology modeling

  23. PSSP: Protein Secondary Structure Prediction • Three Generations • Based on statistical information of single amino acids • Based on local amino acid interaction (segments). Typically a segment containes 11-21 aminoacids • Based on evolutionary information of the homology sequences

  24. Secondary Structure preferences for Amino Acids The normalized frequencies for each conformation were calculated from the fraction of residues of each amino acid that occurred in that conformation, divided by this fraction for all residues. Random occurrence of a particular amino in a conformation would give a value of unity. A value greater than unity indicates a preference for a particular type of secondary structure.

  25. Outline • Protein Structure • Why structure • How to Predict Protein Structure • Experimental methods • Computational methods (predictive methods) • Protein Structure Prediction • Secondary structure prediction (2D) • Machine learning methods for Protein Secondary Structure Prediction • Tertiary structure prediction (3D) • Ab initio • Homology modeling

  26. Machine learning methods for Protein Secondary Structure Prediction • Introduction to classification • Generalize protein secondary structure prediction as a machine learning problem • Introduction to Neural Network

  27. Classification and Classifiers • Given a data base table DB with a set of attribute values and a special atribute C, called a class label. • Example:

  28. Classification and Classifiers • An algorithm is called a classification algorithm if it uses the data to build a set of patterns • Decision rules or decision trees, etc. • Those patters are structured in such a way that we can use them to classify unknown sets of objects- unknown records. • For that reason (because of the goal) the classification algorithm is often called shortly a classifier. • Classifier Example

  29. Classification and Classifiers • Building a classifier consists of two phases: • Training and testing. • In both phases we use data (training data set and disjoint test data set) for which the class labels are known for ALL of the records. • The training data set to create patterns (rules, trees, or to train a Neural network). • Evaluate created patterns with the use of of test data, which classification is known. • The measure for a trained classifier accuracy is called predictive accuracy.

  30. Predictive Accuracy Evaluation The main methods of predictive accuracy evaluations are: • Re-substitution (N ; N) • Holdout (2N/3 ; N/3) • x-fold cross-validation (N-N/x ; N/x) • Leave-one-out (N-1 ; 1), where N is the number of instances in the dataset • The process of building and evaluating a classifier is also called a supervised learning, or lately when dealing with large data bases a classification method in Data Mining

  31. Classification Models: Different Classifiers Typical classification models • Decision Trees (ID3, C4.5) • Nearest Neighbors • Support Vector Machines • Neural Networks • Most of the best classifiers for PSSP are based on Neural Network model • Demonstration

  32. Machine learning methods for Protein Secondary Structure Prediction • Introduction to classification • Generalize protein secondary structure prediction as a machine learning problem • Introduction to Neural Network

  33. How to generalize protein secondary prediction as a machine learning problem? • Using a sliding window to move along the amino acid sequence • Each window denotes an instance • Each amino acid inside the window denotes an attribute • The known secondary structure of the central amino acid is the class label

  34. How to generalize protein secondary prediction as a machine learning problem? • A set of “examples” are generated from sequence with known secondary structures • Examples form a training set • Build a neural network classifier • Apply the classifier to a sequence with unknown secondary structure

  35. Machine learning methods for Protein Secondary Structure Prediction • Introduction to classification • Generalize protein secondary structure prediction as a machine learning problem • Introduction to Neural Network

  36. Introduction to Neural Network • What is an artificial Neural Network? • An extremely simplified model of the brain • Essentially a function approximator • Transforms inputs into outputs to the best of its ability

  37. Introduction to Neural Network • Composed of many “neurons” that co-operate to perform the desired function

  38. How do Neural Network Work? • A neuron (perceptron) is a single layer NN • The output of a neuron is a function of the weighted sum of the inputs plus a bias

  39. Activation Function • Binary active function • f(x)=1 if x>=0 • f(x)=0 otherwise • The most common sigmoid function used is the logistic function • f(x) = 1/(1 + e-x) • The calculation of derivatives are important for neural networks and the logistic function has a very nice derivative • f’(x) = f(x)(1 - f(x))

  40. Where Do The Weights Come From? • The weights in a neural network are the most important factor in determining its function • Training is the act of presenting the network with some sample data and modifying the weights to better approximate the desired function • Supervised Training • Supplies the neural network with inputs and the desired outputs • Response of the network to the inputs is measured • The weights are modified to reduce the difference between the actual and desired outputs

  41. Perceptron Example • Simplest neural network with the ability to learn • Made up of only input neurons and output neurons • Output neurons use a simple threshold activation function • In basic form, can only solve linear problems • Limited applications

  42. Perceptron Example • Perceptron weight updating • If the output is not correct, the weights are adjusted according to the formula: • wnew = wold + ·(desired – output)input Assuming given instance {(1,0,1), 0}

  43. Multi-Layer Feedforward NN • An extension of the perceptron • Multiple layers • The addition of one or more “hidden” layers in between the input and output layers • Activation function is not simply a threshold • Usually a sigmoid function • A general function approximator • Not limited to linear problems • Information flows in one direction • The outputs of one layer act as inputs to the next layer

  44. Multi-Layer Feedforward NN Example • XOR problem

  45. Back-propagation • Searches for weight values that minimize the total error of the network over the set of training examples • Forward pass: Compute the outputs of all units in the network, and the error of the output layers. • Backward pass:The network error is used for updating the weights (credit assignment problem).

  46. NN for Protein Secondary Structure Prediction

  47. Outline • Protein Structure • Why structure • How to Predict Protein Structure • Experimental methods • Computational methods (predictive methods) • Protein Structure Prediction • Secondary structure prediction (2D) • Machine learning methods for Protein Secondary Structure Prediction • Tertiary structure prediction (3D) • Ab initio • Homology modeling

  48. Ab initio Prediction • Sampling the global conformation space • Lattice models / Discrete-state models • Molecular Dynamics • Picking native conformations with an energy function • Solvation model: how protein interacts with water • Pair interactions between amino acids

  49. Lattice String Folding • HP model: main modeled force is hydrophobic attraction • Amino Acids are classified into two types • Hydrophopic (H) or Polar (P) • NP-hard in both 2-D square and 3-D cubic • Constant approximation algorithms • Not so relevant biologically

  50. Lattice String Folding

More Related