Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -22,9 +22,11 @@ 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 |
-
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Schema
|
| 30 |
|
|
@@ -45,9 +47,10 @@ structure lookup, and dashboard records all use the same identifier.
|
|
| 45 |
## Provenance
|
| 46 |
|
| 47 |
- Pipeline position: Phase 0 pool builder, before CRC ligand scoring and GLIDE docking.
|
| 48 |
-
-
|
|
|
|
| 49 |
- Canonicalization: RDKit `MolFromSmiles` -> largest fragment by heavy atom count -> `MolToSmiles(canonical=True)` -> `MolToInchiKey`.
|
| 50 |
-
- Row count:
|
| 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: `/
|
|
|
|
| 22 |
source of truth for downstream ligand-only scoring, docking-derived pose
|
| 23 |
features, cavity scores, and dashboard joins.
|
| 24 |
|
| 25 |
+
Rows are built from GEOM source SMILES and optional experimental CB[7] labeled
|
| 26 |
+
guests. Each row starts from an input SMILES string, is parsed with RDKit,
|
| 27 |
+
desalted by keeping the largest fragment, converted to canonical SMILES, and
|
| 28 |
+
assigned an RDKit-derived InChIKey. Labeled rows are merged by derived InChIKey
|
| 29 |
+
and take precedence over GEOM-only rows on overlap.
|
| 30 |
|
| 31 |
## Schema
|
| 32 |
|
|
|
|
| 47 |
## Provenance
|
| 48 |
|
| 49 |
- Pipeline position: Phase 0 pool builder, before CRC ligand scoring and GLIDE docking.
|
| 50 |
+
- GEOM source CSV: `data/geom_drugs_smiles.csv`.
|
| 51 |
+
- Labeled merge: 63 labeled rows were merged from the labeled CSV.
|
| 52 |
- Canonicalization: RDKit `MolFromSmiles` -> largest fragment by heavy atom count -> `MolToSmiles(canonical=True)` -> `MolToInchiKey`.
|
| 53 |
+
- Row count: 301586.
|
| 54 |
- Downstream compute context: CRC; GLIDE 2025u2 / aISS fallback applies to later docked feature datasets, not this pool table.
|
| 55 |
- Pose collapse rule: not applicable for this dataset; later pose datasets keep the highest-Boltzmann-weight pose by default.
|
| 56 |
+
- Exact command: `/users/tma2/workspace/SupraDashboard/.venv/bin/python engineering/src/pool_builder.py --input data/geom_drugs_smiles.csv --labeled engineering/data/guests.csv --out data/geom_pool --workers 8`.
|