Automated Generation of Input Data for Machine-Learning-Based Predictions of Ni(I) Dimer Formation

Total Page:16

File Type:pdf, Size:1020Kb

Automated Generation of Input Data for Machine-Learning-Based Predictions of Ni(I) Dimer Formation Seminararbeit im Studiengang Scientific Programming Modulcode 95200 Automated Generation of Input Data for Machine-Learning-Based Predictions of Ni(I) Dimer Formation Nina Löseke Matrikelnummer 3147366 17. Dezember 2019 betreut von Prof. Dr. rer. nat. Hans Joachim Pflug Jannis Klinkenberg, M.Sc. IT Center der RWTH Aachen Erklärung Hiermit versichere ich, dass ich die Seminararbeit mit dem Thema ‘Automated Generation of Input Data for Machine-Learning-Based Predictions of Ni(I) Dimer Formation’ selbstständig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel ben- utzt habe, alle Ausführungen, die anderen Schriften wörtlich oder sinngemäß entnommen wurden, kenntlich gemacht sind und die Arbeit in gleicher oder ähnlicher Fassung noch nicht Bestandteil einer Studien- oder Prüfungsleistung war. Ich verpflichte mich, ein Exemplar der Seminararbeit fünf Jahre aufzubewahren und auf Verlangen dem Prüfungsamt des Fachbereiches Medizintechnik und Technomathematik auszuhändigen. Ort, Datum Unterschrift ii Abstract Ni(I) dimers are useful for selective synthesis and catalyze complex reactions. Gener- ally, dimeric catalysts offer a wide range of applications in selective synthesis, which is why there is a high demand for finding similar catalysts. An experimental approach for testing a large number of potential candidates to form this specific type of catalyst is not feasible because it is time-consuming and difficult to study systematically. Therefore, the researchers of the Schoenebeck Group at the RWTH Institute of Organic Chemistry hope to explore suitable ligands with the aid of machine learning. Ligands are ions or mo- lecules attached to a metal atom that, in this case, need to stabilize a dinuclear Ni(I) Ni(I) core. Previously, the workflow to create data to extract ML features from has only been partially implemented and required a lot of manual interaction, which made it more prone to errors. This seminar thesis focuses on developing a fully automated, Python-based framework for generating ML input data to identify ligands that form Ni(I) dimers. The framework adapts the previous workflow in a more efficient way that allows for automatic error detection and requires little to no user interference. Instead of experiments, this training data set is generated in silico by applying DFT calculations, such as the external program Gaussian, to a library of structures or so-called species the ligands and nickel can form. DFT stands for ‘density functional theory’, which is a method for quantum mech- anical modeling. Apart from that, this approach results in an input data set large enough to provide innovative insights into identifying novel, reactive Ni(I) dimers through ML. This is more difficult to achieve with purely experimental data since it is often limited in size or incidentally biased, which are some of the main challenges machine learning still faces in the field of chemistry. For my bachelor’s thesis, I plan to investigate different methods and techniques of unsupervised machine learning and analyze their effectiveness for the data set generated by the constructed framework. iii Contents 1 Introduction 1 1.1 Motivation . .1 1.2 Focus and Structure of This Thesis . .2 2 Important Tools and Chemical Background 3 2.1 Open Babel . .3 2.2 xtb and CREST . .3 2.3 Gaussian . .4 3 Status Quo 5 4 Implementation of the Framework 10 4.1 Molecule Assembly . 13 4.2 xtb/CREST and Gaussian . 14 4.3 Error Checking for Gaussian Logs . 16 4.4 Extraction of Descriptors . 17 5 Production Run 19 6 Summary and Outlook 20 List of Abbreviations 21 List of Figures 22 Listings 23 List of Tables 24 References 25 iv 1 Introduction 1.1 Motivation The use of machine learning in the field of chemistry is increasing in popularity [1] since it can help predict reaction outcomes [13, 12, 3] or molecular characteristics [14]. This is helpful for exploring new, suitable structures, e.g. when searching for novel cata- lysts, without having to test each possible candidate through time-consuming and expens- ive experiments in the laboratory. Machine learning can also help discern certain patterns for finding new candidates, e.g. the most important molecular properties that characterize suitable structures for a catalyst formation. Current data sets for ML input, however, are largely based on experimental data, which is limited in size due to the required effort and might contain inaccuracies. Moreover, certain molecular descriptors (so-called ‘features’ for machine learning) are often hand- picked, so that bias is introduced. As an effect, the training and validation data sets are often similar. This reduces the amount of new knowledge to be gained from machine learning. Computational methods help combat this challenge. Especially DFT calculations allow for much larger data sets to extract features from to be generated in silico, e.g. via Gaus- sian1. This so-called ‘density functional theory’ is a method for quantum mechanical modeling which helps optimize and collect data on large sets of molecular structures purely through computation without experimental efforts. These molecular characterist- ics can in turn provide a training data set that is large enough to yield more innovative results. One of the use cases for this is the dinuclear Ni(I) catalyst. Ni(I) dimers are important for selective synthesis and support complex reactions, like the highly selective isomerization of terminal olefins [7]. There is a high demand to find similar dimeric catalysts [11, 8], especially a chiral version of the Ni(I) dimer which can be applied in many ways in enantioselective catalysis [2]. However, potential ‘species’ to form these types of dimers cannot be determined stra- tegically through experiments because it is time-consuming. Apart from that, the exact correlations of suitable species are unknown due to complex factors that influence the formation of a specific catalyst. Species are groups of nickel and ligands, which are ions or molecules attached to a metal atom and, in this case, stabilize a dinuclear Ni(I) Ni(I) core. Therefore, the long-term goal of the research conducted by the Schoenebeck Group at the Institute of Organic Chemistry at the RWTH Aachen is to analyze ML-based methods for determining ligands that favor the formation of a reactive Ni(I) dimer. 1https://gaussian.com/g16main/ 1 1 Introduction 1.2 Focus and Structure of This Thesis In this seminar thesis, I develop a fully-automated, Python-based framework that applies DFT calculations to a library of structures based on provided ligands and generates ML input data from the results. This framework replaces the previous, non-automated, partial implementation of the steps needed to acquire the ML features. In order to better un- derstand the following chapters, figure 1.1 depicts a top-level overview of the workflow consisting of five main steps. repeat if error can be solved extract assemble optional xtb / CREST Gaussian check output descriptors molecules optimization calculation for errors from output Figure 1.1: Overview of Workflow First, the molecules each ligand can form need to be assembled programmatically from the ligand library in order to obtain a structure library of molecular data (see figure 3.1 for details). As an optional step, the molecular structure can be pre-optimized using the external programs xtb2 and CREST3, which is helpful for some structures. The successive Gaussian run most importantly optimizes the total energy of the molecule and outputs an optimized arrangement of the atoms. Some errors arising from Gaussian can be resolved by repeating the calculation with a few adaptions (see chapter 4.3). Otherwise, a manual check and evaluation might be required in case of more complex errors. To avoid bias in the resulting ML data, a wide range of molecular properties and energies is either extracted directly from the Gaussian results or computed with additional external applications. These so-called descriptors constitute the features that can serve as input data for various supervised and unsupervised ML algorithms. In the first part of this thesis, I give an overview of the most important software and tools used for this project and the chemical background of the xtb/CREST optimization and DFT calculations. Then, I discuss how the previous partial implementation of the work- flow can be improved. Based on this, I outline the requirements for the fully automated framework and describe concrete details of its implementation and how to use it. Finally, I present data on a ‘production run’ of this framework and summarize my work. 2https://github.com/grimme-lab/xtb/ 3https://xtb-docs.readthedocs.io/en/latest/crest.html 2 2 Important Tools and Chemical Background This chapter does not only look at the software and tools involved in this project, but also explains the most important chemical details for xtb/CREST and the DFT calculations in sections 2.2 and 2.3. The calculations performed by xtb/CREST and Gaussian are very compute-intensive and optimized to run on high-performance computer architectures, in this case, the RWTH Compute Cluster1. To utilize these compute resources, the programs can be run as batch jobs by submitting batch scripts via the cluster’s workload manager SLURM2. After first queuing all incoming jobs that users send, SLURM then assigns re- sources in terms of CPUs, memory and runtime to the jobs waiting to run on the cluster. 2.1 Open Babel Originally, Open Babel3 is a C++-based chemical software toolbox that provides function- ality for converting different file formats for molecular data. This library also includes a Python interface with the same API for the essential functions that I utilize for this sem- inar thesis. The automated framework requires at least version 2.3, since this version introduces new classes for substructure search. Through substructure search, Open Ba- bel can find the atom indices of certain bonds or substructures in a molecule by defining patterns, which is relevant to the ML feature extraction explained in chapter 4.4.
Recommended publications
  • User Guide of Computational Facilities
    Physical Chemistry Unit Departament de Quimica User Guide of Computational Facilities Beta Version System Manager: Marc Noguera i Julian January 20, 2009 Contents 1 Introduction 1 2 Computer resources 2 3 Some Linux tools 2 4 The Cluster 2 4.1 Frontend servers . 2 4.2 Filesystems . 3 4.3 Computational nodes . 3 4.4 User’s environment . 4 4.5 Disk space quota . 4 4.6 Data Backup . 4 4.7 Generation of SSH keys for automatic SSH login . 4 4.8 Submitting jobs to the cluster . 5 4.8.1 Typical queue system commands . 6 4.8.2 HomeMade scripts . 6 4.8.3 Create your own submit script . 6 4.8.4 Submitting Parallel Calculations . 7 5 Available Software 9 5.1 Chemisty software . 9 5.2 Development Software . 10 5.3 How to use the software . 11 5.4 Non-default environments . 11 6 Your Linux Workstation 11 6.1 Disk space on your workstation . 12 6.2 Workstation Data Backup . 12 6.3 Running virtual Windows XP . 13 6.3.1 The Windows XP Environment . 13 6.4 Submitting calculations to your dekstop . 13 6.5 Network dependent structure . 14 7 Your WindowsXP Workstation 14 7.1 Workstation Data Backup . 14 8 Frequently asked questions 14 1 Introduction This User Guide is aimed to the standard user of the computer facilities in the ”Unitat de Quimica Fisica” in the Universitat Autnoma de Barcelona. It is not assumed that you have a knowledge of UNIX/Linux. However, you are 1 encouraged to take a close look to the linux guides that will be pointed out.
    [Show full text]
  • Chem3d Download Mac
    1 / 2 Chem3d Download Mac ChemSketch for Mac OS X, download best alternative solutions carefully chosen by our editors and user community.. Supported in Macintosh for Netscape (4.0+ only). No Mac support for Internet Explorer, Safari, or OSX browsers. To Download and Install Chem3D Plug-in: Go to .... On a Macintosh browser, you can switch between Chime and Chem3D plugins using the Edit/Preferences/Applications menu. On Windows, switching between .... Mac users interested in Chemdraw ultra free generally download: CS ChemDraw Ultra 12.0. ChemDraw is the industry leader of chemical drawing programs.. Aug 25, 2020 — To download ChemDraw, you'll need to create a personal account ... ChemDraw - Activation Help - Win - Mac I get an error message containing, “ … ... Day 2: Part III: ChemDraw; Part IV: Chem3D; Remember that you can .... This includes Chem3D, for Windows only. The licence allows you to download the software to your own PC (not available for Mac). The version currently .... ChemDraw 8 Ultra, Windows And Macintosh Versions. Chemdraw ultra Most people looking for Chemdraw ultra downloaded: ChemDraw Ultra. Download. on .... Chem3D does not show a pair of electrons that is part of an aromatic system. ... well as for the Mac platform and can be downloaded by students and coworker of ... The license is for both the Windows and Mac versions of the software. ... are available in the Windows version (such as Chem3D Pro and E-Notebook Pro). ... Download the software installer for your operating system (Windows or Mac) and .... May 26, 2020 — Accessing and Installing ChemDraw (Mac) or ChemOffice (Windows) ... ChemDraw Professional; ChemDraw for Excel; Chem3D; ChemFinder ..
    [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]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Bringing Open Source to Drug Discovery
    Bringing Open Source to Drug Discovery Chris Swain Cambridge MedChem Consulting Standing on the shoulders of giants • There are a huge number of people involved in writing open source software • It is impossible to acknowledge them all individually • The slide deck will be available for download and includes 25 slides of details and download links – Copy on my website www.cambridgemedchemconsulting.com Why us Open Source software? • Allows access to source code – You can customise the code to suit your needs – If developer ceases trading the code can continue to be developed – Outside scrutiny improves stability and security What Resources are available • Toolkits • Databases • Web Services • Workflows • Applications • Scripts Toolkits • OpenBabel (htttp://openbabel.org) is a chemical toolbox – Ready-to-use programs, and complete programmer's toolkit – Read, write and convert over 110 chemical file formats – Filter and search molecular files using SMARTS and other methods, KNIME add-on – Supports molecular modeling, cheminformatics, bioinformatics – Organic chemistry, inorganic chemistry, solid-state materials, nuclear chemistry – Written in C++ but accessible from Python, Ruby, Perl, Shell scripts… Toolkits • OpenBabel • R • CDK • OpenCL • RDkit • SciPy • Indigo • NumPy • ChemmineR • Pandas • Helium • Flot • FROWNS • GNU Octave • Perlmol • OpenMPI Toolkits • RDKit (http://www.rdkit.org) – A collection of cheminformatics and machine-learning software written in C++ and Python. – Knime nodes – The core algorithms and data structures are written in C ++. Wrappers are provided to use the toolkit from either Python or Java. – Additionally, the RDKit distribution includes a PostgreSQL-based cartridge that allows molecules to be stored in relational database and retrieved via substructure and similarity searches.
    [Show full text]
  • Free Chemdraw Program
    Free chemdraw program click here to download ACD/Labs extension for ChemDraw, checkmark. Technical Support Free access to site licenses of ACD/ChemSketch Freeware are available. Popular Alternatives to ChemDraw for Windows, Linux, Mac, iPhone, iPad and XDrawChem is a free software program for drawing chemical. The PerkinElmer Available Chemicals Exchange, ChemACX, is a comprehensive online chemical database catalog for chemical products containing. ChemDraw Prime is the complete entry-level structure drawing program, with all the tools you need to quickly create chemically intelligent, publication-ready. ChemDraw features stereochemistry, atom numbering, structure & style templates, a large choice of bonds & arrows, full color drawing, and more. You can download ChemDraw Ultra from our software library for free. Our built-in antivirus checked this download and rated it as virus free. ChemDraw Pro is available as a free download on our software library. The software lies within Education Tools, more precisely Science. ChemDraw Pro is industry leading molecules drawing software. Download ChemDraw Free Pro full version with product key. Chemsketch is an all-purpose chemical drawing and graphics software. Use templates or free-hand. Click and draw molecules, ions, stereobonds, text, polygons. It is similar in functionality to other molecule drawing programs such as ChemDraw (TM, CambridgeSoft). It can read and write MDL Molfiles. Free ChemBioDraw Ultra Software. ChemBioDraw Ultra The license is for both the Windows and Mac versions of the software. Please note that the Mac. ChemDraw and Symyx Draw file formats (skc, cdx) are also recognized by Marvin. Structures from image files can be converted in MarvinSketch using the free.
    [Show full text]
  • Drawing Software in Chemistry: Free/Open Source (Foss), Freeware- a Short Review
    International Journal of Innovative Research in Science, Engineering and Technology (IJIRSET) || e-ISSN: 2319-8753, p-ISSN: 2320-6710| www.ijirset.com | Impact Factor: 7.512| || Volume 9, Special Issue 2, October 2020 || 3rd International Conference on Emerging Trends in Science, Technology and Mathematics [ICETSTM 2020] 18th September 2020 Organized by Department of Computer Science, Parvathy's Arts and Science College, Dindigul, Tamilnadu, India Drawing Software in Chemistry: Free/Open Source (Foss), Freeware- A Short Review Arun Luiz T Department of Chemistry, Sri Sivasubramaniya Nadar College of Engineering, Old Mahabalipuram Road, Kalavakkam, Tamilnadu, India ABSTRACT: COVID-19 pandemic made online education in vogue. It has become mandatory for chemistry community to know about various tools, which are available for their disposal. This short review lists various software, which can be used for drawing structures, writing equations etc. These software include Free/Open Source (FOSS) and freeware that can be easily downloaded from internet free of cost for academic purposes. KEYWORDS: Software, Drawing, FOSS, Freeware I. INTRODUCTION The World Health Organization (WHO) declared the COVID-19 outbreak as a pandemic on 11 March 2020 [1]. Most of the governments all around the world temporarily closed down all educational institutions to prevent to the spreading of virus. According to Wikipedia, by the end of July 2020, around 1.7 billion learners were affected by this lockdown [2]. Most of the schools, colleges and universities were forced to switch over to “online mode” of synchronous and asynchronous teaching and learning. UNESCO recommended the use of distance learning programs and open educational applications and platforms for students and teacher for better teaching learning experience [2].
    [Show full text]
  • Modularitet Och Objektorientering
    Uppsala universitet Institutionen för informatik och media Modularitet och objektorientering Byggandet av ett program som kan visa en molekyl Lars Tedenborg Examensarbete C Höstterminen 2010 2011-01-04 Abstract The development of IT systems is usually accomplished by some form of system development methodology. It can be performed as the waterfall method, where each phase is completed before the next begins. One of the reasons to follow a development methodology is that the process is more structured, faster and that the product will have higher quality. One risk of not using a system development approach is that the code can be unstructured and difficult to maintain. This paper describes an alternative method in which the development occurred without the use of any system development methodology. This has been possible because there was a clear goal of the program that should be developed. The goal was to read a molfile and from the information stored in the file plot the molecular structure. The appearance of the molecule has been fine-tuned as more features are added. A molfile is able to store all the information about the different characteristics a molecule can have. Not all molecules containing all the properties. Development has proceeded as follows: Each property has been classified as an object and then implemented. The whole way from reading the property in the file into the computer program and then interpret the information to plot the property as a part of the molecule. The most important programming principle has been to develop the program as a number of more or less independent modules for the system to have high modularity.
    [Show full text]
  • User Guide of Computational Facilities
    Physical Chemistry Unit, Departament de Química User Guide of Computational Facilities An User Guide for the standard user of the computer facilities in the ”Unitat de Química Física” in the Universitat Autònoma de Barcelona Marc Noguera i Julián and Carles Acosta i Silva 23/02/2011 Table Of Contents 1 Introduction ................................................................................................................................ 4 2 Computer resources ................................................................................................................... 4 3 Some Linux tools ........................................................................................................................ 5 4 The Cluster ................................................................................................................................. 6 4.1 Frontend servers ................................................................................................................. 6 4.2 Filesystems .......................................................................................................................... 6 4.3 Computational nodes .......................................................................................................... 7 4.4 User’s environment ............................................................................................................. 9 4.5 Disk space quota ................................................................................................................. 9 4.6
    [Show full text]
  • Bringing Open Source to Drug Discovery
    Bringing Open Source to Drug Discovery Chris Swain Cambridge MedChem Consulting Standing on the shoulders of giants • There are a huge number of people involved in writing open source software • It is impossible to acknowledge them all individually • The slide deck will be available for download and includes 25 slides of details and download links – Copy on my website www.cambridgemedchemconsulting.com Why us Open Source software? • Allows access to source code – You can customise the code to suit your needs – If developer ceases trading the code can continue to be developed – Outside scrutiny improves stability and security What Resources are available • Toolkits • Databases • Web Services • Workflows • Applications • Scripts Toolkits • OpenBabel • R • CDK • OpenCL • RDkit • SciPy • Indigo • NumPy • ChemmineR • Pandas • Helium • Flot • FROWNS • GNU Octave • Perlmol • OpenMPI Toolkits • OpenBabel (htttp://openbabel.org) is a chemical toolbox – Ready-to-use programs, and complete programmer's toolkit – Read, write and convert over 110 chemical file formats – Filter and search molecular files using SMARTS and other methods, KNIME add-on – Supports molecular modeling, cheminformatics, bioinformatics – Organic chemistry, inorganic chemistry, solid-state materials, nuclear chemistry – Written in C++ but accessible from Python, Ruby, Perl, Shell scripts… Toolkits • RDKit (http://www.rdkit.org) – A collection of cheminformatics and machine-learning software written in C++ and Python. – Knime nodes – The core algorithms and data structures are written in C ++. Wrappers are provided to use the toolkit from either Python or Java. – Additionally, the RDKit distribution includes a PostgreSQL-based cartridge that allows molecules to be stored in relational database and retrieved via substructure and similarity searches.
    [Show full text]
  • Instructions Manuals Xdrawchem.Pdf
    Instructions Manuals Xdrawchem Wikipedia:Manual of Style/Chemistry/Structure drawing program called WinDrawChem (the Windows version of XDrawChem) that appears to work well. Link. xdrawchem · packages.ubuntu.com/xdrawchem Ubuntu Maverick for Research - Installation, pointers to many relevant programs on Ubuntu 10.10. To install xdrawchem just follow these instructions. × Are you having problems? You can always remove xdrawchem again by following the instructions at this. XDrawChem is a drawing application designed for drawing and analyzing methods & parameters, easily generate reports & certificates, fine tune user rights. package in Ubuntu Trusty. Installation instructions. Installing xdrawchem package in Ubuntu Trusty is as easy as running: apt-get install xdrawchem. 1 Science Writing Manuals and Style Guides, 2 Science Writing Tutorials and The Chemistry Style Manual 2nd revised ed., 2004 by Kieran F. Lim (Deakin. Instructions Manuals Xdrawchem Read/Download Documentation · FAQ · Handbook · Porter's Handbook · Developer's Handbook · Manual Pages · Documentation Project Primer · All Books and Articles. XDrawChem _xdrawchem.sourceforge.net/_ Open (GukLogFile) · GAMESS-UK Punchfile. GAMESS - the US version GAMESS manual · (Log_file). XDrawChem free download, 100% safe and virus free download from Softonic. More info about this program · Read user reviews (2) · See screenshot. User Interface. Web-based, Win32 (MS Windows), X Window System (X11) intuitive molecular editor and visualization tool. Icon · SketchEl · Icon. XDrawChem. 2 In Progress. 2.1 LabPlot, 2.2 XDrawChem Notes aMule is there but it looks very bad in KDE and in general its user interface is quite bad. We can do much. It can read and write MDL Molfiles to allow sharing between XDrawChem and A high power gift from Vancouver (Canada) with an extensive user's guide.
    [Show full text]
  • The Table of Equivalents / Replacements / Analogs of Windows Software in Linux
    The table of equivalents / replacements / analogs of Windows software in Linux. Last update: 16.07.2003, 31.01.2005, 27.05.2005, 04.12.2006 You can always find the last version of this table on the official site: http://www.linuxrsp.ru/win-lin-soft/. This page on other languages: Russian, Italian, Spanish, French, German, Hungarian, Chinese. One of the biggest difficulties in migrating from Windows to Linux is the lack of knowledge about comparable software. Newbies usually search for Linux analogs of Windows software, and advanced Linux-users cannot answer their questions since they often don't know too much about Windows :). This list of Linux equivalents / replacements / analogs of Windows software is based on our own experience and on the information obtained from the visitors of this page (thanks!). This table is not static since new application names can be added to both left and the right sides. Also, the right column for a particular class of applications may not be filled immediately. In future, we plan to migrate this table to the PHP/MySQL engine, so visitors could add the program themselves, vote for analogs, add comments, etc. If you want to add a program to the table, send mail to winlintable[a]linuxrsp.ru with the name of the program, the OS, the description (the purpose of the program, etc), and a link to the official site of the program (if you know it). All comments, remarks, corrections, offers and bugreports are welcome - send them to winlintable[a]linuxrsp.ru. Notes: 1) By default all Linux programs in this table are free as in freedom.
    [Show full text]