Literature DB >> 24103053

KNIME-CDK: Workflow-driven cheminformatics.

Stephan Beisken1, Thorsten Meinl, Bernd Wiswedel, Luis F de Figueiredo, Michael Berthold, Christoph Steinbeck.   

Abstract

BACKGROUND: Cheminformaticians have to routinely process and analyse libraries of small molecules. Among other things, that includes the standardization of molecules, calculation of various descriptors, visualisation of molecular structures, and downstream analysis. For this purpose, scientific workflow platforms such as the Konstanz Information Miner can be used if provided with the right plug-in. A workflow-based cheminformatics tool provides the advantage of ease-of-use and interoperability between complementary cheminformatics packages within the same framework, hence facilitating the analysis process.
RESULTS: KNIME-CDK comprises functions for molecule conversion to/from common formats, generation of signatures, fingerprints, and molecular properties. It is based on the Chemistry Development Toolkit and uses the Chemical Markup Language for persistence. A comparison with the cheminformatics plug-in RDKit shows that KNIME-CDK supports a similar range of chemical classes and adds new functionality to the framework. We describe the design and integration of the plug-in, and demonstrate the usage of the nodes on ChEBI, a library of small molecules of biological interest.
CONCLUSIONS: KNIME-CDK is an open-source plug-in for the Konstanz Information Miner, a free workflow platform. KNIME-CDK is build on top of the open-source Chemistry Development Toolkit and allows for efficient cross-vendor structural cheminformatics. Its ease-of-use and modularity enables researchers to automate routine tasks and data analysis, bringing complimentary cheminformatics functionality to the workflow environment.

Entities:  

Mesh:

Substances:

Year:  2013        PMID: 24103053      PMCID: PMC3765822          DOI: 10.1186/1471-2105-14-257

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

The routine work of a cheminformatician involves the processing of libraries of small molecules. Standardising molecules, e.g., adding hydrogens or removing unconnected structures, calculation of molecular descriptors, and visualisation of chemical structures in two- or three-dimensional space are just a few examples of recurrent tasks that are carried out upstream of cheminformatic pipelines. Several free cheminformatics libraries and tools have been developed to deal with these tasks, such as the CDK [1], RDKit [2], and OpenBabel [3] to mention only a few. Typically, building a comprehensive pipeline for small molecules requires a basic understanding of a scripting language to concatenate input and output from different tools or call functions from a cheminformatics library. For experimental scientists, usage of APIs (application programming interfaces) or programming languages adds a constraint to more in-depth analysis. On the other hand, standalone tools suffer from their limited scope. Even simple tasks like the visual characterisation of a chemical library [4] requires importing and exporting data in various formats using different tools. Workflow environments circumvent the above mentioned challenges to various degrees by providing a common platform for different tools and have become increasingly popular with the scientific community [5,6]. The Konstanz Information Miner (KNIME) [7] is an open-source workflow platform that supports a wide range of functionality and has an active cheminformatics/bioinformatics community, e.g., with plug-ins for next generation sequencing or image analysis [8-10]. For a detailed description of the KNIME data analysis platform see [11]. The cheminformatics plug-in KNIME-CDK is based on the Chemistry Development Kit (CDK), an open-source cheminformatics library. It wraps elements of the library’s core functionality and exposes it to the user. In contrast to other cheminformatics plug-ins available in KNIME, the project and its core library are fully open and community-driven.

Implementation

