• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

app/H09-Aug-2019-4,9763,157

base/H09-Aug-2019-397,111301,953

bundle/H09-Aug-2019-342334

descriptor/H09-Aug-2019-68,83443,134

display/H09-Aug-2019-26,21013,718

doc/H09-Aug-2019-10,3758,969

legacy/H09-Aug-2019-69,87240,677

misc/H09-Aug-2019-36,03728,032

src/site/apt/H09-Aug-2019-32

storage/H09-Aug-2019-116,69686,457

tool/H09-Aug-2019-205,517166,065

.gitignoreH A D09-Aug-2019303 2625

.travis.ymlH A D09-Aug-201955 43

README.mdH A D09-Aug-20193.6 KiB7651

checkstyle.xmlH A D09-Aug-2019648 2321

pom.xmlH A D09-Aug-201928.6 KiB820781

README.md

1[![Build Status](https://travis-ci.org/cdk/cdk.svg?branch=master)](https://travis-ci.org/cdk/cdk)
2[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.openscience.cdk/cdk/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.openscience.cdk/cdk)
3
4# The Chemistry Development Kit (CDK)
5
6Copyright © 1997-2019 The CDK Development Team
7
8License: LGPL v2, see LICENSE.txt
9
10[Home Page](https://cdk.github.io/) | [JavaDoc](http://cdk.github.io/cdk/latest/docs/api/index.html?overview-summary.html) | [Wiki](https://github.com/cdk/cdk/wiki) | [Issues](https://github.com/cdk/cdk/issues) | [Mailing List](https://sourceforge.net/projects/cdk/lists/cdk-user)
11
12## Introduction
13
14The CDK is an open-source Java library for cheminformatics and bioinformatics.
15
16Key Features:
17  * Molecule and reaction valence bond representation.
18  * Read and write file formats: SMILES, SDF, InChI, Mol2, CML, and others.
19  * Efficient molecule processing algorithms: Ring Finding, Kekulisation, Aromaticity.
20  * Coordinate generation and rendering.
21  * Canonical identifiers for fast exact searching.
22  * Substructure and SMARTS pattern searching.
23  * ECFP, Daylight, MACCS, and other fingerprint methods for similarity searching.
24  * QSAR descriptor calculations
25
26## Install
27
28The CDK is a class library intended to be used by other programs, it will not run as a stand-alone program.
29
30The library is built with Apache Maven and currently requires Java 1.7 or later. From the root of the project run to build the JAR files for each module. The ``bundle/target/`` directory contains the main JAR with all dependencies included:
31
32```bash
33$ mvn install
34```
35
36You can also download a pre-built library JAR from [releases](https://github.com/cdk/cdk/releases).
37
38Include the main JAR on the Java classpath when compiling and running your code:
39
40```bash
41$ javac -cp cdk-2.2.jar MyClass.java
42$ java -cp cdk-2.2.jar:. MyClass
43```
44
45If you are using Maven, you can use the **uber** ``cdk-bundle``, note it is much more efficient to use include
46the modules you need:
47
48```xml
49<dependency>
50  <artifactId>cdk-bundle</artifactId>
51  <groupId>org.openscience.cdk</groupId>
52  <version>2.2</version>
53</dependency>
54```
55
56If you are a Python user, the Cinfony project provides access via [Jython](http://www.redbrick.dcu.ie/~noel/CDKJython.html). Noel O'Boyle's [Cinfony](http://cinfony.github.io/) provides a wrapper around the CDK and over toolkits exposing core functionality as a consistent API.
57
58Further details on building the project in integrated development environments (IDEs) are available on the wiki:
59 * [Building the CDK](https://github.com/cdk/cdk/wiki/Building-CDK)
60 * [Maven Reporting Plugins](https://github.com/cdk/cdk/wiki/Maven-Reporting-Plugins)
61
62## Getting Help
63
64The [Toolkit-Rosetta Wiki Page](https://github.com/cdk/cdk/wiki/Toolkit-Rosetta) provides some examples for common tasks. If you need help using the CDK and have questions please use the user mailing list, [``cdk-user@lists.sf.net``](mailto:cdk-user@lists.sf.net) (**you must [subscribe here]( https://sourceforge.net/projects/cdk/lists/cdk-user) first to post**).
65
66## Acknowledgments
67
68![YourKit Logo](https://www.yourkit.com/images/yklogo.png)
69
70The CDK developers use YourKit to profile and optimise code.
71
72YourKit supports open source projects with its full-featured Java Profiler.
73YourKit, LLC is the creator of <a href="https://www.yourkit.com/java/profiler/index.jsp">YourKit Java Profiler</a>
74and <a href="https://www.yourkit.com/.net/profiler/index.jsp">YourKit .NET Profiler</a>,
75innovative and intelligent tools for profiling Java and .NET applications.
76