Delete README.md
Browse files
README.md
DELETED
|
@@ -1,72 +0,0 @@
|
|
| 1 |
-
---
|
| 2 |
-
viewer: true
|
| 3 |
-
license: cc-by-4.0
|
| 4 |
-
configs:
|
| 5 |
-
- config_name: cullpdb_pc15.0_res0.0-1.0_len40-10000_R0.2_Xray_d2026_01_26_chains281
|
| 6 |
-
data_files:
|
| 7 |
-
- split: train
|
| 8 |
-
path: curated_csv/subsets/cullpdb_pc15.0_res0.0-1.0_len40-10000_R0.2_Xray_d2026_01_26_chains281.csv
|
| 9 |
-
task_categories:
|
| 10 |
-
- other
|
| 11 |
-
tags:
|
| 12 |
-
- biology
|
| 13 |
-
- protein
|
| 14 |
-
- structure
|
| 15 |
-
- PDB
|
| 16 |
-
- PISCES
|
| 17 |
-
- CullPDB
|
| 18 |
-
- sequence
|
| 19 |
-
- curation
|
| 20 |
-
language: en
|
| 21 |
-
size_categories:
|
| 22 |
-
- "n>1M"
|
| 23 |
-
---
|
| 24 |
-
# PISCES-CulledPDB
|
| 25 |
-
|
| 26 |
-
Curated protein chain tables from PISCES/CullPDB: one row per chain with sequence and metadata.
|
| 27 |
-
|
| 28 |
-
**Dataset:** [PRMegathon26/PISCES-CulledPDB](https://huggingface.co/datasets/PRMegathon26/PISCES-CulledPDB)
|
| 29 |
-
|
| 30 |
-
Use the **subset dropdown** in the Hugging Face Data Viewer to switch between the main table and 242 curation subsets.
|
| 31 |
-
|
| 32 |
-
## Summary
|
| 33 |
-
|
| 34 |
-
| Item | Description |
|
| 35 |
-
|------|-------------|
|
| 36 |
-
| **Main CSV** | `curated_csv/cullpdb_combined_chains.csv` — full chain table |
|
| 37 |
-
| **Subsets** | `curated_csv/subsets/*.csv` — 242 files (same columns) |
|
| 38 |
-
| **Index** | `curated_csv/cullpdb_list_fasta_index.csv` |
|
| 39 |
-
|
| 40 |
-
Full list of subset paths: `curated_csv/dataset_metadata.json` (keys `data_paths`, `subset_paths`).
|
| 41 |
-
|
| 42 |
-
## Columns (chain CSVs)
|
| 43 |
-
|
| 44 |
-
| Column | Description |
|
| 45 |
-
|--------|-------------|
|
| 46 |
-
| **pdb_chain** | PDB chain ID (e.g. 1ABC_A) |
|
| 47 |
-
| **pdb** | PDB ID (first 4 chars) |
|
| 48 |
-
| **chain** | Chain ID |
|
| 49 |
-
| **sequence** | Amino acid sequence (one-letter) |
|
| 50 |
-
| **len** | Sequence length |
|
| 51 |
-
| **method** | Experimental method (e.g. XRAY, NMR) |
|
| 52 |
-
| **resolution** | Resolution in Å (per structure) |
|
| 53 |
-
| **rfac** | R-factor |
|
| 54 |
-
| **freerfac** | Free R-factor |
|
| 55 |
-
| **pc** | Sequence identity cutoff % used for this subset |
|
| 56 |
-
| **no_breaks** | Whether chain has no breaks (yes/no) |
|
| 57 |
-
| **R** | R-factor cutoff used for this subset |
|
| 58 |
-
| **source_list** | Subset list basename (identifies curation parameters) |
|
| 59 |
-
|
| 60 |
-
## Usage
|
| 61 |
-
|
| 62 |
-
```python
|
| 63 |
-
from huggingface_hub import hf_hub_download
|
| 64 |
-
import pandas as pd
|
| 65 |
-
|
| 66 |
-
path = hf_hub_download(repo_id="PRMegathon26/PISCES-CulledPDB", filename="curated_csv/cullpdb_combined_chains.csv", repo_type="dataset")
|
| 67 |
-
df = pd.read_csv(path)
|
| 68 |
-
```
|
| 69 |
-
|
| 70 |
-
## License
|
| 71 |
-
|
| 72 |
-
cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|