Triangulation of Analytic Molecular Surface

Total Page:16

File Type:pdf, Size:1020Kb

Triangulation of Analytic Molecular Surface Masaryk University Faculty of Informatics Triangulation of analytic molecular surface Bachelor’s Thesis Radoslav Mráz Brno, Spring 2018 Masaryk University Faculty of Informatics Triangulation of analytic molecular surface Bachelor’s Thesis Radoslav Mráz Brno, Spring 2018 This is where a copy of the official signed thesis assignment and a copy of the State- ment of an Author is located in the printed version of the document. Declaration Hereby I declare that this paper is my original authorial work, which I have worked out on my own. All sources, references, and literature used or ex- cerpted during elaboration of this work are properly cited and listed in com- plete reference to the due source. Radoslav Mráz Advisor: RNDr. Adam Jurčík Ph.D. i Acknowledgements I would like to thank my advisor RNDr. Adam Jurčík Ph.D. for his consulta- tions and insights throughout writing of this thesis. Moreover I would like to thank my family for supporting me in my studies. iii Abstract The goal of this thesis is to implement an algorithm for triangulating ana- lytically represented solvent-excluded molecular surface. The first part of this thesis describes related molecular surfaces, the solvent-excluded sur- face itself and significant works in this field. The second part presents an algorithm for generating a triangular mesh of the solvent-excluded surface. The last part contains results from testing of the presented algorithm. iv Keywords molecular surface, SES, solvent-excluded surface, triangulation v Contents Introduction 1 1 Molecular surfaces 3 1.1 Van der Waals surface .......................3 1.2 Solvent-accessible surface ......................3 1.3 Solvent-excluded surface ......................4 2 Analytic representation and methods of computation of SES 7 2.1 Connoly’s definition of the SES ...................7 2.2 Reduced surface ........................... 10 2.3 Contour-buildup method ...................... 10 3 Algorithm overview 13 4 Boundaries of spherical patches 15 4.1 Construction of a boundary ..................... 15 4.1.1 Convex spherical patches . 15 4.1.2 Concave spherical patches . 16 4.1.3 Nested boundaries . 17 4.2 Intersections of concave patches ................... 18 4.2.1 Finding points of intersection . 19 4.2.2 Trimming a boundary . 21 5 Triangulation of SES 23 5.1 Meshing toroidal patches ...................... 23 5.1.1 Toroidal patches . 23 5.1.2 Meshing algorithm . 23 5.1.3 Resulting mesh . 24 5.1.4 Free toroidal patches . 26 5.1.5 Self-intersecting toroidal patches . 26 5.2 Meshing spherical patches ..................... 28 5.2.1 Advancing front approach . 28 5.2.2 Initialization of the front . 29 5.2.3 Advancing of the front . 29 6 Results and testing 35 6.1 Testing ................................ 35 6.2 Results ............................... 36 vii 6.3 Limitations ............................. 37 Conclusion 41 Bibliography 43 Appendices 45 A Triangulation statistics 47 viii Introduction Visualization of molecules such as proteins is an important aspect of many scientific and industry fields. By visualizing molecules we can either study their structure, bonds between individual atoms or analyze interactions with other molecules. Scientists can use such information in order to better under- stand the function of a molecule or to design new ones. There are two types of models of molecular representations. The first type, atomistic model, represents molecules by directly depicting atoms of a molecule [1]. The second type, abstract model, shows information that might not be obvious in atomistic models. One example of an abstract model is the cartoon representation proposed by Richardson in [2]. The cartoon represen- tation shows the secondary structure of a protein. The atomistic models are further divided into two branches: bond-centric and molecular surface models [1]. Bond-centric models, such as licorice or ball-and-stick models [3], depict chemical bonds between atoms. The other branch, molecular surfaces, represent molecules by depicting the atoms that constitute a molecule. This kind of representation allows scientists to see the overall shape of the molecule, compute the surface area and volume of the molecule, but also to predict secondary structure of proteins [4]. There are two approaches of visualizing molecular surfaces. The first ap- proach uses a triangular mesh to approximate the surface of a molecule. Quality of the triangular mesh can be controlled which in turn has a di- rect impact on the computation time and memory demands. Such triangular mesh, besides viewing, can be exported into other 3D software or 3D printed. The other approach, instead of a triangular mesh, directly renders the sur- face of a molecule, e.g by ray-casting of analytically represented patches. The aim of this thesis is to implement an algorithm that generates a tri- angular mesh in order to approximate analytically represented molecular surface. Along with generating the mesh, the algorithm should also be able to handle singularities that often occur in molecular surface. The resulting triangular mesh then can be viewed directly or exported in Wavefront OBJ and STL format. This thesis consists of the following chapters. Chapter 1 describes three types of molecular surfaces—van der Waals, solvent accessible and solvent ex- cluded surface, the latter being the subject of this thesis. Chapter 2 describes the analytical representation of solvent excluded surface (SES) showing var- ious types of surface patches and how they are defined. At the end of the Chapter 2, methods of computing the SES are briefly described. Chapter 3 1 offers a short overview of the algorithm implemented in later chapters and discusses a possibility of parallelization of the algorithm. In Chapter 4 I de- scribe boundaries, elements that are used to delimit patches of the SES, and discuss their special cases. Chapter 5 consists of two sections that describe al- gorithms used to generate triangular mesh of all types of patches of the SES. Finally, the results of the implemented algorithm are presented in Chapter 6. 2 1 Molecular surfaces Molecular surfaces represent molecules either by showing the space that they occupy or the space that is accessible or inaccessible to a solvent in- teracting with them. There are various types of molecular surface represen- tations, but probably the most used ones are van der Waals(vdW), solvent- accessible(SAS) and solvent-excluded surface(SES). 1.1 Van der Waals surface The first surface I describe is the van der Waals surface (Figure 1.1a). Itisa type of space-filling model. In this model, atoms are represented as spheres with radii proportional to their van der Waals radii. The surface can then be defined as a topological boundary of the union of these spheres [5]. Thevan der Waals surface is suitable for visualizing the overall shape of the molecule and its volume. 1.2 Solvent-accessible surface Solvent-accessible surface or SAS was first defined by Lee and Richards in 1971 [6]. It is very similar to van der Waals surface with a little difference. Rather than showing how much space the molecule occupies, the purpose is to show how accessible the molecule is to other molecules. This is done by approximating the solvent that interacts with the molecule by a probe— a sphere with a certain radius (Figure 1.1a). The probe then rolls over the atoms, always maintaining contact with at least one atom, and its center traces the accessible surface from the solvent’s point of view. In other words, the purpose of SAS is to show all regions around the molecule that can be accessed by the solvent molecule [1]. Solvent-accessible surface in general is computed in the same way as computing van der Waals surface but each atom is assigned radius equal to the sum of its radius and the radius of the probe [6]. Therefore, van der Waals surface and solvent-accessible surface are in a sense identical and both can be visualized using the same algorithm. 3 1. Molecular surfaces (a) Van der Waals surface in red color (b) Solvent-accessible surface in blue and solvent-accessible surface in blue and solvent-excluded surface in green color. color. Figure 1.1: Three types of molecular surfaces. 1.3 Solvent-excluded surface Solvent-excluded surface, or the molecular surface was first introduced by Richards in 1977 [7]. The term solvent-excluded surface was coined by Greer and Bush in [8]. As with SAS, the purpose of SES is to show the surface of the molecule in relation to the solvent molecule that interacts with it. In [7], Richards pro- posed two surface types that SES consists of. The first is contact surface and it occurs by rolling the probe over the sur- face of atom. That means the probe has contact with only one atom at a moment. Contact surface is, in fact, subset of the van der Waals surface. The second type of surface is called reentrant surface. This type of sur- face does not occur in the vdW surface or SAS. It occurs when the probe is tangent to more than one atom, and it represents surface beyond which the probe cannot penetrate more "into" the molecule (see Figure 1.1b). There are two types of patches contributing to reentrant surface: concave spherical triangles—occur when the probe has contact with 3 atoms at a mo- ment; and toroidal patches—occur when the probe has contact with two atoms at a moment(see Figure 1.2). Computation and subsequent visualization of SES is substantially more complex because of the presence of more than one type of surface patches and also because special cases often occur in this surface and handling them requires additional effort. More specifically, the special cases, also called sin- gularities, are intersections of adjacent concave triangles and self-intersecting 4 1. Molecular surfaces Figure 1.2: Solvent-excluded surface of crambin molecule(PDB ID: 1CRN).
Recommended publications
  • Van Der Waals Force & Hydrophobic Effect
    International Journal of Advanced Computer Technology (IJACT) ISSN:2319-7900 Van der Waals Force & Hydrophobic Effect Park, Ho-Min, Grade 12, Ewell Castle School , UK. [Abstract] polar atoms interacting with each other, Deybe Force Van der Waals forces are electrostatic forces. They Effect which caused between a molecule with is polar, operate not only between polar molecules but also and one that is not, and London Dispersal Effect that acts between electrically neutral atoms and molecules. This is between two non-polar molecules/atoms[3]. Because the because the movement of electrons in the outer shell of electrons around each molecule/atom repel each other, it the atoms temporarily leads to charge displacements – creates a redistribution of charge, inducing an and to so-called polarization. Charged areas with instantaneous dipole moment[3]. Dispersion forces are different signs are then attracted to one another – and caused by fluctuations in the electron distribution within therefore ensure an attraction between two atoms, even if molecules or atoms. Since all atoms and molecules have these are electrically neutral overall. The van der Waals electrons, they all have dispersion forces. The electrons force is an electromagnetic interaction between in an atom or molecule may, at any one instant, be correlated fluctuating charges on two electrically neutral unevenly distributed[4]. The purpose of this study is to surfaces. As the surfaces approach more closely, the explore mechanisms of van der Waals forces forces and force increases as fluctuations of shorter and shorter to identify the potential on the scientific field. length scale come into play, but ultimately the force will saturate when the surfaces are so close that the even shortest wavelength charge fluctuations are included.
    [Show full text]
  • Rnase Refolding • General Features of Globular Proteins • Interior Packing
    Lecture Notes - 3 7.24/7.88J/5.48J The Protein Folding and Human Disease • Reprise RNase refolding • General Features of Globular proteins • Interior Packing Rnase Refolding We can cartoon the experiments: Assume that reduced form is unfolded and populates an ensemble of unfolded states in 8M urea: [Unfolded] [Intermediate] [Native] [U] Rapidly exchanging statistical ensemble of random coils [I] ??? [N] Native fold, $ S-S bonds, 1 out of 105 possible sets of S-S bonds [Aggregated] Non-native (no enzymatic activity), non-native (scrambled) disulfide bonds. At the end of the reaction we have native state Soluble inactive – misfolded or perhaps small oligomers Precipitated: Anfinsen showed that these were S-S bonded network = he called “scrambled” Critical question is nature of the intermediates as go from here to there: If there was a sequence in which these bonds formed, and one could figure out the sequence or pathway, it might give you considerable information on the steps in the folding pathway. So certainly we need to understand native-fold, and interactions that determine it, stabilize it once formed; However this does not solve problem We will return to the question after reviewing the general anatomy of globular proteins, which will occupy most of next week. 1 General features of 3-D structures of solved proteins; Globular, Soluble proteins: A. Isolation and Crystallization The first crystals of proteins sufficiently large and ordered to diffract X-rays were prepared of the digestive enzyme pepsin: Bernal, J. D., and Dorothy Crowfoot. Nature (1934): 133, 794. This was followed by crystals of insulin, Lactalbumin, hemoglobin, and chymotrypsin: Bernal, Fankuchen, and Perutz (1938) The rise to power of the Nazis in Germany and Italy and the outbreak of war brought all these studies to a halt.
    [Show full text]
  • How Fluids Unmix. Discoveries by the School of Van Der Waals and Kamerlingh Onnes, ,  ---
    4671 Sengers Voorwerkb 23-09-2002 09:17 Pagina I How fluids unmix 4671 Sengers Voorwerkb 23-09-2002 09:17 Pagina II History of Science and Scholarship in the Netherlands, volume The series History of Science and Scholarship in the Netherlands presents studies on a variety of subjects in the history of science, scholarship and academic insti- tutions in the Netherlands. Titles in this series . Rienk Vermij, The Calvinist Copernicans. The reception of the new astronomy in the Dutch Republic, -. , --- . Gerhard Wiesenfeldt, Leerer Raum in Minervas Haus. Experimentelle Natur- lehre an der Universität Leiden, -. , --- . Rina Knoeff, Herman Boerhaave (-). Calvinist chemist and physician. , --- . Johanna Levelt Sengers, How fluids unmix. Discoveries by the School of Van der Waals and Kamerlingh Onnes, , --- Editorial Board K. van Berkel, University of Groningen W.Th.M. Frijhoff, Free University of Amsterdam A. van Helden, Utrecht University W.E. Krul, University of Groningen A. de Swaan, Amsterdam School of Sociological Research R.P.W. Visser, Utrecht University 4671 Sengers Voorwerkb 23-09-2002 09:17 Pagina III How fluids unmix Discoveries by the School of Van derWaals and Kamerlingh Onnes Johanna Levelt Sengers , Koninklijke Nederlandse Akademie van Wetenschappen, Amsterdam 4671 Sengers Voorwerkb 23-09-2002 09:17 Pagina IV © Royal Netherlands Academy of Arts and Sciences No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photo- copying, recording or otherwise, without the prior written permission of the publisher. Edita , P.O. BOX , Amsterdam, the Netherlands [email protected], www.knaw.nl/edita --- The paper in this publication meets the requirements of « -norm () for permanence This study was undertaken with the support of the Koninklijke Hollandsche Maatschappij der Wetenschappen (‘Royal Holland Society of Sciences and Humanities’) as part of its 250th anniver- sary celebrations in 2002.
    [Show full text]
  • Viewing Protein 3D Structures with Deep View
    Babraham Bioinformatics Viewing Protein 3D Structures with Deep View A quick guide to the visualisation components of Deep View Version 1.3 (public) Viewing Protein 3D Structures with Deep View 2 Licence This manual is © 2007-8, Simon Andrews. This manual is distributed under the creative commons Attribution-Non-Commercial-Share Alike 2.0 licence. This means that you are free: • to copy, distribute, display, and perform the work • to make derivative works Under the following conditions: • Attribution. You must give the original author credit. • Non-Commercial. You may not use this work for commercial purposes. • Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a licence identical to this one. Please note that: • For any reuse or distribution, you must make clear to others the licence terms of this work. • Any of these conditions can be waived if you get permission from the copyright holder. • Nothing in this license impairs or restricts the author's moral rights. Full details of this licence can be found at http://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode Viewing Protein 3D Structures with Deep View 3 Introduction Whilst much useful information about a protein can be derived from looking at both DNA and protein sequence information the only way to get a complete understanding of its function is by looking at its 3D structure. Proteins operate in a 3D environment and by looking at them in this context it is possible to explain observations which could not be accounted for by other analyses.
    [Show full text]
  • Molecular Dynamics Study of the Dependence of Water Solvation Free Energy on Solute Curvature and Surface Area
    J. Phys. Chem. 1995, 99, 2885-2892 2885 Molecular Dynamics Study of the Dependence of Water Solvation Free Energy on Solute Curvature and Surface Area A. Wallqvist? and B. J. Berne* Department of Chemistry and Center for Biomolecular Simulation, Columbia University, New York, New York 10027 Received: August 5, 1994@ We have investigated changes in water properties when deforming an initially spherical cavity into an oblate ellipsoid of equal volume in liquid water. The purely hydrophobic cavity has an initial thermal radius of 6.45 A and is flattened out to an oblate ellipse with a thickness corresponding to one layer of methane molecules. The water-solute interactions are modeled by a repulsive, single-site Gay-Beme potential that preserves the volume of the solute; water-water interactions are modeled using a pairwise additive potential. The Gibbs free energy change, AG, of the aqueous solution was calculated using thermodynamic perturbation theory. Comparison with the process of radially expanding a sphere shows that the free energy change cannot consistently be interpreted as being solely proportional to an exposed solute area but contains terms involving the curvature of the solute. As the meanings of exposed surface area and molecular curvature are not well- defined concepts on the microscopic length scale, these terms have to be defined to yield a consistent interpretation of the free energy data. The microscopic origin of the curvature dependence of the free energy is traced back to changes in water-water interactions in the region immediately surrounding the solute. The process of deforming the liquid around the hydrophobic pocket was found to be dominated by entropic contributions.
    [Show full text]
  • Equilibrium Critical Phenomena in Fluids and Mixtures
    : wil Phenomena I Fluids and Mixtures: 'w'^m^ Bibliography \ I i "Word Descriptors National of ac \oo cop 1^ UNITED STATES DEPARTMENT OF COMMERCE • Maurice H. Stans, Secretary NATIONAL BUREAU OF STANDARDS • Lewis M. Branscomb, Director Equilibrium Critical Phenomena In Fluids and Mixtures: A Comprehensive Bibliography With Key-Word Descriptors Stella Michaels, Melville S. Green, and Sigurd Y. Larsen Institute for Basic Standards National Bureau of Standards Washington, D. C. 20234 4. S . National Bureau of Standards, Special Publication 327 Nat. Bur. Stand. (U.S.), Spec. Publ. 327, 235 pages (June 1970) CODEN: XNBSA Issued June 1970 For sale by the Superintendent of Documents, U.S. Government Printing Office, Washington, D.C. 20402 (Order by SD Catalog No. C 13.10:327), Price $4.00. NATtONAL BUREAU OF STAHOAROS AUG 3 1970 1^8106 Contents 1. Introduction i±i^^ ^ 2. Bibliography 1 3. Bibliographic References 182 4. Abbreviations 183 5. Author Index 191 6. Subject Index 207 Library of Congress Catalog Card Number 7O-6O632O ii Equilibrium Critical Phenomena in Fluids and Mixtures: A Comprehensive Bibliography with Key-Word Descriptors Stella Michaels*, Melville S. Green*, and Sigurd Y. Larsen* This bibliography of 1088 citations comprehensively covers relevant research conducted throughout the world between January 1, 1950 through December 31, 1967. Each entry is charac- terized by specific key word descriptors, of which there are approximately 1500, and is indexed both by subject and by author. In the case of foreign language publications, effort was made to find translations which are also cited. Key words: Binary liquid mixtures; critical opalescence; critical phenomena; critical point; critical region; equilibrium critical phenomena; gases; liquid-vapor systems; liquids; phase transitions; ternairy liquid mixtures; thermodynamics 1.
    [Show full text]
  • 1301 Calculation of Molecular Volumes and Areas for Structures Of
    __ ~~ ~~ - turc; instcad, thcy arc rcitcratcd in hierarchic tashion ranging from thc For the purpose of this discussion we shall conccntrntc on thc dcfini- whole protein monomer through supcrscconditty s(ructurcs down to indi- tion and calculation of certain geometrical volumes and areas that can bc vidual helices and slrmds. derived from high-resolution structural data. No attempt will be made to The concept of a domain is subject to reinterpretation when consid- give a critical discussion of the use (or potential misuse) of these values. ered in the broader context of its molecular hierarchy. The conventional , .._ The following basic input data are required: large domains cited in the literature (near the top of the hierarchy) are seen to be structural composites, with subparts that are domains in their 1. The list of Cartesian coordinates of the atom centers. own right. Thus, the large, spatially distinct chain segments that can be 2. One or more lists of attributes for each atom: resolved within a protein mayno1 represent strictly autonomous units. a. Assigned van der Waals radii for each atom (required in most but may arise instead in consequence of a concluding step in thc scqucn- procedures). tial folding process. b. Assignedcovalent radius Tor each atom (uscdepends on thc volume algorithm selected). c. Covalent connectivity (needed if b is used, and also lo assemble Acknowledgments atoms into reasonable packing groups) X-Ray coordinafes were provided by the Urookhaven Dak~ U;lnk.!v The work was sup- 3. Choice of radius for a spherical probe. ported by PHD Grant 29458 and by an NIH Research Career Development hwt~rd.
    [Show full text]
  • Reports: a Review Journal
    Materials Science and Engineering, R16 (1996) 97-159 Reports: A Review Journal ..,,...,.,,.,..,.....v.v,,:,:.:,:.:.:.:.:.:.:.:.;.:.:.:.:.; Interfacial interaction between low-energy surfaces Manoj K. Chaudhury Department of Chemical Engineering, Lehigh University, Bethlehem, PA 18015, USA Received 31 March 1995; accepted in final form 16 April 1995 Abstract This review is concerned primarily with the correlation between the interfacial interactions and the con- stitutive properties of low-energy organic surfaces. It starts with a discussion on the estimation of the surface free energy of organic solids from contact angles, followed by a review of the surface energetics and adhesion. The experimental measurements of surface free energy, in most cases, are themselves dependent upon the specific models of interfacial energetics and therefore are indirect. A direct method of estimating adhesion and surface free energy is based on contact mechanics, which measures the deformation produced on contacting elastic semispheres under the influence of surface forces and extemaI loads. Since the equilibrium is described by the balance of the elastic and surface forces of the system, the load-deformationdata can be translated directly to estimate the adhesion and surface free energies. In most cases however, the contact deformations obtained from the loading and unloading cycles exhibit hysteresis, which are sensitive to the structure and chemical compositions of the interfaces. For non-hysteretic systems, the surface free energies obtained from these contact deformations compare well with the values obtained from contact angles. The application of this method to the studies of dispersion and hydrogen-bonding interaction is reviewed. Keywords: Surface interactions; Interfacial interactions; Adhesion; Hysteresis; Contact deformation; Friction 1.
    [Show full text]
  • Divide-And-Conquer Strategy for Large-Scale Eulerian Solvent Excluded Surface
    Divide-and-Conquer Strategy for Large-Scale Eulerian Solvent Excluded Surface Rundong Zhao1, Menglun Wang2, Yiying Tong1,∗ Guo-Wei Wei2;3;4y 1 Department of Computer Science and Engineering, Michigan State University, MI 48824, USA. 2 Department of Mathematics, Michigan State University, MI 48824, USA. 3 Department of Electrical and Computer Engineering, Michigan State University, MI 48824, USA. 4 Department of Biochemistry and Molecular Biology, Michigan State University, MI 48824, USA. August 31, 2018 Abstract Motivation: Surface generation and visualization are some of the most important tasks in biomolecular modeling and computation. Eulerian solvent excluded surface (ESES) software provides analytical solvent excluded surface (SES) in the Cartesian grid, which is necessary for simulating many biomolecular electrostatic and ion channel models. However, large biomolecules and/or fine grid resolutions give rise to excessively large memory requirements in ESES construction. We introduce an out-of-core and parallel algorithm to improve the ESES software. Results: The present approach drastically improves the spatial and temporal efficiency of ESES. The memory footprint and time complexity are analyzed and empirically veri- fied through extensive tests with a large collection of biomolecule examples. Our results show that our algorithm can successfully reduce memory footprint through a straightfor- ward divide-and-conquer strategy to perform the calculation of arbitrarily large proteins on a typical commodity personal computer. On multi-core computers or clusters, our algorithm can reduce the execution time by parallelizing most of the calculation as disjoint subprob- lems. Various comparisons with the state-of-the-art Cartesian grid based SES calculation were done to validate the present method and show the improved efficiency.
    [Show full text]
  • Generating Triangulated Macromolecular Surfaces by Euclidean Distance Transform
    Generating Triangulated Macromolecular Surfaces by Euclidean Distance Transform Dong Xu1,2, Yang Zhang1,2* 1 Center for Computational Medicine and Bioinformatics, University of Michigan, Ann Arbor, Michigan, United States of America, 2 Center for Bioinformatics and Department of Molecular Bioscience, University of Kansas, Lawrence, Kansas, United States of America Abstract Macromolecular surfaces are fundamental representations of their three-dimensional geometric shape. Accurate calculation of protein surfaces is of critical importance in the protein structural and functional studies including ligand-protein docking and virtual screening. In contrast to analytical or parametric representation of macromolecular surfaces, triangulated mesh surfaces have been proved to be easy to describe, visualize and manipulate by computer programs. Here, we develop a new algorithm of EDTSurf for generating three major macromolecular surfaces of van der Waals surface, solvent-accessible surface and molecular surface, using the technique of fast Euclidean Distance Transform (EDT). The triangulated surfaces are constructed directly from volumetric solids by a Vertex-Connected Marching Cube algorithm that forms triangles from grid points. Compared to the analytical result, the relative error of the surface calculations by EDTSurf is ,2–4% depending on the grid resolution, which is 1.5–4 times lower than the methods in the literature; and yet, the algorithm is faster and costs less computer memory than the comparative methods. The improvements in both accuracy and speed of the macromolecular surface determination should make EDTSurf a useful tool for the detailed study of protein docking and structure predictions. Both source code and the executable program of EDTSurf are freely available at http://zhang.
    [Show full text]
  • Thomas W. Shattuck Department of Chemistry Colby College Waterville, Maine 04901 2
    Thomas W. Shattuck Department of Chemistry Colby College Waterville, Maine 04901 2 Colby College Molecular Mechanics Tutorial Introduction September 2008 Thomas W. Shattuck Department of Chemistry Colby College Waterville, Maine 04901 Please, feel free to use this tutorial in any way you wish , provided that you acknowledge the source and you notify us of your usage. Please notify us by e-mail at [email protected] or at the above address. This material is supplied as is, with no guarantee of correctness. If you find any errors, please send us a note. 3 Table of Contents Introduction to Molecular Mechanics Section 1: Steric Energy Section 2: Enthalpy of Formation Section 3: Comparing Steric Energies Section 4: Energy Minimization Section 5: Molecular Dynamics Section 6: Distance Geometry and 2D to 3D Model Conversion Section 7: Free Energy Perturbation Theory, FEP Section 8: Continuum Solvation Electrostatics Section 9: Normal Mode Analysis Section 10: Partial Atomic Charges An accompanying manual with exercises specific to MOE is available at: http://www.colby.edu/chemistry/CompChem/MOEtutor.pdf 4 Introduction to Molecular Mechanics Section 1 Summary The goal of molecular mechanics is to predict the detailed structure and physical properties of molecules. Examples of physical properties that can be calculated include enthalpies of formation, entropies, dipole moments, and strain energies. Molecular mechanics calculates the energy of a molecule and then adjusts the energy through changes in bond lengths and angles to obtain the minimum energy structure. Steric Energy A molecule can possess different kinds of energy such as bond and thermal energy. Molecular mechanics calculates the steric energy of a molecule--the energy due to the geometry or conformation of a molecule.
    [Show full text]
  • Model of Specific Complex Between Catabolite Gene Activator
    Proc. Nati. Acad. Sci. USA Vol. 81, pp. 3973-3977, July 1984 Biochemistry Model of specific complex between catabolite gene activator protein and B-DNA suggested by electrostatic complementarity (protein-DNA specificity/DNA bending/x-ray crystallography) IRENE T. WEBER AND THOMAS A. STEITZ Department of Molecular Biophysics and Biochemistry, Yale University, New Haven, CT 06511 Communicated by Frederic M. Richards, February 24, 1984 ABSTRACT Calculation of the electrostatic potential en- that abolish its ability to activate transcription (16). Thus, it ergy surfaces of Escherichia coli catabolite gene activator pro- is likely that the two-helix motif is directly involved in DNA tein (CAP) dimer suggests a model for the complex between sequence recognition. A detailed model of cro interacting CAP and a specific DNA sequence. The positive electrostatic with its operator DNA has been presented (17), and less de- charge density of CAP lies on the two COOH-terminal do- tailed models for CAP (18) and XcI interaction (19) have been maips and about 20-30 A from the molecular 2-fold axis. As- published. We conclude here that all three proteins interact suming that the 2-fold axes of the CAP dimer and the DNA to with DNA in related, though not identical, ways. which it binds are coincident, the positions of the positive elec- McKay and Steitz (6) noted that the shape of the a-carbon trostatic potential surfaces strongly suggest the rotational ori- backbone structure of CAP is complementary to the struc- entation of the DNA relative to the protein. A specific complex ture of a left-handed B-DNA, and they suggested that CAP between CAP and its DNA binding site in the lac operon has might bind to left-handed B-DNA with one protruding a-he- been built with the DNA in this orientation.
    [Show full text]