mtybilly commited on
Commit
274ae62
·
verified ·
1 Parent(s): 1d18d63

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: SupraDB-GEOM
4
+ tags:
5
+ - chemistry
6
+ - supramolecular-chemistry
7
+ - rdkit
8
+ - cb7
9
+ configs:
10
+ - config_name: default
11
+ data_files:
12
+ - split: train
13
+ path: guests.csv
14
+ ---
15
+
16
+ # SupraDB-GEOM
17
+
18
+ ## What it is
19
+
20
+ `SupraBench/SupraDB-GEOM` is the Phase 0 guest-pool dataset for the SupraBench
21
+ compute pipeline. It contains the canonical guest identity table used as the
22
+ source of truth for downstream ligand-only scoring, docking-derived pose
23
+ features, cavity scores, and dashboard joins.
24
+
25
+ Each row starts from an input SMILES string, is parsed with RDKit, desalted by
26
+ keeping the largest fragment, converted to canonical SMILES, and assigned an
27
+ RDKit-derived InChIKey.
28
+
29
+ ## Schema
30
+
31
+ | Column | Dtype | Units | Meaning |
32
+ |---|---|---|---|
33
+ | `inchikey` | string | none | RDKit InChIKey derived from the canonical largest-fragment SMILES; primary join key across all SupraDB datasets. |
34
+ | `name` | string | none | Guest name from the source CSV when present, otherwise the first 14 characters of `inchikey`. |
35
+ | `smiles` | string | none | RDKit canonical SMILES after largest-fragment desalting. |
36
+ | `logka` | float/string nullable | log10 association constant | Optional experimental CB[7] binding label from the source CSV; empty for unlabeled guests. |
37
+
38
+ ## Join key
39
+
40
+ `inchikey` is the sole join key for `SupraDB-GEOM`, `SupraDB-LigandScore`,
41
+ `SupraDB-PoseFeat`, and `SupraDB-CavityScore`. It is generated once here from
42
+ canonical largest-fragment SMILES so downstream compute, cache entries, 2D/3D
43
+ structure lookup, and dashboard records all use the same identifier.
44
+
45
+ ## Provenance
46
+
47
+ - Pipeline position: Phase 0 pool builder, before CRC ligand scoring and GLIDE docking.
48
+ - Source CSV: `/Users/billyma/Workspace/applications/SupraDashboard/engineering/data/guests.csv`.
49
+ - Canonicalization: RDKit `MolFromSmiles` -> largest fragment by heavy atom count -> `MolToSmiles(canonical=True)` -> `MolToInchiKey`.
50
+ - Row count: 63.
51
+ - Downstream compute context: CRC; GLIDE 2025u2 / aISS fallback applies to later docked feature datasets, not this pool table.
52
+ - Pose collapse rule: not applicable for this dataset; later pose datasets keep the highest-Boltzmann-weight pose by default.
53
+ - Exact command: `/Users/billyma/Workspace/SupraBench/.venv/bin/python3.11 engineering/src/pool_builder.py --push`.