Matching Observed Alpha Helix Lengths to Predicted Secondary Structure∗

Total Page:16

File Type:pdf, Size:1020Kb

Matching Observed Alpha Helix Lengths to Predicted Secondary Structure∗ Matching Observed Alpha Helix Lengths to Predicted Secondary Structure∗ Brian Cloteaux† Nadezhda Serova National Institute of Standards and Technology University of Maryland, Baltimore County Gaithersburg, Maryland, USA Baltimore, Maryland, USA [email protected] [email protected] Abstract information about the protein’s 3D structure. At the same time, the computational problem of deter- Because of the complexity in determining the 3D struc- mining 3D structure of these proteins is, in general, in- ture of a protein, the use of partial information determined tractable. In order to reduce the difficulty of this problem, a from experimental techniques can greatly reduce the over- recent approach has been to use computational methods to all computational expense. We investigate the problem of match observed secondary structure to the possible place- matching experimentally observed lengths of helices to the ments on the 1D structure. This paper extends an origi- predicted secondary structure of a protein. We give a simple nal investigation by He, Lu, and Pontelli [4] of the problem and fast algorithm for producing a library of possible solu- of matching observed lengths of the alpha helices from the tions. Then we test our algorithm by performing a series electron cryomicroscopy technique to the predicted areas of of computational experiments of predicting the alpha helix secondary structure. placement of proteins with an already known order. These Electron cryomicroscopy can be used to produce a den- tests seem to demonstrate that our method, if given a good sity map of some proteins. Although with current technol- prediction of the protein’s secondary structure, can gener- ogy the resolutions of such maps are relatively low, certain ate high quality lists of potential placements of the helix secondary structures (such as alpha helices) can still iden- length onto the protein sequences. tified. These alpha helices can be identified as lengths of amino acids, although the location of these helix lengths on the protein sequence is not clear. He, Lu, and Pontelli sug- 1 Introduction gested using placing these observed length on the predicted probability of the individual amino acids in the sequence Understanding how specific proteins fold, or arrange being in a helix. Prediction servers have been created that themselves in three dimensional space (3D) based on en- are able to use the information about the protein’s sequence vironmental and internal chemical constraints, is necessary in order to predict the placement of alpha helices on the 1D to determine the how these proteins function. But even sequence. Still, these methods have limited accuracy and with the amino acid sequence of the proteins (1D structure) so the best result that can be computed is a set of possible known, the prediction of their corresponding 3D structure arrangements of the observed lengths that a researcher can is an extremely challenging problem. use as a starting point in determining 3D structure. This challenge is both from an experimental and compu- This paper offers two contributions to the matching of tational viewpoint. Proteins require precise environments to observed lengths to their placement on the 1D protein struc- fold properly. Because of these numerous complications in ture. The first is to examine the complexity and necessity measuring these protein under the correct environment, ex- of computing the optimal length placement. We give evi- perimental methods for ascertaining the 3D arrangements dence that computing optimal solutions may not be worth are expensive, time consuming, and of limited accuracy. X- the computational expense. ray crystallography, for example, is a powerful technique in A second contribution is to introduce a new approach the determination of the structures, however it is ineffective to computing possible arrangements. He, Lu, and Pontelli in proteins that are not easily crystallized, such as mem- introduced a method to produce a library of likely mappings brane proteins. Many other methods provide only partial to serve as starting points for a researcher. Our approach is similar to the He, Lu, and Pontelli method in the sense that ∗Official contribution of the National Institute of Standards and Tech- nology; not subject to copyright in the United States. it does not generate all of the possible mappings nor does †Corresponding author. it try to find an optimal solution. Instead, we give a simple heuristic algorithm that gives a good approximation of the problem. When examining possible arrangements of the placement of the lengths and then using this approximation helices onto the protein string, we would expect that the ar- as a starting point, we randomly modify it to look for other rangements that cover the maximal value for the predicted possible solutions. We collect the best arrangements to use probabilities of helices would be the most likely to occur in as a library of possible mappings. the actual protein. Thus we would be most interested in ex- To test our approach, we compared the predicting length amining those arrangements first while trying to determine placement produced by our algorithm to actual ordering on the 3D structure of the protein. several known proteins. These tests show that our method is In considering how to obtain an optimal arrangement, we a fast and simple approach for producing high quality pos- first notice that for any given ordering of the covers, we can sible placements of observed alpha helix lengths onto a pro- compute an optimal covering using that ordering in poly- tein’s sequence. nomial time. To show this, we define π as an ordering of the cover set C = {c1,c2,...,cn}, i.e. the value of π(i) is 2 The Maximal Cover Sum Problem the position of the element ci ∈ C in the order π. The in- verse function π−1 then takes a position i in the ordering and returns the cover in that position. Using a given order Before we examine the problem of mapping the observed π, we can define the following recurrence equation that de- alpha helices to the predicted secondary structure, we first termines the size of an optimal covering using π . will consider a closely related problem that we call the max- imal cover sum problem. This problem consists of a set C 0 if a or b = 0, of covers with an associated function ω : C → that gives −1 N m(a,b) = max m a,b − 1 , m a − 1,b − ω(π (a)) + the length of each cover. There is also an n-length string P n b P of positive real numbers, i.e. P ∈ R+. The expression Pi is ∑k=b−ω(π−1(a))+1 k used to denote the ith value in the string P. We define a placement of the covers on the string using In this definition, the value m(a,b) computes value of the maximal covering of the first a covers in the order π onto an index function I : C → {1..|P|}. The value I(c) gives the index in P of the first location to place the cover c. Any the first b positions of the string P. The recursion is based index function has the following three restrictions. on determining whether or not an optimal covering covers the b position of P with π−1(a). By using dynamic pro- 1. ∀c1,c2 ∈ C , I(c1) = I(c2) if and only if c1 = c2 gramming, this recurrence and its associated index function can be computed in O(|C | · |P|) time. 2. ∀c1,c2 ∈ C , if I(c1) < I(c2) then I(c1)+ω(c1) < I(c2) Thus the complexity in the maximal cover set problem stems from finding an order that produces an optimal cov- 3. ∀c ∈ C , I(c) + ω(c) ≤ |P| ering. In general, finding an optimal ordering is superpoly- The first two restrictions say that covers are not allowed to nomial in the number of covers unless P = NP. This is a overlap as they cover the string P. The last restriction pre- consequence of the fact that we can reduce the set partition vents covers from extending beyond the length of the string problem, which is NP-complete [3], to the maximal cover P. These restrictions trivially imply that if for a problem sum problem. To see this, consider an instance of a set parti- instance the condition tion problem with a multiset of values S. Using the multiset S, we can create an instance of the maximal cover problems |P| ≥ ∑ ω(c) with by making the set of covers C where |C| = |S| and the c∈C length of the covers are the values in S. We then create a does not hold, then no index function can exist for that in- string P where stance. The maximal cover sum problem is then to find an index P = 1,1,1,...1,1,0,1,1,1,...1,1 function that maximizes the expression | {z } | {z } ` ` ω(c)−1 and ` = ∑c∈C ω(c) . The point of this construction is that the P 2 ∑ ∑ j+I(c) maximal cover sum is equal to (c) = 2` if and only c∈C j=0 ∑c∈C ω if the multiset S can be equally partitioned. In other words, find a arrangement of the covers in C that Although the set partition problem is NP-complete, our covers the largest total of values on P. reduction does not necessarily prove that the maximal cover We are interested in this problem since we can view sum problem is NP-hard. This is because the number of bits matching the observed lengths of helices to the predicted needed in our create string P can potentially be exponen- secondary structure of a protein as a maximal cover sum tial to the number bits in S and so the size of the instance Protein id Number Minimum Average Minimum Average optimal Kendall-tau Kendall-tau Hamming Hamming solutions distance distance distance distance 1CC5 1 0.667 0.667 0.750 0.750 6TMN E 2 0.238 0.310 0.286 0.286 3TIM A 1 0.100 0.100 0.400 0.400 2TSC A 5 0.095 0.305 0.429 0.600 1ECA 6 0.190 0.294 0.429 0.714 1GD1 O 2 0.067 0.100 0.333 0.500 1L58 8 0.393 0.429 0.625 0.688 2PHH 1 0.476 0.476 1.000 1.000 Table 1.
Recommended publications
  • Collagen and Creatine
    COLLAGEN AND CREATINE : PROTEIN AND NONPROTEIN NITROGENOUS COMPOUNDS Color index: . Important . Extra explanation “ THERE IS NO ELEVATOR TO SUCCESS. YOU HAVE TO TAKE THE STAIRS ” 435 Biochemistry Team • Amino acid structure. • Proteins. • Level of protein structure. RECALL: 435 Biochemistry Team Amino acid structure 1- hydrogen atom *H* ( which is distictive for each amino 2- side chain *R* acid and gives the amino acid a unique set of characteristic ) - Carboxylic acid group *COOH* 3- two functional groups - Primary amino acid group *NH2* ( except for proline which has a secondary amino acid) .The amino acid with a free amino Group at the end called “N-Terminus” . Alpha carbon that is attached to: to: thatattachedAlpha carbon is .The amino acid with a free carboxylic group At the end called “ C-Terminus” Proteins Proteins structure : - Building blocks , made of small molecules unit called amino acid which attached together in long chain by a peptide bond . Level of protein structure Tertiary Quaternary Primary secondary Single amino acids Region stabilized by Three–dimensional attached by hydrogen bond between Association of covalent bonds atoms of the polypeptide (3D) shape of called peptide backbone. entire polypeptide multi polypeptides chain including forming a bonds to form a Examples : linear sequence of side chain (R functional protein. amino acids. Alpha helix group ) Beta sheet 435 Biochemistry Team Level of protein structure 435 Biochemistry Team Secondary structure Alpha helix: - It is right-handed spiral , which side chain extend outward. - it is stabilized by hydrogen bond , which is formed between the peptide bond carbonyl oxygen and amide hydrogen. - each turn contains 3.6 amino acids.
    [Show full text]
  • Helix Stability of Oligoglycine, Oligoalanine, and Oligoalanine
    proteins STRUCTURE O FUNCTION O BIOINFORMATICS Helix stability of oligoglycine, oligoalanine, and oligo-b-alanine dodecamers reflected by hydrogen-bond persistence Chengyu Liu,1 Jay W. Ponder,1 and Garland R. Marshall2* 1 Department of Chemistry, Washington University, St. Louis, Missouri 63130 2 Department of Biochemistry and Molecular Biophysics, Washington University, St. Louis, Missouri 63130 ABSTRACT Helices are important structural/recognition elements in proteins and peptides. Stability and conformational differences between helices composed of a- and b-amino acids as scaffolds for mimicry of helix recognition has become a theme in medicinal chemistry. Furthermore, helices formed by b-amino acids are experimentally more stable than those formed by a-amino acids. This is paradoxical because the larger sizes of the hydrogen-bonding rings required by the extra methylene groups should lead to entropic destabilization. In this study, molecular dynamics simulations using the second-generation force field, AMOEBA (Ponder, J.W., et al., Current status of the AMOEBA polarizable force field. J Phys Chem B, 2010. 114(8): p. 2549–64.) explored the stability and hydrogen-bonding patterns of capped oligo-b-alanine, oligoalanine, and oligo- glycine dodecamers in water. The MD simulations showed that oligo-b-alanine has strong acceptor12 hydrogen bonds, but surprisingly did not contain a large content of 312-helical structures, possibly due to the sparse distribution of the 312-helical structure and other structures with acceptor12 hydrogen bonds. On the other hand, despite its backbone flexibility, the b- alanine dodecamer had more stable and persistent <3.0 A˚ hydrogen bonds. Its structure was dominated more by multicen- tered hydrogen bonds than either oligoglycine or oligoalanine helices.
    [Show full text]
  • Helix Capping'
    Prorein Science (1998), 721-38. Cambridge University Press. Printed in the USA. Copyright 0 1998 The Protein Society REVIEW Helix capping' RAJEEV AURORA AND GEORGE D. ROSE Department of Biophysics and Biophysical Chemistry, Johns Hopkins University School of Medicine, 725 N. Wolfe Street, Baltimore, Maryland 21205 (RECEIVED June12, 1997; ACCEPTEDJuly 9, 1997) Abstract Helix-capping motifs are specific patterns of hydrogen bonding and hydrophobic interactions found at or near the ends of helices in both proteins and peptides. In an a-helix, the first four >N- H groups and last four >C=O groups necessarily lack intrahelical hydrogen bonds. Instead, such groups are often capped by alternative hydrogen bond partners. This review enlarges our earlier hypothesis (Presta LG, Rose GD. 1988. Helix signals in proteins. Science 240:1632-1641) to include hydrophobic capping. A hydrophobic interaction that straddles the helix terminus is always associated with hydrogen-bonded capping. From a global survey among proteins of known structure, seven distinct capping motifs are identified-three at the helix N-terminus and four at the C-terminus. The consensus sequence patterns of these seven motifs, together with results from simple molecular modeling, are used to formulate useful rules of thumb for helix termination. Finally, we examine the role of helix capping as a bridge linking the conformation of secondary structure to supersecondary structure. Keywords: alpha helix; protein folding; protein secondary structure The a-helixis characterized by consecutive, main-chain, i + i - 4 apolar residues in the a-helix and its flanking turn. This hydro- hydrogen bonds between each amide hydrogen and a carbonyl phobic component of helix capping was unanticipated.
    [Show full text]
  • And Beta-Helical Protein Motifs
    Soft Matter Mechanical Unfolding of Alpha- and Beta-helical Protein Motifs Journal: Soft Matter Manuscript ID SM-ART-10-2018-002046.R1 Article Type: Paper Date Submitted by the 28-Nov-2018 Author: Complete List of Authors: DeBenedictis, Elizabeth; Northwestern University Keten, Sinan; Northwestern University, Mechanical Engineering Page 1 of 10 Please doSoft not Matter adjust margins Soft Matter ARTICLE Mechanical Unfolding of Alpha- and Beta-helical Protein Motifs E. P. DeBenedictis and S. Keten* Received 24th September 2018, Alpha helices and beta sheets are the two most common secondary structure motifs in proteins. Beta-helical structures Accepted 00th January 20xx merge features of the two motifs, containing two or three beta-sheet faces connected by loops or turns in a single protein. Beta-helical structures form the basis of proteins with diverse mechanical functions such as bacterial adhesins, phage cell- DOI: 10.1039/x0xx00000x puncture devices, antifreeze proteins, and extracellular matrices. Alpha helices are commonly found in cellular and extracellular matrix components, whereas beta-helices such as curli fibrils are more common as bacterial and biofilm matrix www.rsc.org/ components. It is currently not known whether it may be advantageous to use one helical motif over the other for different structural and mechanical functions. To better understand the mechanical implications of using different helix motifs in networks, here we use Steered Molecular Dynamics (SMD) simulations to mechanically unfold multiple alpha- and beta- helical proteins at constant velocity at the single molecule scale. We focus on the energy dissipated during unfolding as a means of comparison between proteins and work normalized by protein characteristics (initial and final length, # H-bonds, # residues, etc.).
    [Show full text]
  • DNA-Mediated Self-Assembly of Gold Nanoparticles on Protein Superhelix
    bioRxiv preprint doi: https://doi.org/10.1101/449561; this version posted October 22, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY-NC-ND 4.0 International license. DNA-mediated self-assembly of gold nanoparticles on protein superhelix Tao Zhang∗,y,z and Ingemar Andréy yDepartment of Biochemistry and Structural Biology & Center for Molecular Protein Science, Lund University, P.O. Box 124, SE-221 00 Lund, Sweden zCurrent address: Max-Planck-Institute for Intelligent Systems, Heisenbergstraße 3, D-70569 Stuttgart, Germany E-mail: [email protected] Abstract Recent advances in protein engineering have enabled methods to control the self- assembly of protein on various length-scales. One attractive application for designed proteins is to direct the spatial arrangement of nanomaterials of interest. Until now, however, a reliable conjugation method is missing to facilitate site-specific position- ing. In particular, bare inorganic nanoparticles tend to aggregate in the presence of buffer conditions that are often required for the formation of stable proteins. Here, we demonstrated a DNA mediated conjugation method to link gold nanoparticles with protein structures. To achieve this, we constructed de novo designed protein fibers based on previously published uniform alpha-helical units. DNA modification rendered gold nanoparticles with increased stability against ionic solutions and the use of com- plementary strands hybridization guaranteed the site-specific binding to the protein. The combination of high resolution placement of anchor points in designed protein assemblies with the increased control of covalent attachment through DNA binding 1 bioRxiv preprint doi: https://doi.org/10.1101/449561; this version posted October 22, 2018.
    [Show full text]
  • Folding-TIM Barrel
    Protein Folding Practical September 2011 Folding up the TIM barrel Preliminary Examine the parallel beta barrel that you constructed, noting the stagger of the strands that was needed to connect the ends of the 8-stranded parallel beta sheet into the 8-stranded beta barrel. Notice that the stagger dictates which side of the sheet is on the inside and which is on the outside. This will be key information in folding the complete TIM linear peptide into the TIM barrel. Assembling the full linear peptide 1. Make sure the white beta strands are extended correctly, and the 8 yellow helices (with the green loops at each end) are correctly folded into an alpha helix (right handed with H-bonds to the 4th ahead in the chain). 2. starting with a beta strand connect an alpha helix and green loop to make the blue-red connecting peptide bond. Making sure that you connect the carbonyl (red) end of the beta strand to the amino (blue) end of the loop-helix-loop. Secure the just connected peptide bond bond with a twist-tie as shown. 3. complete step 2 for all beta strand/loop-helix-loop pairs, working in parallel with your partners 4. As pairs are completed attach the carboxy end of the strand- loop-helix-loop to the amino end of the next strand-loop-helix-loop module and secure the new peptide bond with a twist-tie as before. Repeat until the full linear TIM polypeptide chain is assembled. Make sure all strands and helices are still in the correct conformations.
    [Show full text]
  • Predicting Protein Secondary and Supersecondary Structure
    29 Predicting Protein Secondary and Supersecondary Structure 29.1 Introduction............................................ 29-1 Background • Difficulty of general protein structure prediction • A bottom-up approach 29.2 Secondary structure ................................... 29-5 Early approaches • Incorporating local dependencies • Exploiting evolutionary information • Recent developments and conclusions 29.3 Tight turns ............................................. 29-13 29.4 Beta hairpins........................................... 29-15 29.5 Coiled coils ............................................. 29-16 Early approaches • Incorporating local dependencies • Predicting oligomerization • Structure-based predictions • Predicting coiled-coil protein interactions Mona Singh • Promising future directions Princeton University 29.6 Conclusions ............................................ 29-23 29.1 Introduction Proteins play a key role in almost all biological processes. They take part in, for example, maintaining the structural integrity of the cell, transport and storage of small molecules, catalysis, regulation, signaling and the immune system. Linear protein molecules fold up into specific three-dimensional structures, and their functional properties depend intricately upon their structures. As a result, there has been much effort, both experimental and computational, in determining protein structures. Protein structures are determined experimentally using either x-ray crystallography or nuclear magnetic resonance (NMR) spectroscopy. While
    [Show full text]
  • Lecture 7 Protein Secondary Structure Prediction
    Protein primary structure C Master Course E N DNA/Protein Structure- 20 amino acid types A generic residue Peptide bond T R E function Analysis and F B O I Prediction R O I I N N T F E O G R R M Lecture 7 SARS Protein From Staphylococcus Aureus A A 1 MKYNNHDKIR DFIIIEAYMF RFKKKVKPEV T T 31 DMTIKEFILL TYLFHQQENT LPFKKIVSDL I I 61 CYKQSDLVQH IKVLVKHSYI SKVRSKIDER V C 91 NTYISISEEQ REKIAERVTL FDQIIKQFNL E S 121 ADQSESQMIP KDSKEFLNLM MYTMYFKNII V Protein Secondary 151 KKHLTLSFVE FTILAIITSQ NKNIVLLKDL U 181 IETIHHKYPQ TVRALNNLKK QGYLIKERST 211 EDERKILIHM DDAQQDHAEQ LLAQVNQLLA Structure Prediction 241 DKDHLHLVFE Protein secondary structure Alpha-helix Beta strands/sheet Secondary Structure • An easier question – what is the secondary structure when the 3D structure is known? SARS Protein From Staphylococcus Aureus 1 MKYNNHDKIR DFIIIEAYMF RFKKKVKPEV DMTIKEFILL TYLFHQQENT SHHH HHHHHHHHHH HHHHHHTTT SS HHHHHHH HHHHS S SE 51 LPFKKIVSDL CYKQSDLVQH IKVLVKHSYI SKVRSKIDER NTYISISEEQ EEHHHHHHHS SS GGGTHHH HHHHHHTTS EEEE SSSTT EEEE HHH 101 REKIAERVTL FDQIIKQFNL ADQSESQMIP KDSKEFLNLM MYTMYFKNII HHHHHHHHHH HHHHHHHHHH HTT SS S SHHHHHHHH HHHHHHHHHH 151 KKHLTLSFVE FTILAIITSQ NKNIVLLKDL IETIHHKYPQ TVRALNNLKK HHH SS HHH HHHHHHHHTT TT EEHHHH HHHSSS HHH HHHHHHHHHH 201 QGYLIKERST EDERKILIHM DDAQQDHAEQ LLAQVNQLLA DKDHLHLVFE HTSSEEEE S SSTT EEEE HHHHHHHHH HHHHHHHHTS SS TT SS DSSP • DSSP (Dictionary of Secondary Structure of a Protein) – assigns secondary structure to proteins which have a crystal (x-ray) or NMR (Nuclear Magnetic Resonance) A more challenging task: structure Predicting secondary structure from H = alpha helix primary sequence alone B = beta bridge (isolated residue) DSSP uses hydrogen-bonding E = extended beta strand structure to assign Secondary Structure Elements (SSEs).
    [Show full text]
  • Effects of Side Chains in Helix Nucleation Differ from Helix Propagation
    Effects of side chains in helix nucleation differ from helix propagation Stephen E. Miller, Andrew M. Watkins, Neville R. Kallenbach, and Paramjit S. Arora1 Department of Chemistry, New York University, New York, NY 10003 Edited* by S. Walter Englander, University of Pennsylvania, Philadelphia, PA, and approved March 25, 2014 (received for review December 11, 2013) Helix–coil transition theory connects observable properties of the of local sequence effects (14). The ability to differentiate indi- α-helix to an ensemble of microstates and provides a foundation vidual σ values from individual s values could provide a deeper for analyzing secondary structure formation in proteins. Classical understanding of the impact of individual side chains on helix models account for cooperative helix formation in terms of an formation than provided by current models (6, 12). energetically demanding nucleation event (described by the σ con- Here, we describe an approach that estimates the population stant) followed by a more facile propagation reaction, with corre- of N-terminal tripeptide sequences organized in an α-helix sponding s constants that are sequence dependent. Extensive nucleus as a function of individual guest residues. The key studies of folding and unfolding in model peptides have led to difference between this investigation and classical measures of the determination of the propagation constants for amino acids. propensity is that our approach assesses the ability of a given However, the role of individual side chains in helix nucleation has residue to favor or disfavor nucleation; literature propensities not been separately accessible, so the σ constant is treated as in- are largely derived by measuring how the stability of a preformed dependent of sequence.
    [Show full text]
  • Structures of Proteins and Enzymes
    1 xxx-paper name? Biochemistry Enzyme structure Description of Module Subject Name Biochemstry Paper Name 14 Module Name/Title 3 Enzyme Structure Dr. Vijaya Khader Dr. MC Varadaraj 2 xxx-paper name? Biochemistry Enzyme structure 1. Objectives Look at the various components of enzyme structure Understanding the types of enzyme structures in detail 2. Concept Map 3 xxx-paper name? Biochemistry Enzyme structure 3. Description 3.1 Enzymes Enzymes are biological catalysts that increase the rate of reaction without affecting the reaction equilibrium. They work by lowering the activation energy (Ea) for a reaction, which leads to an increase in reaction rate and faster product formation. Enzymatic reactions are also characterized by high substrate and reaction specificity and fewer side reactions. Enzymes have had several applications in areas of research and development, food and feed industry, pharmaceutical industry and other industries like detergent, textile, leather etc. 3.2 Enzyme structure Enzymes have four levels of structures as shown in Fig 1. These are: Primary structure Secondary structure Tertiary structure Quaternary structure The enzyme structure ranges from a basic amino acid sequence to a three dimensional (3D) structure in a folded protein. The amino acid sequence in polypeptide chains in each enzyme is distinct and determines the three-dimensional shape. Further, it is the 3D structure of an enzyme that determines the enzyme activities. We will look at these structures in detail in the sections below. 4 xxx-paper name? Biochemistry Enzyme structure Fig 1 3.3.1 Primary structure • The sequence of amino acids in an enzyme is the primary structure.
    [Show full text]
  • Amino ACIDS PROTEINS
    Taras Shevchenko National University of Kyiv The Institute of Biology and Medicine METHODICAL POINTING from the course “Biological and bioorganic chemistry” (part 3. Amino acids and proteins) for the studens of a 1 course with English of educating Compiler – the candidate of biological sciences, the associate professor Synelnyk Tatyana Borysivna Readers: It is ratified to printing by meeting of scientific advice of The Institute of Biology and Medicine (“____”________________ 2018, protocol №____) Kyiv-2018 2 CONTENT 3.1. General information …………………………………………………….. 3 3.2. Nomenclature and classification of α-amino acids ……………. 4 3.3. Amphoteric and stereochemical properties of amino acids. Chiral carbon atom……………………………………………………………… 8 3.4. Isoelectric point of amino acid . Titration curves ……………… 9 3.4.1. The typical titration curve of amino acids with uncharged radical…………………………………………………………. 10 3.4.2. The titration curves of amino acids with charged radical ……………………………………………………………………….. 11 3.5. Chemical properties of amino acids and some methods for amino acids determination and separation…………………………….. 14 3.6. Peptide bond formation. Peptides. …………………………………. 15 3.7. Proteins. The levels of protein molecules organization ……… 16 3.7.1. Primary protein structure ……………………………………. 17 3.7.2. The secondary structure of proteins: types …………….. 18 3.7.3. Super secondary structure …………………………………… 22 3.7.4. Tertiary Structure of proteins ……………………………… 23 3.7.5. Domain structure of proteins ……………………………… 26 3.7.6. Quaternary Structure of proteins ………………………… 26 3.8. Methods of extraction and purification of proteins ………….. 28 3.8.1. Methods of extraction of proteins from cells or tissues in the dissolved state. ………………………………………………….. 28 3.8.2. Methods of separating a mixture of proteins 29 3.9.
    [Show full text]
  • Secondary Structure Assignment and Prediction •Why to Predict Secondary Structures in Proteins
    Talk overview •Secondary structure assignment Secondary structure assignment and prediction •Why to predict secondary structures in proteins • Methods to predict secondary structures in proteins • Machine learning approaches • Detailed description of several specific programs (PHD) • Performance and evaluation May 2011 Eran Eyal Automatic assignment of secondary structures to a set of protein coordinates Assignment of secondary structures to known secondary structures is a relatively simple bioinformatics task. Given exact definitions for secondary structures, all we need to do is to see which part of the structure falls within each definition α-helix Why to automatically and routinely assign secondary structures ? •Standardization •Easy visualization •Detection of structural motifs and improved sequence-structure searches •Structural alignment Β-strand •Structural classification What basic structural information is used ? q > 120° and rHO < 2.5 Ǻ •Hydrogen bond patterns •Backbone dihedral angles DSSP algorithm •The helix definition does not include the terminal residue •The so-called “Dictionary of Secondary Structure of Proteins” having the initial and final hydrogen bonds in the helix. (DSSP) by Kabsch and Sander makes its sheet and helix assignments solely on the basis of backbone-backbone •A minimal size helix is set to have two consecutive hydrogen hydrogen bonds. bonds in the helix, leaving out single helix hydrogen bonds, which are assigned as turns (state 'T'). •The DSSP method defines a hydrogen bond when the bond energy is below -0.5 kcal/mol from a Coulomb approximation •beta-sheet residues (state 'E') are defined as either having two of the hydrogen bond energy. hydrogen bonds in the sheet, or being surrounded by two hydrogen bonds in the sheet.
    [Show full text]