KNIME-CDK has been developed in Java 1.6 and is available via the KNIME update mechanism. The plug-in including its sources is available as release (stable) build and nightly (pre-release) build under GNU LGPL v3. It has been tested on KNIME Desktop version 2.6 and 2.7, the latter uses Java 1.7, with 2 GB memory and default settings otherwise, using the ChEBI compound library [12]. Over the last year, the plug-in and its underlying core library have been updated, reducing memory requirements and improving overall performance. The KNIME-CDK community site and forum [13] provide an overview of the implemented functionality and support respectively. Following KNIME’s data model, the individual CDK molecule representations are stored in their own data cell type, the atomic unit for tabular data transfer from one node to another. A node can be considered as single worker carrying out a single function. Here node names are written in italic. Data persistence is guaranteed via the Chemical Markup Language (CML) [14] serializing the molecule when necessary. The underlying CDK molecules are handled and stored within data cells in standardized form, i.e., with implicit hydrogen atoms added, atom types perceived, and aromaticity detected. This guarantees consistency across all nodes and simplifies usability of the plug-in by hiding technical details from the user, hence allowing the scientist to focus on the task at hand. The plug-in accepts molecules in CML, SDFile, MDL Mol, InChI, and SMILES formats [15] via the Molecule to CDK node and writes SDFiles via the CDK to Molecule node, hence converting the CDK molecule back to the default SDFile cell, that can be used with other cheminformatics plug-ins. In addition, the implemented SDFile interface ensures that all SDFile cell accepting nodes can directly be connected to KNIME-CDK nodes. All subsequent operations are carried out on the internal CDK molecule representation and include, inter alia, generation of coordinates, atom signatures of various heights, common fingerprints, e.g., MACCS and Pubchem, two- and three-dimensional molecular descriptor values including XLogP and Lipinski’s Rule of Five, chemical name lookup via OPSIN [16], and substructure search (Figure 1a). Different routes in a workflow can run in parallel and nodes run always multi-threaded. In Figure 1b a chemical library is filtered for molecules containing a phenol group before successive hydrogen acceptor / donor count while being used for MACCS fingerprint and atom signature generation. The out-port view, i.e., the resulting data table, is shown for the Atom Signatures node. Further use cases of workflows using the KNIME-CDK plug-in include the management and analysis of chemical libraries through molecular descriptors, conformer analysis via RMSD, and NMR spectra prediction. Example workflows for these tasks can be found in the repository [17] of the myExperiment virtual research environment [18].
Figure 1

Example workflow and out-port views. Overview of the KNIME-CDK plug-in. a) View of the node repository showing all available nodes. b) Example workflow for descriptor calculation. The molecule library is read in and filtered for structures containing phenol groups before counting the number of hydrogen donors and acceptors (lower path). Simultaneously, MACCS fingerprints and atom signatures are calculated for the atom-filtered molecules (upper path). c) Example row from the out-port view of the Atom Signatures node.

Example workflow and out-port views. Overview of the KNIME-CDK plug-in. a) View of the node repository showing all available nodes. b) Example workflow for descriptor calculation. The molecule library is read in and filtered for structures containing phenol groups before counting the number of hydrogen donors and acceptors (lower path). Simultaneously, MACCS fingerprints and atom signatures are calculated for the atom-filtered molecules (upper path). c) Example row from the out-port view of the Atom Signatures node. Complementing the signature node, the KNIME preference page contains a CDK tab to set global visualisation preferences. Given two- or three-dimensional coordinates, a renderer is provided to draw the molecules using the JChemPaint library [19]. By default the element symbol is drawn. The preference page allows to draw either canonical or sequential atom numbers instead of either all atoms or carbon / hydrogen atoms only.

Discussion

The KNIME-CDK plug-in was tested using the structurally diverse ChEBI library with a total of 23,240 3-star structures. For testing purposes, the library was used in SDFile format, release 98, because this could arguably be considered the most common use case. For comparison, the well-established RDKit plug-in was used. Using the ChEBI SDFile, consistent input-serialization-output was tested using round tripping to ensure that no information is lost or altered. From the 23,240 structures, 22,225 structures (95.6%) could successfully be read in, marginally less than with the RDKit plug-in (22,482 structures, 96.7%). Not all molecules could be converted into the CDK representation because some classes are not supported throughout the node’s read process. Currently the following groups lack support (examples in brackets): Coordination entities [CHEBI:16304], ’exotic’ atoms [CHEBI:27698], complexed porphyrins [CHEBI:27888], some radical species [CHEBI:33101, CHEBI:33105], and repeated structures [CHEBI:65304]. The structures were read in 43.0±4.5 seconds compared to 12.0±0.7 seconds (RDKit). Even though the KNIME-CDK plug-in is not as fast as RDKit, which uses a native C++ implementation, its functionality should be seen as complimentary to other plug-ins available and its speed is still adequate. The ChemAxon Marvin Extensions Feature, 2.6.3.v0135, was used to create canonical SMILES from the structures that were loaded with KNIME-CDK and RDKit. For 2794 (12.6%) structures different SMILES were produced, due to the fact that different internal representations and the nature of the problem, inescapably produces variation. This highlights one of the benefits of employing more than one library for processing and analysis tasks. In addition, KNIME-CDK offers some unique functionality including various molecular descriptors, fingerprints, and equivalent class calculation. With that knowledge, KNIME-CDK can be used for chemical data exploration in synergy with other cheminformatics plug-ins to make proper use of the framework environment. We will continue to update the plug-in continuously to take the newest developments of the CDK project into account. New nodes will be added on a “on-demand” basis.

