mtybilly commited on
Commit
7e33ba4
·
verified ·
1 Parent(s): 7042585

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +9 -6
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
- 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
 
@@ -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
- - 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`.
 
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`.