Update README.md
Browse files
README.md
CHANGED
|
@@ -586,14 +586,14 @@ Recurated in Hugging Face by: Akshaya Narayanasamy (akshayanarayanasamy[at]gmail
|
|
| 586 |
|
| 587 |
| Item | Description |
|
| 588 |
|------|-------------|
|
| 589 |
-
| **Main CSV** | `curated_csv/
|
| 590 |
| **Subset CSVs** | `curated_csv/subsets/*.csv` — **242** files, one per curation subset (same columns as main). |
|
| 591 |
| **Index** | `curated_csv/cullpdb_list_fasta_index.csv` — **242** rows; maps subset basenames to list/FASTA paths and parameters. |
|
| 592 |
|
| 593 |
## Data paths (metadata)
|
| 594 |
|
| 595 |
**Main and index files:**
|
| 596 |
-
- `curated_csv/
|
| 597 |
- `curated_csv/cullpdb_list_fasta_index.csv` — subset index
|
| 598 |
- `curated_csv/cullpdb_full_compiled_list.csv` — full compiled list
|
| 599 |
- `curated_csv/subsets/` — directory containing one CSV per subset (**242** files)
|
|
@@ -657,7 +657,7 @@ from huggingface_hub import hf_hub_download
|
|
| 657 |
import pandas as pd
|
| 658 |
|
| 659 |
# Download main CSV (large)
|
| 660 |
-
path = hf_hub_download(repo_id="PRMegathon26/PISCES-CulledPDB", filename="curated_csv/
|
| 661 |
df = pd.read_csv(path)
|
| 662 |
|
| 663 |
# Or load a single subset
|
|
|
|
| 586 |
|
| 587 |
| Item | Description |
|
| 588 |
|------|-------------|
|
| 589 |
+
| **Main CSV** | `curated_csv/cullpdb_compiled.csv` — single table with **4,540,884** chains (one row per chain). |
|
| 590 |
| **Subset CSVs** | `curated_csv/subsets/*.csv` — **242** files, one per curation subset (same columns as main). |
|
| 591 |
| **Index** | `curated_csv/cullpdb_list_fasta_index.csv` — **242** rows; maps subset basenames to list/FASTA paths and parameters. |
|
| 592 |
|
| 593 |
## Data paths (metadata)
|
| 594 |
|
| 595 |
**Main and index files:**
|
| 596 |
+
- `curated_csv/cullpdb_compiled.csv` — master chain table
|
| 597 |
- `curated_csv/cullpdb_list_fasta_index.csv` — subset index
|
| 598 |
- `curated_csv/cullpdb_full_compiled_list.csv` — full compiled list
|
| 599 |
- `curated_csv/subsets/` — directory containing one CSV per subset (**242** files)
|
|
|
|
| 657 |
import pandas as pd
|
| 658 |
|
| 659 |
# Download main CSV (large)
|
| 660 |
+
path = hf_hub_download(repo_id="PRMegathon26/PISCES-CulledPDB", filename="curated_csv/cullpdb_compiled.csv", repo_type="dataset")
|
| 661 |
df = pd.read_csv(path)
|
| 662 |
|
| 663 |
# Or load a single subset
|