Conclusions

We presented KNIME-CDK, an open-source cheminformatics plug-in for the KNIME platform. The plug-in brings additional cheminformatics functionality to the platform based on a community-driven open library. Functionality includes molecule conversion to and from common formats, substructure searching, generation of signatures, fingerprints, and molecular properties. It supports the typical range of organic chemical structures similar to RDKit but adds new functionality to the framework. The plug-in is easy to use and enables the community to build further nodes based on the popular CDK library that work in combination with the existing molecule representation. Issues that will be addressed are the overall speed and input capability of the plug-in to make it more usable and better suited for high-throughput analysis.

Availability and requirements

•Project name: KNIME-CDK •Project URL:http://tech.knime.org/community/cdk •Availability: All sources and compiled code are available via the KNIME update mechanism. •Operating system(s): Platform independent •Programming language: Java 1.6 •Other requirements: KNIME Desktop v2.6+ •License: GNU LGPLv3

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

TM and BW wrote the initial plug-in. SB and LF updated the project and are the current administrators. They deal with all community requests and ensure full functionality of the plug-in. SB wrote the manuscript. CS designed the core library and provides continuous support. All authors read and approved the final manuscript.
  12 in total

1.  Chemical Markup, XML, and the World Wide Web. 7. CMLSpect, an XML vocabulary for spectral data.

Authors:  Stefan Kuhn; Tobias Helmus; Robert J Lancashire; Peter Murray-Rust; Henry S Rzepa; Christoph Steinbeck; Egon L Willighagen
Journal:  J Chem Inf Model       Date:  2007-09-22       Impact factor: 4.956

2.  Chemical name to structure: OPSIN, an open source solution.

Authors:  Daniel M Lowe; Peter T Corbett; Peter Murray-Rust; Robert C Glen
Journal:  J Chem Inf Model       Date:  2011-03-09       Impact factor: 4.956

3.  Visual characterization and diversity quantification of chemical libraries: 1. creation of delimited reference chemical subspaces.

Authors:  Vincent Le Guilloux; Lionel Colliandre; Stéphane Bourg; Guillaume Guénegou; Julie Dubois-Chevalier; Luc Morin-Allory
Journal:  J Chem Inf Model       Date:  2011-08-03       Impact factor: 4.956

4.  myExperiment: a repository and social network for the sharing of bioinformatics workflows.

Authors:  Carole A Goble; Jiten Bhagat; Sergejs Aleksejevs; Don Cruickshank; Danius Michaelides; David Newman; Mark Borkum; Sean Bechhofer; Marco Roos; Peter Li; David De Roure
Journal:  Nucleic Acids Res       Date:  2010-05-25       Impact factor: 16.971

5.  A graph-based approach for designing extensible pipelines.

Authors:  Maíra R Rodrigues; Wagner C S Magalhães; Moara Machado; Eduardo Tarazona-Santos
Journal:  BMC Bioinformatics       Date:  2012-07-12       Impact factor: 3.169

6.  HiTSEE KNIME: a visualization tool for hit selection and analysis in high-throughput screening experiments for the KNIME platform.

Authors:  Hendrik Strobelt; Enrico Bertini; Joachim Braun; Oliver Deussen; Ulrich Groth; Thomas U Mayer; Dorit Merhof
Journal:  BMC Bioinformatics       Date:  2012-05-18       Impact factor: 3.169

7.  Open Babel: An open chemical toolbox.

Authors:  Noel M O'Boyle; Michael Banck; Craig A James; Chris Morley; Tim Vandermeersch; Geoffrey R Hutchison
Journal:  J Cheminform       Date:  2011-10-07       Impact factor: 5.514

8.  Knime4Bio: a set of custom nodes for the interpretation of next-generation sequencing data with KNIME.

