Downloaded from Ftp://Ftp.Ncbi.Nlm.Nih.Gov/Pubchem/ Helps That the Sketcher Can Be Operated Without Resorting CACTVS

Total Page:16

File Type:pdf, Size:1020Kb

Downloaded from Ftp://Ftp.Ncbi.Nlm.Nih.Gov/Pubchem/ Helps That the Sketcher Can Be Operated Without Resorting CACTVS Journal of Cheminformatics Software Open Access The PubChem chemical structure sketcher Wolf D Ihlenfeldt1, Evan E Bolton2 and Stephen H Bryant*2 Address: 1Xemistry GmbH, Hainholzweg 11, D-61462 Königstein, Germany and 2National Center for Biotechnology Information, National Library of Medicine, National Institutes of Health, Department of Health and Human Services, 8600 Rockville Pike, Bethesda, MD 20894, USA Email: Wolf D Ihlenfeldt - [email protected]; Evan E Bolton - [email protected]; Stephen H Bryant* - [email protected] * Corresponding author Published: 17 December 2009 Received: 8 October 2009 Accepted: 17 December 2009 Journal of Cheminformatics 2009, 1:20 doi:10.1186/1758-2946-1-20 This article is available from: http://www.jcheminf.com/content/1/1/20 © 2009 Ihlenfeldt et al; licensee BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. Abstract PubChem is an important public, Web-based information source for chemical and bioactivity information. In order to provide convenient structure search methods on compounds stored in this database, one mandatory component is a Web-based drawing tool for interactive sketching of chemical query structures. Web-enabled chemical structure sketchers are not new, being in existence for years; however, solutions available rely on complex technology like Java applets or platform-dependent plug-ins. Due to general policy and support incident rate considerations, Java- based or platform-specific sketchers cannot be deployed as a part of public NCBI Web services. Our solution: a chemical structure sketching tool based exclusively on CGI server processing, client-side JavaScript functions, and image sequence streaming. The PubChem structure editor does not require the presence of any specific runtime support libraries or browser configurations on the client. It is completely platform-independent and verified to work on all major Web browsers, including older ones without support for Web2.0 JavaScript objects. Introduction NCBI Web services. For these reasons, NCBI Web pages The National Center for Biotechnology Information traditionally allow only the use of basic HTML and JavaS- (NCBI) http://www.ncbi.nlm.nih.gov is widely known for cript on the client, CGI/FCGI processes on the server, and its cluster of literature, biology, genomics, and chemistry nothing more. databases which are freely accessible on the Web [1]. These databases register many tens of millions of hits per This approach has not been a severe limitation for the day from millions of users accessing the site via a broad operation of the classic collection of databases served by range of Web browsers and operating system platforms. NCBI. However, with the addition of the PubChem[2] From experience gained in more than a decade of opera- suite of databases, an obvious problem arose. Chemical tion, NCBI has developed a set of principles concerning structure databases cannot be readily queried by structure what kind of client-side technology can be deployed as a in a reasonable fashion using purely textual input and part of its Web services. These help to prevent access or standard HTML form elements. Users of chemical struc- support issues, specifically those pertaining to configura- ture databases demand the capability to search by full- tion or installation of the user's Internet access tools. structure or substructure, with a graphical rendition of the Therefore, any technology which cannot be expected to query structure as input. Fragment name search, externally work reliably with a standard client browser installation generated and pasted SMILES/SMARTS[3]strings, or right out of the box, typically cannot be used in public upload of query files drawn with stand-alone chemical Page 1 of 9 (page number not for citation purposes) Journal of Cheminformatics 2009, 1:20 http://www.jcheminf.com/content/1/1/20 structure drawing programs are awkward procedures and structure editor onto a server CGI, and to send a dynami- do not yield a satisfactory user experience. It became very cally generated sequence of images with the evolving clear that the PubChem structure search system needed a structure back to the client browser, but, unlike Daylight method to allow users to draw their query structure inter- Grins, the editor behaves much like an interactive applica- actively, in an integrated fashion, and without the need of tion with mouse movements being tracked as they are external software. being made, rather than requiring the user click on an image to register their action. This type of software config- This is, of course, not a new problem. Most of the structure uration would not require any applets or plug-ins on the databases on the Web already have graphical structure client and appeared to be feasible on any browser sup- input tools. These traditionally come in two styles: Java porting the display of images and basic JavaScript func- applets and browser plug-ins. A Java applet requires that tions the client browser has a functional Java virtual machine installed and correctly configured. While this may be a The WebME editor from Molinspiration, with a design condition easily satisfied by most browsers, there will very similar to the PubChem sketcher, was released after always be some fraction where an issue may crop up. For the PubChem sketcher had been publicly deployed for example, if only one in ten thousand of NCBI's two mil- several months. At the time of writing, it re-used functions lion world-wide users per day encounters and reports such of the portable JavaScript mouse event code originally an issue, two hundred user requests will ensue, distracting written by us for the PubChem Sketcher. This code re-use and diluting support capabilities. So, while there are quite is not problematic - the sketcher JavaScript components a number of capable Java-based structure editors such as are US Government Work in the public domain. We have JME[4], JChemPaint[5]http://sourceforge.net/projects/ been informed that the current version of this software is jchempaint/, JmolDraw[6], MCDL[7], SDA[8], or Mar- now relying on a different event catching mechanism. vin[9], the use of any of these for PubChem was not pos- sible. Relying on plug-ins such as the one from The bandwidth requirements for this model are not exces- ChemDraw[10], is even more problematic because plug- sive. Essentially, the client needs to capture and send ins are platform-dependent, and there are (to our knowl- mouse events on an image area (not more than a couple edge) no free chemical structure editor plug-ins which can of dozen bytes per second), and to receive a sequence of connect to arbitrary sites. images. Since typical chemical structure drawings consist mostly of a monochrome background, with sparse mono- A very recent trend are first attempts to implement chem- chrome lines and letters, these images were expected to ical structure sketchers purely based on advanced client- compress very well. They do not exceed a couple of kilo- side JavaScript functionality, without required server bytes for a reasonable-sized drawing area. Even with four interaction. One example for this approach is jsmoledi- or five image updates per second, the required receiver tor[11]. Disadvantages of this approach are that these bandwidth would thus not exceed some ten kilobytes per applications only work on very recent browser releases second. This poses certainly no problem for Internet and make necessary limitations in the feature set. For access via broadband and could be, after some throttling example, 2D-layout cleanup and import/export of various of the data stream, acceptable even for dial-up via tradi- chemical file formats typically involve a rather large code tional phone line or ISDN connections. It is comparable base to implement them. Sending a large amount of Java- to the bandwidth requirements of Internet radio or Script code to a browser client in a dynamic per-session telephony, and certainly far less than streaming video. A fashion is not currently feasible. Nevertheless, it is not segmentation of the drawing area into panels in order to unlikely that future Web sketchers will use more and more further reduce the amount of data sent to the client was JavaScript client-side intelligence and rely on server-side considered, but not deemed necessary after these initial functions only for more demanding computational tasks. calculations. Design Considerations The server responsible for the update of the images must Facing restrictions on the use of Java or platform-specific be able to process multiple events per second in order to solutions, we decided to go a completely new route in guarantee a satisfactory user experience. Users expect implementing a full featured, dynamically interactive dynamic feedback as it is provided in standard stand- Web-based structure editor. Like the approach pioneered alone structure editors, such as continuously updated by in internal CIBA project[12] and then also taken up, bond lines following the mouse cursor. Because of the according to one of the reviewers as a direct result of see- rapid sequence of events, the server CGI application has to ing the CIBA prototype, by Daylight Grins http:// be of the FastCGI (FCGI)[13] variant, as even the 100 ms www.daylight.com/daycgi/testgrins, we considered to start-up overhead of a classical CGI to process only an move all the chemical structure processing functions of a individual event would be prohibitive. Page 2 of 9 (page number not for citation purposes) Journal of Cheminformatics 2009, 1:20 http://www.jcheminf.com/content/1/1/20 The general rules for the deployment of Web applications the sketcher deployed at NCBI in order to integrate the at NCBI also require robustness and redundancy with fail- application into the PubChem environment.
Recommended publications
  • Practical Chemoinformatics Muthukumarasamy Karthikeyan • Renu Vyas
    Practical Chemoinformatics Muthukumarasamy Karthikeyan • Renu Vyas Practical Chemoinformatics 1 3 Muthukumarasamy Karthikeyan Renu Vyas Digital Information Resource Centre Scientist (DST) National Chemical Laboratory Division of Chemical Engineering and Pune Process Development India National Chemical Laboratory Pune India ISBN 978-81-322-1779-4 ISBN 978-81-322-1780-0 (eBook) DOI 10.1007/978-81-322-1780-0 Springer New Delhi Dordrecht Heidelberg London New York Library of Congress Control Number: 2014931501 © Springer India 2014 This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recita- tion, broadcasting, reproduction on microfilms or in any other physical way, and transmission or infor- mation storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar meth- odology now known or hereafter developed. Exempted from this legal reservation are brief excerpts in connection with reviews or scholarly analysis or material supplied specifically for the purpose of being entered and executed on a computer system, for exclusive use by the purchaser of the work. Duplica- tion of this publication or parts thereof is permitted only under the provisions of the Copyright Law of the Publisher’s location, in its current version, and permission for use must always be obtained from Springer. Permissions for use may be obtained through RightsLink at the Copyright Clearance Center. Violations are liable to prosecution under the respective Copyright Law. The use of general descriptive names, registered names, trademarks, service marks, etc. in this publica- tion does not imply, even in the absence of a specific statement, that such names are exempt from the relevant protective laws and regulations and therefore free for general use.
    [Show full text]
  • Designing Universal Chemical Markup (UCM) Through the Reusable Methodology Based on Analyzing Existing Related Formats
    Designing Universal Chemical Markup (UCM) through the reusable methodology based on analyzing existing related formats Background: In order to design concepts for a new general-purpose chemical format we analyzed the strengths and weaknesses of current formats for common chemical data. While the new format is discussed more in the next article, here we describe our software s t tools and two stage analysis procedure that supplied the necessary information for the n i r development. The chemical formats analyzed in both stages were: CDX, CDXML, CML, P CTfile and XDfile. In addition the following formats were included in the first stage only: e r P CIF, InChI, NCBI ASN.1, NCBI XML, PDB, PDBx/mmCIF, PDBML, SMILES, SLN and Mol2. Results: A two stage analysis process devised for both XML (Extensible Markup Language) and non-XML formats enabled us to verify if and how potential advantages of XML are utilized in the widely used general-purpose chemical formats. In the first stage we accumulated information about analyzed formats and selected the formats with the most general-purpose chemical functionality for the second stage. During the second stage our set of software quality requirements was used to assess the benefits and issues of selected formats. Additionally, the detailed analysis of XML formats structure in the second stage helped us to identify concepts in those formats. Using these concepts we came up with the concise structure for a new chemical format, which is designed to provide precise built-in validation capabilities and aims to avoid the potential issues of analyzed formats.
    [Show full text]
  • Notes on OLEX2
    Notes on OLEX2 Updated on 12 January 2018,at 09:05. Olex2 v1.2-dev © OlexSys Ltd. 2004 – 2016 Compilation Info: 2017.07.20 svn.r3457 MSC:150030729 on WIN64, Python: 2.7.5, wxWidgets: 3.1.0 for OlexSys Ilia A. Guzei 2124 Chemistry Department, University of Wisconsin-Madison, 1101 University Ave, Madison, WI 53706 USA. This is work in progress. You are encouraged to e-mail me ([email protected]) your comments, corrections, and suggestions. Many thanks to Nattamai Bhuvanesh, Brian Dolinar, Oleg Dolomanov, Dean Johnston, Horst Puschmann, Amy Sarjeant, Charlotte Stern, for proof- reading, suggestions, and comments. I have also borrowed from Martin Lutz, Len Barbour, Richard Staples and Tony Linden. OLEX2 Manual Table of Content Table of Content ........................................................................................................................... 2 How to install OLEX2 under Windows .......................................................................................... 3 How to install OLEX2 on a Mac .................................................................................................... 6 Installing and using PLATON on a Mac ........................................................................................ 8 How to get OLEX2 to use PLATON ............................................................................................ 11 About program OLEX2 ................................................................................................................ 11 Keyboard shortcuts .....................................................................................................................
    [Show full text]
  • Visualizing 3D Molecular Structures Using an Augmented Reality App
    Visualizing 3D molecular structures using an augmented reality app Kristina Eriksen, Bjarne E. Nielsen, Michael Pittelkow 5 Department of Chemistry, University of Copenhagen, Universitetsparken 5, DK-2100 Copenhagen, Denmark. E-mail: [email protected] ABSTRACT 10 We present a simple procedure to make an augmented reality app to visualize any 3D chemical model. The molecular structure may be based on data from crystallographic data or from computer modelling. This guide is made in such a way, that no programming skills are needed and the procedure uses free software and is a way to visualize 3D structures that are normally difficult to comprehend in the 2D 15 space of paper. The process can be applied to make 3D representation of any 2D object, and we envisage the app to be useful when visualizing simple stereochemical problems, when presenting a complex 3D structure on a poster presentation or even in audio-visual presentations. The method works for all molecules including small molecules, supramolecular structures, MOFs and biomacromolecules. GRAPHICAL ABSTRACT 20 KEYWORDS Augmented reality, Unity, Vuforia, Application, 3D models. 25 Journal 5/18/21 Page 1 of 14 INTRODUCTION Conveying information about three-dimensional (3D) structures in two-dimensional (2D) space, such as on paper or a screen can be difficult. Augmented reality (AR) provides an opportunity to visualize 2D 30 structures in 3D. Software to make simple AR apps is becoming common and ranges of free software now exist to make customized apps. AR has transformed visualization in computer games and films, but the technique is distinctly under-used in (chemical) science.1 In chemical science the challenge of visualizing in 3D exists at several levels ranging from teaching of stereo chemistry problems at freshman university level to visualizing complex molecular structures at 35 the forefront of chemical research.
    [Show full text]
  • Chemdoodle Web Components: HTML5 Toolkit for Chemical Graphics, Interfaces, and Informatics Melanie C Burger1,2*
    Burger. J Cheminform (2015) 7:35 DOI 10.1186/s13321-015-0085-3 REVIEW Open Access ChemDoodle Web Components: HTML5 toolkit for chemical graphics, interfaces, and informatics Melanie C Burger1,2* Abstract ChemDoodle Web Components (abbreviated CWC, iChemLabs, LLC) is a light-weight (~340 KB) JavaScript/HTML5 toolkit for chemical graphics, structure editing, interfaces, and informatics based on the proprietary ChemDoodle desktop software. The library uses <canvas> and WebGL technologies and other HTML5 features to provide solutions for creating chemistry-related applications for the web on desktop and mobile platforms. CWC can serve a broad range of scientific disciplines including crystallography, materials science, organic and inorganic chemistry, biochem- istry and chemical biology. CWC is freely available for in-house use and is open source (GPL v3) for all other uses. Keywords: ChemDoodle Web Components, Chemical graphics, Animations, Cheminformatics, HTML5, Canvas, JavaScript, WebGL, Structure editor, Structure query Introduction Mobile browsers did support HTML5, which opened How we communicate chemical information is increas- the door to web applications built with only HTML, ingly technology driven. Learning management systems, CSS and JavaScript (JS), such as the ChemDoodle Web virtual classrooms and MOOCs are a few examples where Components. chemistry educators need forward compatible tools for digital natives. Companies that implement emerg- Review ing web technologies can find efficiencies and benefit The ChemDoodle Web Components technology stack from competitive advantages. The first chemical graph- and features ics toolkit for the web, MDL Chime, was introduced in The ChemDoodle Web Components library, released in 1996 [1]. Based on the molecular visualization program 2009, is the first chemistry toolkit for structure viewing RasMol, Chime was developed as a plugin for Netscape and editing that is originally built using only web stand- and later for Internet Explorer and Firefox.
    [Show full text]
  • Development and Application of a Computational Platform for Complex Molecular Design Jaime Rodríguez-Guerra Pedregal
    ADVERTIMENT. Lʼaccés als continguts dʼaquesta tesi queda condicionat a lʼacceptació de les condicions dʼús establertes per la següent llicència Creative Commons: http://cat.creativecommons.org/?page_id=184 ADVERTENCIA. El acceso a los contenidos de esta tesis queda condicionado a la aceptación de las condiciones de uso establecidas por la siguiente licencia Creative Commons: http://es.creativecommons.org/blog/licencias/ WARNING. The access to the contents of this doctoral thesis it is limited to the acceptance of the use conditions set by the following Creative Commons license: https://creativecommons.org/licenses/?lang=en Development and Application of a Computational Platform for Complex Molecular Design a dissertation submitted by Jaime Rodríguez-Guerra Pedregal & directed by Prof. Dr. Jean-Didier Maréchal in fulfillment of the requirements for the degree of Doctor of Biotechnology Tutor: Prof. Dr. Jordi Joan Cairó Badillo Department of Chemical, Biological and Environmental Engineering Universitat Autònoma de Barcelona July 2018 Development and Application of a Computational Platform for Complex Molecular Design a dissertation submitted by & recommended for acceptance by advisor Jaime Rodríguez-Guerra Pedregal Prof. Dr. Jean-Didier Maréchal Tutor: Prof. Dr. Jordi Joan Cairó Badillo Department of Chemical, Biological and Environmental Engineering Universitat Autònoma de Barcelona July 2018 ©2018 – Jaime Rodríguez-Guerra Pedregal Licensed as Creative Commons BY-NC-ND Attribution-NonCommercial-NoDerivs In the beginning, there was nothing. And God said «Let there be light». And there was light. There was still nothing, but you could see it a lot better. —WoodyAllen. Development and Application of a Computational Platform for Complex Molecular Design by Jaime Rodríguez-Guerra Pedregal Abstract In this dissertation, a series of novel computational modeling tools is reported.
    [Show full text]
  • Page 1 of 52 RSC Advances
    RSC Advances This is an Accepted Manuscript, which has been through the Royal Society of Chemistry peer review process and has been accepted for publication. Accepted Manuscripts are published online shortly after acceptance, before technical editing, formatting and proof reading. Using this free service, authors can make their results available to the community, in citable form, before we publish the edited article. This Accepted Manuscript will be replaced by the edited, formatted and paginated article as soon as this is available. You can find more information about Accepted Manuscripts in the Information for Authors. Please note that technical editing may introduce minor changes to the text and/or graphics, which may alter content. The journal’s standard Terms & Conditions and the Ethical guidelines still apply. In no event shall the Royal Society of Chemistry be held responsible for any errors or omissions in this Accepted Manuscript or any consequences arising from the use of any information it contains. www.rsc.org/advances Page 1 of 52 RSC Advances Synthesis, DNA/protein binding, molecular docking, DNA cleavage and in vitro anticancer activity of nickel(II) bis(thiosemicarbazone) complexes Jebiti Haribabu,a Kumaramangalam Jeyalakshmi, a Yuvaraj Arun, b Nattamai S. P. Bhuvanesh, c Paramasivan Thirumalai Perumal, b and Ramasamy Karvembu a* Abstract A series of N-substituted isatin thiosemicarbazone ligands (L1-L5) and their nickel(II) complexes [Ni(L)2] ( 1-5) were synthesized and characterized by elemental analyses and UV- Visible, FT-IR, 1H & 13 C NMR, and mass spectroscopic techniques. The molecular structure of ligands (L1 and L2) and complex 1 was confirmed by single crystal X-ray crystallography.
    [Show full text]
  • (CDK): an Open-Source Java Library for Chemo- and Bioinformatics
    J. Chem. Inf. Comput. Sci. 2003, 43, 493-500 493 The Chemistry Development Kit (CDK): An Open-Source Java Library for Chemo- and Bioinformatics Christoph Steinbeck,*,† Yongquan Han,† Stefan Kuhn,† Oliver Horlacher,‡ Edgar Luttmann,§ and Egon Willighagen# Max-Planck-Institute of Chemical Ecology, Jena, Germany, TheraSTrat AG, Allschwil, Switzerland, Institute of Organic Chemistry, University of Paderborn, Germany, and Nijmegen, The Netherlands Received August 17, 2002 The Chemistry Development Kit (CDK) is a freely available open-source Java library for Structural Chemo- and Bioinformatics. Its architecture and capabilities as well as the development as an open-source project by a team of international collaborators from academic and industrial institutions is described. The CDK provides methods for many common tasks in molecular informatics, including 2D and 3D rendering of chemical structures, I/O routines, SMILES parsing and generation, ring searches, isomorphism checking, structure diagram generation, etc. Application scenarios as well as access information for interested users and potential contributors are given. 1. INTRODUCTION of software development, most widely recognized through the great success of the free Unix-like operating system Whoever pursues the endeavor of creating a larger GNU/Linux, a collaborative work of many individuals and software package in chemoinformatics or computational organizations, including the Free Software Foundation lead chemistry from scratch will soon be confronted with the by Richard Stallman and the Finish computer science student Syssiphus task of implementing the standard repertoire of Linus Torvalds who started the project. According to several chemoinformatical algorithms and components invented essays on this subject, open-source software, for which, by during the last 20 or 30 years.
    [Show full text]
  • JUMBO Is an Opensource Toolkit Addressing the Semantic and Ontological Impedances That Are Major Barriers to Interoperability in Computational Chemistry and Physics
    a a c a b a a c d a b c d JUMBO is an OpenSource toolkit addressing the semantic and ontological impedances that are major barriers to interoperability in computational chemistry and physics. Users build XMLSchemas from generic XML components to support particular computational tasks, such as high-throughput chemistry. JUMBO components provide a complete semantic description of information to or from a code such as MOPAC or GAMESS. Codes are edited to use JUMBO libraries as adapters to program-independent XML objects, or output is transduced using a generic parser, JUMBOMarker. The JUMBO system is designed for flexible collaborative contributions. abstract and rely on dictionaries (v.i.) to add semantics and ontology. In practice many of the concepts in a program are not in the schema but Existing codes in quantum mechanics or provided by domain-specific dictionaries. crystal/molecular mechanics/dynamics rely on The ultimate goal is to provide simple and “FORTRAN-like” input and output with flexible tools to XMLise existing and future variable and misunderstandable semantics and computational codes so they can be used as ontology. Typical examples are the lack of “black-boxes” in eScience workflows. Some explicit scientific units or fuzziness over authors have adopted this approach and whether a molecule has a charge. It is difficult embedded calls to JUMBO libraries in their to chain the output of one program into the code for input and output. However in some input of the next so human “cut-and-paste” is cases native legacy methods must still be used frequent. JUMBO allows authors and users to (for example where we do not have access or wrap these codes in XML and convert them to permission to modify source).
    [Show full text]
  • ACD/Chemsketch Reference Manual (Ver 11.0)
    ACD/ChemSketch Version 11.0 for Microsoft Windows Reference Manual Comprehensive Interface Description Advanced Chemistry Development, Inc. Copyright © 1997–2007 Advanced Chemistry Development, Inc. All rights reserved. ACD/Labs is a trademark of Advanced Chemistry Development, Inc. Microsoft and Windows are registered trademarks of Microsoft Corporation in the United States and/or other countries Copyright © 2007 Microsoft Corporation. All rights reserved. IBM is a registered trademark of International Business Machines Corporation Copyright © IBM Corporation 1994, 2007. All rights reserved. Adobe, Acrobat, PDF, Portable Document Formats, and associated data structures and operators are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries Copyright © 2007 Adobe Systems Incorporated. All rights reserved. Camtasia is a registered trademark of TechSmith Corporation, and Camtasia Studio is a trademark of TechSmith Corporation Copyright © 1999–2007 TechSmith Corporation. All rights reserved. All the other trademarks mentioned within this reference manual are the property of their respective owners. All trademarks are acknowledged. Information in this document is subject to change without notice and is provided “as is” with no warranty. Advanced Chemistry Development, Inc., makes no warranty of any kind with regard to this material, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Advanced Chemistry Development, Inc.,
    [Show full text]
  • Optimizing the Use of Open-Source Software Applications in Drug
    DDT • Volume 11, Number 3/4 • February 2006 REVIEWS TICS INFORMA Optimizing the use of open-source • software applications in drug discovery Reviews Werner J. Geldenhuys1, Kevin E. Gaasch2, Mark Watson2, David D. Allen1 and Cornelis J.Van der Schyf1,3 1Department of Pharmaceutical Sciences, School of Pharmacy,Texas Tech University Health Sciences Center, Amarillo,TX, USA 2West Texas A&M University, Canyon,TX, USA 3Pharmaceutical Chemistry, School of Pharmacy, North-West University, Potchefstroom, South Africa Drug discovery is a time consuming and costly process. Recently, a trend towards the use of in silico computational chemistry and molecular modeling for computer-aided drug design has gained significant momentum. This review investigates the application of free and/or open-source software in the drug discovery process. Among the reviewed software programs are applications programmed in JAVA, Perl and Python, as well as resources including software libraries. These programs might be useful for cheminformatics approaches to drug discovery, including QSAR studies, energy minimization and docking studies in drug design endeavors. Furthermore, this review explores options for integrating available computer modeling open-source software applications in drug discovery programs. To bring a new drug to the market is very costly, with the current of combinatorial approaches and HTS. The addition of computer- price tag approximating US$800 million, according to data reported aided drug design technologies to the R&D approaches of a com- in a recent study [1]. Therefore, it is not surprising that pharma- pany, could lead to a reduction in the cost of drug design and ceutical companies are seeking ways to optimize costs associated development by up to 50% [6,7].
    [Show full text]
  • Chem3d 17.0 User Guide Chem3d 17.0
    Chem3D 17.0 User Guide Chem3D 17.0 Table of Contents Recent Additions viii Chapter 1: About Chem3D 1 Additional computational engines 1 Serial numbers and technical support 3 About Chem3D Tutorials 3 Chapter 2: Chem3D Basics 5 Getting around 5 User interface preferences 9 Background settings 10 Sample files 10 Saving to Dropbox 10 Chapter 3: Basic Model Building 12 Default settings 12 Selecting a display mode 12 Using bond tools 13 Using the ChemDraw panel 15 Using other 2D drawing packages 15 Building from text 16 Adding fragments 18 Selecting atoms and bonds 18 Atom charges 21 Object position 23 Substructures 24 Refining models 27 Copying and printing 29 Finding structures online 32 Chapter 4: Displaying Models 35 © Copyright 1998-2017 PerkinElmer Informatics Inc., All rights reserved. ii Chem3D 17.0 Display modes 35 Atom and bond size 37 Displaying dot surfaces 38 Serial numbers 38 Displaying atoms 39 Atom symbols 40 Rotating models 41 Atom and bond properties 44 Showing hydrogen bonds 45 Hydrogens and lone pairs 46 Translating models 47 Scaling models 47 Aligning models 47 Applying color 49 Model Explorer 52 Measuring molecules 59 Comparing models by overlay 62 Molecular surfaces 63 Using stereo pairs 72 Stereo enhancement 72 Setting view focus 73 Chapter 5: Building Advanced Models 74 Dummy bonds and dummy atoms 74 Substructures 75 Bonding by proximity 78 Setting measurements 78 Atom and building types 81 Stereochemistry 85 © Copyright 1998-2017 PerkinElmer Informatics Inc., All rights reserved. iii Chem3D 17.0 Building with Cartesian
    [Show full text]