Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- chemistry
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# OpenChemIE Data
|
| 8 |
+
|
| 9 |
+
Complete instructions for running OpenChemIE can be found at this [github repository](https://github.com/CrystalEye42/OpenChemIE).
|
| 10 |
+
Additionally, the web interface is located at [https://mit.openchemie.info/](https://mit.openchemie.info/).
|
| 11 |
+
|
| 12 |
+
The images associated with the annotated dataset for R-group resolution can be downloaded [here](r_group_resolution_diagrams.zip) and the annotations are located at
|
| 13 |
+
[r_group_resolution_data.json](r_group_resolution_data.json).
|
| 14 |
+
|
| 15 |
+
The annotations take the following format:
|
| 16 |
+
```python
|
| 17 |
+
[
|
| 18 |
+
{
|
| 19 |
+
"file_name": "acs.joc.2c00176 example 1.png",
|
| 20 |
+
"reaction_template": {
|
| 21 |
+
"reactants": [
|
| 22 |
+
"*C(=O)NN=CC(F)(F)F",
|
| 23 |
+
"N#CN"
|
| 24 |
+
],
|
| 25 |
+
"products": [
|
| 26 |
+
"*C(=O)N1NC(C(F)(F)F)N=C1N"
|
| 27 |
+
]
|
| 28 |
+
},
|
| 29 |
+
"detailed_reactions": {
|
| 30 |
+
"a": {
|
| 31 |
+
"reactants": [
|
| 32 |
+
"O=C(NN=CC(F)(F)F)c1ccccc1",
|
| 33 |
+
"N#CN"
|
| 34 |
+
],
|
| 35 |
+
"products": [
|
| 36 |
+
"NC1=NC(C(F)(F)F)NN1C(=O)c1ccccc1"
|
| 37 |
+
]
|
| 38 |
+
},
|
| 39 |
+
# more reactions
|
| 40 |
+
}
|
| 41 |
+
},
|
| 42 |
+
# more diagrams
|
| 43 |
+
]
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
Additionally, notebooks that aided the annotation process can be accessed [here](r_group_annotation_notebooks.zip).
|
| 47 |
+
|
| 48 |
+
Data and diagrams used in the comparison against Reaxys are also in this repository.
|