Authors:  Pierre Lindenbaum; Solena Le Scouarnec; Vincent Portero; Richard Redon
Journal:  Bioinformatics       Date:  2011-10-07       Impact factor: 6.937

9.  The Chemistry Development Kit (CDK): an open-source Java library for Chemo- and Bioinformatics.

Authors:  Christoph Steinbeck; Yongquan Han; Stefan Kuhn; Oliver Horlacher; Edgar Luttmann; Egon Willighagen
Journal:  J Chem Inf Comput Sci       Date:  2003 Mar-Apr

10.  The ChEBI reference database and ontology for biologically relevant chemistry: enhancements for 2013.

Authors:  Janna Hastings; Paula de Matos; Adriano Dekker; Marcus Ennis; Bhavana Harsha; Namrata Kale; Venkatesh Muthukrishnan; Gareth Owen; Steve Turner; Mark Williams; Christoph Steinbeck
Journal:  Nucleic Acids Res       Date:  2012-11-24       Impact factor: 16.971

View more
  46 in total

Review 1.  Open source molecular modeling.

Authors:  Somayeh Pirhadi; Jocelyn Sunseri; David Ryan Koes
Journal:  J Mol Graph Model       Date:  2016-07-30       Impact factor: 2.518

2.  Binding site characterization - similarity, promiscuity, and druggability.

Authors:  Christiane Ehrt; Tobias Brinkjost; Oliver Koch
Journal:  Medchemcomm       Date:  2019-06-06       Impact factor: 3.597

3.  Conformational ensemble comparison for small molecules in drug discovery.

Authors:  Matthew Habgood
Journal:  J Comput Aided Mol Des       Date:  2018-07-09       Impact factor: 3.686

4.  Computational analysis of kinase inhibitor selectivity using structural knowledge.

Authors:  Yu-Chen Lo; Tianyun Liu; Kari M Morrissey; Satoko Kakiuchi-Kiyota; Adam R Johnson; Fabio Broccatelli; Yu Zhong; Amita Joshi; Russ B Altman
Journal:  Bioinformatics       Date:  2019-01-15       Impact factor: 6.937

5.  Exploring Protein-Protein Interactions as Drug Targets for Anti-cancer Therapy with In Silico Workflows.

Authors:  Alexander Goncearenco; Minghui Li; Franco L Simonetti; Benjamin A Shoemaker; Anna R Panchenko
Journal:  Methods Mol Biol       Date:  2017

6.  Molecular Properties of Drugs Interacting with SLC22 Transporters OAT1, OAT3, OCT1, and OCT2: A Machine-Learning Approach.

Authors:  Henry C Liu; Anne Goldenberg; Yuchen Chen; Christina Lun; Wei Wu; Kevin T Bush; Natasha Balac; Paul Rodriguez; Ruben Abagyan; Sanjay K Nigam
Journal:  J Pharmacol Exp Ther       Date:  2016-08-03       Impact factor: 4.030

7.  Identification of adaptive inhibitors of Cryptosporidium parvum fatty acyl-coenzyme A synthetase isoforms by virtual screening.

Authors:  Somdeb Chattopadhyay; Rajani Kanta Mahapatra
Journal:  Parasitol Res       Date:  2019-09-05       Impact factor: 2.289

Review 8.  Increasing rigor in NMR-based metabolomics through validated and open source tools.

Authors:  Hamid R Eghbalnia; Pedro R Romero; William M Westler; Kumaran Baskaran; Eldon L Ulrich; John L Markley
Journal:  Curr Opin Biotechnol       Date:  2016-09-16       Impact factor: 9.740

9.  A ligand-based computational drug repurposing pipeline using KNIME and Programmatic Data Access: case studies for rare diseases and COVID-19.

Authors:  Alzbeta Tuerkova; Barbara Zdrazil
Journal:  J Cheminform       Date:  2020-11-25       Impact factor: 5.514

10.  Continuous Evaluation of Ligand Protein Predictions: A Weekly Community Challenge for Drug Docking.

Authors:  Jeffrey R Wagner; Christopher P Churas; Shuai Liu; Robert V Swift; Michael Chiu; Chenghua Shao; Victoria A Feher; Stephen K Burley; Michael K Gilson; Rommie E Amaro
Journal:  Structure       Date:  2019-06-27       Impact factor: 5.006

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.