rdworks 0.25.7__py3-none-any.whl
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.
- rdworks/__init__.py +35 -0
- rdworks/autograph/__init__.py +4 -0
- rdworks/autograph/autograph.py +184 -0
- rdworks/autograph/centroid.py +90 -0
- rdworks/autograph/dynamictreecut.py +135 -0
- rdworks/autograph/nmrclust.py +123 -0
- rdworks/autograph/rckmeans.py +74 -0
- rdworks/bitqt/__init__.py +1 -0
- rdworks/bitqt/bitqt.py +355 -0
- rdworks/conf.py +374 -0
- rdworks/descriptor.py +36 -0
- rdworks/display.py +206 -0
- rdworks/ionized.py +170 -0
- rdworks/matchedseries.py +260 -0
- rdworks/mol.py +1522 -0
- rdworks/mollibr.py +887 -0
- rdworks/pka.py +38 -0
- rdworks/predefined/Asinex_fragment.xml +20 -0
- rdworks/predefined/Astex_RO3.xml +16 -0
- rdworks/predefined/Baell2010_PAINS/Baell2010A.xml +52 -0
- rdworks/predefined/Baell2010_PAINS/Baell2010B.xml +169 -0
- rdworks/predefined/Baell2010_PAINS/Baell2010C.xml +1231 -0
- rdworks/predefined/Baell2010_PAINS/PAINS-less-than-015-hits.xml +2048 -0
- rdworks/predefined/Baell2010_PAINS/PAINS-less-than-150-hits.xml +278 -0
- rdworks/predefined/Baell2010_PAINS/PAINS-more-than-150-hits.xml +83 -0
- rdworks/predefined/Baell2010_PAINS/makexml.py +70 -0
- rdworks/predefined/Brenk2008_Dundee/makexml.py +21 -0
- rdworks/predefined/CNS.xml +18 -0
- rdworks/predefined/ChEMBL_Walters/BMS.xml +543 -0
- rdworks/predefined/ChEMBL_Walters/Dundee.xml +318 -0
- rdworks/predefined/ChEMBL_Walters/Glaxo.xml +168 -0
- rdworks/predefined/ChEMBL_Walters/Inpharmatica.xml +276 -0
- rdworks/predefined/ChEMBL_Walters/LINT.xml +174 -0
- rdworks/predefined/ChEMBL_Walters/MLSMR.xml +351 -0
- rdworks/predefined/ChEMBL_Walters/PAINS.xml +1446 -0
- rdworks/predefined/ChEMBL_Walters/SureChEMBL.xml +501 -0
- rdworks/predefined/ChEMBL_Walters/makexml.py +40 -0
- rdworks/predefined/Hann1999_Glaxo/Hann1999.xml +168 -0
- rdworks/predefined/Hann1999_Glaxo/Hann1999Acid.xml +102 -0
- rdworks/predefined/Hann1999_Glaxo/Hann1999Base.xml +6 -0
- rdworks/predefined/Hann1999_Glaxo/Hann1999ElPh.xml +6 -0
- rdworks/predefined/Hann1999_Glaxo/Hann1999NuPh.xml +6 -0
- rdworks/predefined/Hann1999_Glaxo/makexml.py +83 -0
- rdworks/predefined/Kazius2005/Kazius2005.xml +114 -0
- rdworks/predefined/Kazius2005/makexml.py +66 -0
- rdworks/predefined/ZINC_druglike.xml +24 -0
- rdworks/predefined/ZINC_fragment.xml +14 -0
- rdworks/predefined/ZINC_leadlike.xml +15 -0
- rdworks/predefined/fragment.xml +7 -0
- rdworks/predefined/ionized/simple_smarts_pattern.csv +57 -0
- rdworks/predefined/ionized/smarts_pattern.csv +107 -0
- rdworks/predefined/misc/makexml.py +119 -0
- rdworks/predefined/misc/reactive-part-2.xml +104 -0
- rdworks/predefined/misc/reactive-part-3.xml +74 -0
- rdworks/predefined/misc/reactive.xml +321 -0
- rdworks/readin.py +312 -0
- rdworks/rgroup.py +2173 -0
- rdworks/scaffold.py +520 -0
- rdworks/std.py +143 -0
- rdworks/stereoisomers.py +127 -0
- rdworks/tautomers.py +20 -0
- rdworks/units.py +63 -0
- rdworks/utils.py +495 -0
- rdworks/xml.py +260 -0
- rdworks-0.25.7.dist-info/METADATA +37 -0
- rdworks-0.25.7.dist-info/RECORD +69 -0
- rdworks-0.25.7.dist-info/WHEEL +5 -0
- rdworks-0.25.7.dist-info/licenses/LICENSE +21 -0
- rdworks-0.25.7.dist-info/top_level.txt +1 -0
rdworks/xml.py
ADDED
@@ -0,0 +1,260 @@
|
|
1
|
+
"""
|
2
|
+
This module contains XML definitions for substructure and descriptor matching.
|
3
|
+
|
4
|
+
Available descriptors:
|
5
|
+
|
6
|
+
Name | Description | RDKit function
|
7
|
+
------------- | ----------------------------------------- | --------------------------------------
|
8
|
+
HAC | Num. of Non-H atoms | Descriptors.HeavyAtomCount
|
9
|
+
HBA | Num. of H-bond acceptors | Descriptors.NumHAcceptors
|
10
|
+
HBD | Num. of H-bond donors | Descriptors.NumHDonors
|
11
|
+
LipinskiHBA | Num. of Lipinski H-bond acceptors | rdMolDescriptors.CalcNumLipinskiHBA
|
12
|
+
LipinskiHBD | Num. of Lipinski H-bond donors | rdMolDescriptors.CalcNumLipinskiHBD
|
13
|
+
MolWt | Molecular weight | Descriptors.MolWt
|
14
|
+
TPSA | Topological polar surface area | Descriptors.TPSA
|
15
|
+
LogP | log(octanol/water partition coefficient) | Descriptors.MolLogP
|
16
|
+
RotBonds | Num. of rotatable bonds | Descriptors.NumRotatableBonds
|
17
|
+
RingCount | Num. of rings | Descriptors.RingCount
|
18
|
+
FCsp3 | fraction of C atoms that are Sp3 | Descriptors.FractionCSP3
|
19
|
+
rdHBD | Num. of H-bond donors | rdMolDescriptors.CalcNumHBD
|
20
|
+
rdHBA | Num. of H-bond acceptors | rdMolDescriptors.CalcNumHBA
|
21
|
+
rdRingCount | Num. of rings | rdMolDescriptors.CalcNumRings
|
22
|
+
rdRotBondst | Num. of rotatable bonds | rdMolDescriptors.CalcNumRotatableBonds
|
23
|
+
rdFCsp3 | fraction of C atoms that are Sp3 | rdMolDescriptors.CalcFractionCSP3
|
24
|
+
Hetero | Num. of non-H and non-C atoms | rdMolDescriptors.CalcNumHeteroatoms
|
25
|
+
ALogP | Wildman-Crippen LogP value | Crippen.MolLogP
|
26
|
+
QED | Quantitative estimation of drug-likeness | QED.qed
|
27
|
+
PSA | MOE-like molecular surface area | MolSurf.TPSA
|
28
|
+
StereoCenters | Num. of atom stereo centers | rdMolDescriptors.CalcNumAtomStereoCenters
|
29
|
+
|
30
|
+
References:
|
31
|
+
|
32
|
+
1. `alert_collection.csv` is copied from Patrick Walters' blog and github:
|
33
|
+
- http://practicalcheminformatics.blogspot.com/2018/08/filtering-chemical-libraries.html
|
34
|
+
- https://github.com/PatWalters/rd_filters
|
35
|
+
1. Jeroen Kazius, Ross McGuire, and Roberta Bursi.
|
36
|
+
Derivation and Validation of Toxicophores for Mutagenicity Prediction.
|
37
|
+
J. Med. Chem. 2005, 48, 312-320.
|
38
|
+
1. J. F. Blake.
|
39
|
+
Identification and Evaluation of Molecular Properties Related to Preclinical Optimization and Clinical Fate.
|
40
|
+
Med Chem. 2005, 1, 649-55.
|
41
|
+
1. Mike Hann, Brian Hudson, Xiao Lewell, Rob Lifely, Luke Miller, and Nigel Ramsden.
|
42
|
+
Strategic Pooling of Compounds for High-Throughput Screening.
|
43
|
+
J. Chem. Inf. Comput. Sci. 1999, 39, 897-902.
|
44
|
+
1. Jonathan B. Baell and Georgina A. Holloway. New Substructure Filters for Removal of Pan Assay Interference Compounds (PAINS)
|
45
|
+
from Screening Libraries and for Their Exclusion in Bioassays.
|
46
|
+
J. Med. Chem. 2010, 53, 2719-2740.
|
47
|
+
1. Bradley C. Pearce, Michael J. Sofia, Andrew C. Good, Dieter M. Drexler, and David A. Stock.
|
48
|
+
An Empirical Process for the Design of High-Throughput Screening Deck Filters.
|
49
|
+
J. Chem. Inf. Model. 2006, 46, 1060-1068.
|
50
|
+
1. Ruth Brenk, Alessandro Schipani, Daniel James, Agata Krasowski, Ian Hugh Gilbert, Julie Frearson aand Paul Graham Wyatt.
|
51
|
+
Lessons learnt from assembling screening libraries for drug discovery for neglected diseases.
|
52
|
+
ChemMedChem. 2008, 3, 435-44.
|
53
|
+
1. Sivaraman Dandapani, Gerard Rosse, Noel Southall, Joseph M. Salvino, Craig J. Thomas.
|
54
|
+
Selecting, Acquiring, and Using Small Molecule Libraries for High‐Throughput Screening.
|
55
|
+
Curr Protoc Chem Biol. 2012, 4, 177–191.
|
56
|
+
1. Huth JR, Mendoza R, Olejniczak ET, Johnson RW, Cothron DA, Liu Y, Lerner CG, Chen J, Hajduk PJ.
|
57
|
+
ALARM NMR: a rapid and robust experimental method to detect reactive false positives in biochemical screens.
|
58
|
+
J Am Chem Soc. 2005, 127, 217-24.
|
59
|
+
- identificaiton of thiol reactive compounds by monitoring DTT-dependent 13-C chemical shift changes
|
60
|
+
of the human La protein in the presence of a test compound
|
61
|
+
|
62
|
+
|
63
|
+
Attributes:
|
64
|
+
predefined_xml (Dict[Dict]): dictionary of XML files.
|
65
|
+
"""
|
66
|
+
|
67
|
+
import os
|
68
|
+
import importlib.resources
|
69
|
+
import pathlib
|
70
|
+
import xml.etree.ElementTree as ET
|
71
|
+
from typing import List, Tuple, Union
|
72
|
+
|
73
|
+
|
74
|
+
predefined_xml = {
|
75
|
+
"Zinc_fragment" : {
|
76
|
+
"Path" : "ZINC_fragment.xml",
|
77
|
+
"Description" : "ZINC's fragment-like criteria",
|
78
|
+
"Reference" : "ZINC",
|
79
|
+
},
|
80
|
+
"Zinc_leadlike" : {
|
81
|
+
"Path" : "ZINC_leadlike.xml",
|
82
|
+
"Description" : "ZINC's lead-like criteria",
|
83
|
+
"Reference" : "ZINC",
|
84
|
+
},
|
85
|
+
"Zinc_druglike" : {
|
86
|
+
"Path" : "ZINC_druglike.xml",
|
87
|
+
"Description" : "ZINC's drug-like criteria",
|
88
|
+
"Reference" : "ZINC",
|
89
|
+
},
|
90
|
+
"fragment" : {
|
91
|
+
"Path" : "fragment.xml",
|
92
|
+
"Description" : "fragment",
|
93
|
+
"Reference" : "",
|
94
|
+
},
|
95
|
+
"MLSMR" : {
|
96
|
+
"Path" : "ChEMBL_Walters/MLSMR.xml",
|
97
|
+
"Description" : "NIH Mol. Lib. Small Molecule Repository filters",
|
98
|
+
"Reference" : "Dandapani et al. (2012)",
|
99
|
+
},
|
100
|
+
"CNS" : {
|
101
|
+
"Path" : "CNS.xml",
|
102
|
+
"Description" : "CNS MPO descriptors",
|
103
|
+
"Reference" : "Wager et al. (2010)",
|
104
|
+
},
|
105
|
+
"PAINS" : {
|
106
|
+
"Path" : "Baell2010_PAINS/Baell2010A.xml",
|
107
|
+
"Description" : "Pan Assay Interference (>150 hits)",
|
108
|
+
"Reference" : "Baell et al. (2010)",
|
109
|
+
},
|
110
|
+
"Dundee" : {
|
111
|
+
"Path" : "ChEMBL_Walters/Dundee.xml",
|
112
|
+
"Description" : "Dundee NTD library filters",
|
113
|
+
"Reference" : "Brenk et al. (2008)",
|
114
|
+
},
|
115
|
+
"BMS" : {
|
116
|
+
"Path" : "ChEMBL_Walters/BMS.xml",
|
117
|
+
"Description" : "BMS HTS deck filters",
|
118
|
+
"Reference" : "Pearce et al. (2006)",
|
119
|
+
},
|
120
|
+
"LINT" : {
|
121
|
+
"Path" : "ChEMBL_Walters/LINT.xml",
|
122
|
+
"Description" : "Pfizer LINT filters",
|
123
|
+
"Reference" : "Blake (2005)",
|
124
|
+
},
|
125
|
+
"Toxicophore" : {
|
126
|
+
"Path" : "Kazius2005/Kazius2005.xml",
|
127
|
+
"Description" : "Toxicophores for mutagenicity",
|
128
|
+
"Reference" : "Kazius et al. (2005)",
|
129
|
+
},
|
130
|
+
"Glaxo" : {
|
131
|
+
"Path" : "ChEMBL_Walters/Glaxo.xml",
|
132
|
+
"Description" : "Glaxo hard filters",
|
133
|
+
"Reference" : "Hann et al. (1999)",
|
134
|
+
},
|
135
|
+
"Acid" : {
|
136
|
+
"Path" : "Hann1999_Glaxo/Hann1999Acid.xml",
|
137
|
+
"Description" : "acid",
|
138
|
+
"Reference" : "Hann et al. (1999)",
|
139
|
+
},
|
140
|
+
"Base" : {
|
141
|
+
"Path" : "Hann1999_Glaxo/Hann1999Base.xml",
|
142
|
+
"Description" : "base",
|
143
|
+
"Reference" : "Hann et al. (1999)",
|
144
|
+
},
|
145
|
+
"Nucleophile" : {
|
146
|
+
"Path" : "Hann1999_Glaxo/Hann1999NuPh.xml",
|
147
|
+
"Description" : "nucleophile",
|
148
|
+
"Reference" : "Hann et al. (1999)",
|
149
|
+
},
|
150
|
+
"Electrophile" : {
|
151
|
+
"Path" : "Hann1999_Glaxo/Hann1999ElPh.xml",
|
152
|
+
"Description" : "electrophile",
|
153
|
+
"Reference" : "Hann et al. (1999)",
|
154
|
+
},
|
155
|
+
"Inpharmatica" : {
|
156
|
+
"Path" : "ChEMBL_Walters/Inpharmatica.xml",
|
157
|
+
"Description" : "Inpharmatica unwanted fragments",
|
158
|
+
"Reference" : "ChEMBL",
|
159
|
+
},
|
160
|
+
"SureChEMBL" : {
|
161
|
+
"Path" : "ChEMBL_Walters/SureChEMBL.xml",
|
162
|
+
"Description" : "SureChEMBL filter",
|
163
|
+
"Reference" : "ChEMBL",
|
164
|
+
},
|
165
|
+
"Reactive" : {
|
166
|
+
"Path" : "misc/reactive.xml",
|
167
|
+
"Description" : "reactive functional groups",
|
168
|
+
"Reference" : "",
|
169
|
+
},
|
170
|
+
"Astex_RO3" : {
|
171
|
+
"Path" : "Astex_RO3.xml",
|
172
|
+
"Description" : "Astex rule of 3",
|
173
|
+
"Reference" : "Astex",
|
174
|
+
},
|
175
|
+
"Asinex_fragment" : {
|
176
|
+
"Path" : "Asinex_fragment.xml",
|
177
|
+
"Description" : "Asinex's fragment",
|
178
|
+
"Reference" : "Asinex",
|
179
|
+
},
|
180
|
+
}
|
181
|
+
|
182
|
+
|
183
|
+
def list_predefined_xml() -> str:
|
184
|
+
"""Returns text output of list of predefined xml.
|
185
|
+
|
186
|
+
Returns:
|
187
|
+
str: text output of list of predefined xml
|
188
|
+
"""
|
189
|
+
s = f"\n| {'Name':<18} | {'Description':<48} | {'Reference':<23} |\n"
|
190
|
+
s += f"| {'-'*18} | {'-'*48} | {'-'*23} |\n"
|
191
|
+
for k,v in predefined_xml.items():
|
192
|
+
s += f"| {k:<18} | {v['Description']:<48} | {v['Reference']:<23} |\n"
|
193
|
+
return s
|
194
|
+
|
195
|
+
|
196
|
+
def get_predefined_xml(name:str) -> os.PathLike:
|
197
|
+
"""Returns matched predefined xml file.
|
198
|
+
|
199
|
+
Args:
|
200
|
+
name (str): name of predefined entry.
|
201
|
+
|
202
|
+
Returns:
|
203
|
+
os.PathLike: path to the xml file.
|
204
|
+
"""
|
205
|
+
t = name.upper()
|
206
|
+
n = len(t)
|
207
|
+
path = None
|
208
|
+
for k in predefined_xml:
|
209
|
+
if k.upper()[:n] == t:
|
210
|
+
datadir = importlib.resources.files('rdworks.predefined')
|
211
|
+
path = pathlib.Path(datadir / predefined_xml[k]['Path'])
|
212
|
+
break
|
213
|
+
if path is None:
|
214
|
+
raise ValueError(f'is_matching() cannot find the xml file for {name}')
|
215
|
+
return path
|
216
|
+
|
217
|
+
|
218
|
+
def parse_xml(path:os.PathLike) -> Tuple:
|
219
|
+
"""Parse a XML file.
|
220
|
+
|
221
|
+
Args:
|
222
|
+
path (os.PathLike): filename of the xml.
|
223
|
+
|
224
|
+
Returns:
|
225
|
+
Tuple: parsed results.
|
226
|
+
"""
|
227
|
+
tree = ET.parse(path)
|
228
|
+
root = tree.getroot()
|
229
|
+
terms = []
|
230
|
+
try:
|
231
|
+
combine = root.attrib['combine'].upper()
|
232
|
+
except:
|
233
|
+
combine = 'OR' # default
|
234
|
+
for child in root:
|
235
|
+
name = child.attrib['name']
|
236
|
+
if child.tag == 'substructure':
|
237
|
+
smarts = child.find('SMARTS').text
|
238
|
+
terms.append((name, smarts, 0.0, 0.0))
|
239
|
+
elif child.tag == 'descriptor':
|
240
|
+
L = child.find('min')
|
241
|
+
U = child.find('max')
|
242
|
+
lb = float(L.text) if L is not None else None
|
243
|
+
ub = float(U.text) if U is not None else None
|
244
|
+
terms.append((name, None, lb, ub))
|
245
|
+
|
246
|
+
# # parse SMARTS definitions
|
247
|
+
# for substructure in tree.findall('substructure'):
|
248
|
+
# name = substructure.get('name')
|
249
|
+
# smarts = substructure.find('SMARTS').text
|
250
|
+
# terms.append((name, smarts, 0.0, 0.0))
|
251
|
+
# # parse descriptors lower and upper bounds
|
252
|
+
# for descriptor in tree.findall('descriptor'):
|
253
|
+
# name = descriptor.get('name')
|
254
|
+
# L = descriptor.find('min')
|
255
|
+
# U = descriptor.find('max')
|
256
|
+
# lb = float(L.text) if L is not None else None
|
257
|
+
# ub = float(U.text) if U is not None else None
|
258
|
+
# terms.append((name, '', lb, ub))
|
259
|
+
|
260
|
+
return (terms, combine)
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: rdworks
|
3
|
+
Version: 0.25.7
|
4
|
+
Summary: Cheminformatics and AI/ML Work Built on RDKit
|
5
|
+
Author-email: Sung-Hun Bae <sunghun.bae@gmail.com>
|
6
|
+
Maintainer-email: Sung-Hun Bae <sunghun.bae@gmail.com>
|
7
|
+
License-Expression: MIT
|
8
|
+
Project-URL: Homepage, https://github.com/sunghunbae/rdworks
|
9
|
+
Project-URL: Repository, https://github.com/sunghunbae/rdworks.git
|
10
|
+
Project-URL: Issues, https://github.com/sunghunbae/rdworks/issues
|
11
|
+
Project-URL: Changelog, https://github.com/sunghunbae/rdworks/blob/master/CHANGELOG.md
|
12
|
+
Project-URL: Documentation, https://sunghunbae.github.io/rdworks/
|
13
|
+
Keywords: neural-network-potential,cheminformatics,rdkit
|
14
|
+
Classifier: Development Status :: 3 - Alpha
|
15
|
+
Classifier: Intended Audience :: Developers
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
17
|
+
Classifier: Operating System :: OS Independent
|
18
|
+
Requires-Python: >=3.11
|
19
|
+
Description-Content-Type: text/markdown
|
20
|
+
License-File: LICENSE
|
21
|
+
Requires-Dist: numpy
|
22
|
+
Requires-Dist: scipy
|
23
|
+
Requires-Dist: scikit-learn
|
24
|
+
Requires-Dist: pandas
|
25
|
+
Requires-Dist: seaborn
|
26
|
+
Requires-Dist: networkx
|
27
|
+
Requires-Dist: tqdm
|
28
|
+
Requires-Dist: psutil
|
29
|
+
Requires-Dist: ase
|
30
|
+
Requires-Dist: rdkit>=2023
|
31
|
+
Requires-Dist: bitarray
|
32
|
+
Requires-Dist: cdpkit
|
33
|
+
Requires-Dist: pytest
|
34
|
+
Dynamic: license-file
|
35
|
+
|
36
|
+
# rdworks
|
37
|
+
Higher level wrapper using RDKit
|
@@ -0,0 +1,69 @@
|
|
1
|
+
rdworks/__init__.py,sha256=dZaI7Hby8O_6cqWwxH9ea5_w5sLsHo3AVgUff8uXEzU,1561
|
2
|
+
rdworks/conf.py,sha256=c7BFSZ_WhlqJJjtqca2yS7c8OdWUz1XZwR4n3CewqB8,14563
|
3
|
+
rdworks/descriptor.py,sha256=34T_dQ6g8v3u-ym8TLKbQtxIIV5TEo-d3pdedq3o-cg,2106
|
4
|
+
rdworks/display.py,sha256=_OSARhvAPL9MZq4MHzNWS3eU3FiOThVGHhhB2PUEuZE,6736
|
5
|
+
rdworks/ionized.py,sha256=5oIjMRpkX792RIpEEE2Ir96icfFaN_h21mSihhfQPAw,6713
|
6
|
+
rdworks/matchedseries.py,sha256=A3ON4CUpQV159mu9VqgNiJ8uoQ9ePOry9d3ra4NCAgc,10377
|
7
|
+
rdworks/mol.py,sha256=aeTMesuG6QbyOR71gWRhoBp_1A7EdrKDzDCBfXLqtZ8,64965
|
8
|
+
rdworks/mollibr.py,sha256=o3O1-Fz4J9QpCT15n7h-MygBFKNP-P3v8jEni36itCM,33553
|
9
|
+
rdworks/pka.py,sha256=NVJVfpcNEMlX5QRyLBgUM7GIT7VMjO-llAR4LWc8J2c,1656
|
10
|
+
rdworks/readin.py,sha256=7j0r0U6BifZCAQ74Z5fFqmiq25mYClnenii0CtBCINI,11805
|
11
|
+
rdworks/rgroup.py,sha256=ivF2gzmRtt339rxEnkv2KfnCs0CUdBbnSje7Y54rtFI,57996
|
12
|
+
rdworks/scaffold.py,sha256=LTazmJ5uydUZSo-i4XDowGO7Bvx3M9H1Ke-XfS5UP94,22023
|
13
|
+
rdworks/std.py,sha256=0EIrI_49npO0-XlJiMYuBo_SIhqzj8qD8YijunfWJXE,6096
|
14
|
+
rdworks/stereoisomers.py,sha256=g8hhPI-mbYX-MzbF1uAqo5fDZOCNiKYjxI-kLBGdGgg,4980
|
15
|
+
rdworks/tautomers.py,sha256=gtZHZJ-aJbryhBdljHbfjx7xhVW3u_OzdYPtwPail54,610
|
16
|
+
rdworks/units.py,sha256=2bkig_WyjkmdgCQIKL96VZwBAinFlIXDvJaEAaYEjAk,4240
|
17
|
+
rdworks/utils.py,sha256=puIMK41sry8FKGQ9-RrlqSYUQhiMtaE18C1HIZsVHlI,16794
|
18
|
+
rdworks/xml.py,sha256=aaMhwVRGvt1VzasaKDnkYnZ4kp2cIgvGb1CsmMgwQ_c,10704
|
19
|
+
rdworks/autograph/__init__.py,sha256=0Qfjwo0h4Q0n08zsqHRbuNOZms6MuNXnWErnQpQ6Px0,140
|
20
|
+
rdworks/autograph/autograph.py,sha256=frjsUaCTOD-Z1lYPzOxRoTtqMMiYroWAy6tSwKn3CUA,8769
|
21
|
+
rdworks/autograph/centroid.py,sha256=_V6pf3IhC-NtRC--rZIOUJSINWjnItqRlXoyaXuwxMU,4679
|
22
|
+
rdworks/autograph/dynamictreecut.py,sha256=G8REdgmnoYT9VwQCilVOYwDkto0urpe2RwTG1eY9sjo,5314
|
23
|
+
rdworks/autograph/nmrclust.py,sha256=NwFu8Wf_Sw55GePP1nl5Ja-BJQGV5czXT_HUm8OraTc,5238
|
24
|
+
rdworks/autograph/rckmeans.py,sha256=dcOrAWu7P48aH3ysQU-gkOx40rGivKW9lG_Kp1doDO4,2484
|
25
|
+
rdworks/bitqt/__init__.py,sha256=tT7iMn3nvCxxYjZf7JKB_RQ4DWnD7MVlZNdgLxTXbn0,43
|
26
|
+
rdworks/bitqt/bitqt.py,sha256=uf6aY-MP7pNcgUVcXqv2c7oG4EkaQUJu-ZBA54PLKu0,12886
|
27
|
+
rdworks/predefined/Asinex_fragment.xml,sha256=ZU5UUhNsWMvnqJG2aCbVyxAdEXb86aE6LRYUQyIgC3k,462
|
28
|
+
rdworks/predefined/Astex_RO3.xml,sha256=GvRVP-ZGkklg7ncEnUJGEzTMhWsBbz6Qqkbgl7hcKOM,315
|
29
|
+
rdworks/predefined/CNS.xml,sha256=FK05pdK9SaOk_qV3xaVi77QFUiPuTf7x5YHHk0h12Hs,497
|
30
|
+
rdworks/predefined/ZINC_druglike.xml,sha256=d1yHEoVbSjTltHcWnIsD_Iv-rE7boWAMM3KpG5SkPoE,649
|
31
|
+
rdworks/predefined/ZINC_fragment.xml,sha256=SeM2pns0a_mqkbc8ZIw1sCfwlUxJ4SfY0oZ6GsHOEVI,345
|
32
|
+
rdworks/predefined/ZINC_leadlike.xml,sha256=05-AS6RB1taXyQB7M6yo8U_BAgvbF79tPcgmebEAITc,424
|
33
|
+
rdworks/predefined/fragment.xml,sha256=4Ob1ha0GAMb4LGOwRM15QrzTDtwWQnmf8buRVDw_E_g,150
|
34
|
+
rdworks/predefined/Baell2010_PAINS/Baell2010A.xml,sha256=xVNjnZ9nc2r-ZIbrZkh-oKAAPe3V5Njsyys6XRwvoXs,2727
|
35
|
+
rdworks/predefined/Baell2010_PAINS/Baell2010B.xml,sha256=cZGUY7LvoWH2DdEtSYgvAOjXxDl_iTxjZXAmFTRcUKQ,9694
|
36
|
+
rdworks/predefined/Baell2010_PAINS/Baell2010C.xml,sha256=fXa1BEZ_VwRBiyPmWCaJpwYgN0k4vwmJDpvuQi7o2Yo,77351
|
37
|
+
rdworks/predefined/Baell2010_PAINS/PAINS-less-than-015-hits.xml,sha256=DiN7BDqzHZVlBBiKz_3FnE946C-arZzwI_ViFbC9xvM,100323
|
38
|
+
rdworks/predefined/Baell2010_PAINS/PAINS-less-than-150-hits.xml,sha256=d581YDP4CFf7L94yIUeq_NQaqgw7abQKSdcLkdlMCG4,12912
|
39
|
+
rdworks/predefined/Baell2010_PAINS/PAINS-more-than-150-hits.xml,sha256=9lG66n90nZ6PtNcbQqvGOm-0Vhp6gpmEe7_sKVpiuqo,3652
|
40
|
+
rdworks/predefined/Baell2010_PAINS/makexml.py,sha256=kBxeY_4AZCTBKa2vCeeHC96zXpOElomcI2IK8hgUCqY,1796
|
41
|
+
rdworks/predefined/Brenk2008_Dundee/makexml.py,sha256=ECbw2UdZPwyAJqmjvhtw8xyetAZ4Gf3MJsoouH2ULGI,597
|
42
|
+
rdworks/predefined/ChEMBL_Walters/BMS.xml,sha256=_SnJuZsKnliTF40FaMHAaOXnyI0j5_mn4g0vJHoL08Y,29113
|
43
|
+
rdworks/predefined/ChEMBL_Walters/Dundee.xml,sha256=v7Myt6hZ1Jo0bORAiy2YhIshK_2Xa7sGS3XA5LeXQ_8,11144
|
44
|
+
rdworks/predefined/ChEMBL_Walters/Glaxo.xml,sha256=AFXlVASdpJ7j_-GAbcdw5-a65WW2aOg64n1_xfaeut8,5956
|
45
|
+
rdworks/predefined/ChEMBL_Walters/Inpharmatica.xml,sha256=GYwpb2SzzGdkNZqEdBxeFaxthYCyQ-MhBHXCYFCb9l0,10315
|
46
|
+
rdworks/predefined/ChEMBL_Walters/LINT.xml,sha256=k3BGXhrLA2TOlX_qPUma4ogGUmzE4lUnC4iq6WffMgo,6039
|
47
|
+
rdworks/predefined/ChEMBL_Walters/MLSMR.xml,sha256=AQAiu0tJCh90p7fchFizXbqh_85TEGdVLOzoiWWBwy4,12444
|
48
|
+
rdworks/predefined/ChEMBL_Walters/PAINS.xml,sha256=fCTbbo-HcAYr-Y89MaxyQAddAR3cDWVdOrpECnvYrOQ,88250
|
49
|
+
rdworks/predefined/ChEMBL_Walters/SureChEMBL.xml,sha256=mREh6H39TQ6op-535vyCfWYJ4PPOZpwlOdx8bhFJ7ys,17638
|
50
|
+
rdworks/predefined/ChEMBL_Walters/makexml.py,sha256=8ivuZOlFG-p-M5ei9TPnEsmbG825H5ow1kJ3a8URLKE,1324
|
51
|
+
rdworks/predefined/Hann1999_Glaxo/Hann1999.xml,sha256=srA9TGGwqcWLNDOloJOp9StBNqzuD5va4QMBjUt1Zik,5680
|
52
|
+
rdworks/predefined/Hann1999_Glaxo/Hann1999Acid.xml,sha256=v-ZkhoTJWUv1NhxKqYy97-HRHtUsEBhTLtU_q625Cug,2925
|
53
|
+
rdworks/predefined/Hann1999_Glaxo/Hann1999Base.xml,sha256=8q74TAzPlz8dJM2W0XvANbYrmP0wof3k6Oyw09QERWY,336
|
54
|
+
rdworks/predefined/Hann1999_Glaxo/Hann1999ElPh.xml,sha256=sZQ6rQvgMRqAoHBSees2dWkEIChcGcXyyBxBJHLuhUw,402
|
55
|
+
rdworks/predefined/Hann1999_Glaxo/Hann1999NuPh.xml,sha256=g5vjQbp2e4VMIaNbumyxDjUlJYGABl3_VI5z5rh5p-8,318
|
56
|
+
rdworks/predefined/Hann1999_Glaxo/makexml.py,sha256=cPfB9lkfPRbtWIyxbPsGSxchw431aqX6T4pVoU8NkxM,2295
|
57
|
+
rdworks/predefined/Kazius2005/Kazius2005.xml,sha256=Bb0oi2imNc4nI5WHUTvvt2V8LUXLW4qQuHp4TNsMUlY,4400
|
58
|
+
rdworks/predefined/Kazius2005/makexml.py,sha256=WK1kCE9hkrXvagx64aG9wGU1YKgDCC_U8LE0b-2qHhg,3232
|
59
|
+
rdworks/predefined/ionized/simple_smarts_pattern.csv,sha256=dW2x0WXmyKsLBrENAUPcrMfT7eYJgYX7rE6ddk7JuuI,3373
|
60
|
+
rdworks/predefined/ionized/smarts_pattern.csv,sha256=Qn9eb9QKZ5To9dwf4F4B7wE4zZxwB5LTuMoOz_qqEPY,6804
|
61
|
+
rdworks/predefined/misc/makexml.py,sha256=T9c6ssKYdDzMkkcaCjEUe59nVPJfwJEoHm6RhkCeZic,3496
|
62
|
+
rdworks/predefined/misc/reactive-part-2.xml,sha256=0vNTMwWrrQmxBpbgbyRHx8sVs83cqn7xsfr5qqrelRA,3676
|
63
|
+
rdworks/predefined/misc/reactive-part-3.xml,sha256=LgWHSEbRTVmgBoIO45xbTo1xQJs0Xu51j3JnIapRYo4,3094
|
64
|
+
rdworks/predefined/misc/reactive.xml,sha256=syedoQ6VYUfRLnxy99ObuDniJ_a_WhrWAJbTKFfJ6VY,11248
|
65
|
+
rdworks-0.25.7.dist-info/licenses/LICENSE,sha256=UOkJSBqYyQUvtCp7a-vdCANeEcLE2dnTie_eB1By5SY,1074
|
66
|
+
rdworks-0.25.7.dist-info/METADATA,sha256=MPPTPV31tli5A7BDNvxgk6v8Zc-E_et8eIrP22C7gkU,1271
|
67
|
+
rdworks-0.25.7.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
68
|
+
rdworks-0.25.7.dist-info/top_level.txt,sha256=05C98HbvBK2axUBogC_hAT_CdpOeQYGnQ6vRAgawr8s,8
|
69
|
+
rdworks-0.25.7.dist-info/RECORD,,
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024-2025 Sung-Hun Bae
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1 @@
|
|
1
|
+
rdworks
|