openchemlib 8.0.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,12 +1,24 @@
1
1
  # OpenChemLib JS
2
2
 
3
- [![NPM version][npm-image]][npm-url]
4
- [![build status][ci-image]][ci-url]
5
- [![npm download][download-image]][download-url]
6
- [![DOI](https://www.zenodo.org/badge/23346814.svg)](https://www.zenodo.org/badge/latestdoi/23346814)
7
-
8
3
  JavaScript port of the [OpenChemLib](https://github.com/actelion/openchemlib) Java library.
9
4
 
5
+ <h3 align="center">
6
+
7
+ <a href="https://www.zakodium.com">
8
+ <img src="https://www.zakodium.com/brand/zakodium-logo-white.svg" width="50" alt="Zakodium logo" />
9
+ </a>
10
+
11
+ <p>
12
+ Maintained by <a href="https://www.zakodium.com">Zakodium</a>
13
+ </p>
14
+
15
+ [![NPM version][npm-image]][npm-url]
16
+ [![build status][ci-image]][ci-url]
17
+ [![npm download][download-image]][download-url]
18
+ [![DOI](https://www.zenodo.org/badge/23346814.svg)](https://www.zenodo.org/badge/latestdoi/23346814)
19
+
20
+ </h3>
21
+
10
22
  ## Installation
11
23
 
12
24
  ```console
@@ -48,7 +60,10 @@ It contains a structure viewer and a structure editor for browser applications.
48
60
  - [DrugScoreCalculator](https://cheminfo.github.io/openchemlib-js/modules/DrugScoreCalculator.html)
49
61
  - [ForceFieldMMFF94](https://cheminfo.github.io/openchemlib-js/classes/ForceFieldMMFF94.html)
50
62
  - [MoleculeProperties](https://cheminfo.github.io/openchemlib-js/classes/MoleculeProperties.html)
63
+ - [ReactionEncoder](https://cheminfo.github.io/openchemlib-js/classes/ReactionEncoder.html)
64
+ - [Reactor](https://cheminfo.github.io/openchemlib-js/classes/Reactor.html)
51
65
  - [ToxicityPredictor](https://cheminfo.github.io/openchemlib-js/classes/ToxicityPredictor.html)
66
+ - [Transformer](https://cheminfo.github.io/openchemlib-js/classes/Transformer.html)
52
67
 
53
68
  ### Modules present only in full build
54
69
 
package/core.d.ts CHANGED
@@ -1,12 +1,15 @@
1
1
  export * from './minimal';
2
2
  export {
3
3
  CanonizerUtil,
4
- IParameterizedString,
5
- MoleculeProperties,
4
+ ConformerGenerator,
6
5
  DruglikenessPredictor,
7
6
  DrugScoreCalculator,
8
- ToxicityPredictor,
9
- IInitializeConformersOptions,
10
- ConformerGenerator,
11
7
  ForceFieldMMFF94,
8
+ IInitializeConformersOptions,
9
+ IParameterizedString,
10
+ MoleculeProperties,
11
+ ReactionEncoder,
12
+ Reactor,
13
+ Transformer,
14
+ ToxicityPredictor,
12
15
  } from './types';