File size: 5,986 Bytes
04d15bd
 
 
 
f3c6c53
 
 
 
 
 
 
 
 
 
 
 
 
04d15bd
f3c6c53
04d15bd
f3c6c53
 
 
 
 
 
 
 
04d15bd
 
f3c6c53
 
 
 
 
 
 
 
 
 
 
 
04d15bd
385bb88
72c8830
04d15bd
8a5edc9
7fafce4
8a5edc9
96f37a1
8a5edc9
 
60a2727
04d15bd
60a2727
 
04d15bd
60a2727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96f37a1
 
8a5edc9
96f37a1
8a5edc9
 
 
 
 
96f37a1
8a5edc9
96f37a1
8a5edc9
 
 
 
 
96f37a1
8a5edc9
96f37a1
8a5edc9
96f37a1
8a5edc9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96f37a1
8a5edc9
96f37a1
8a5edc9
04d15bd
 
 
96f37a1
cd0c9dc
96f37a1
 
 
04d15bd
8a5edc9
96f37a1
8a5edc9
96f37a1
8a5edc9
96f37a1
8a5edc9
96f37a1
8a5edc9
 
 
 
 
 
 
 
04d15bd
8a5edc9
04d15bd
8a5edc9
60a2727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---
viewer: true
license: cc-by-4.0
configs:
- config_name: train
  data_files:
  - split: train
    path: cluster_assignments_train.csv
  default: true
- config_name: test
  data_files:
  - split: test
    path: cluster_assignments_test.csv
- config_name: validate
  data_files:
  - split: validate
    path: cluster_assignments_validate.csv
task_categories:
- other
tags:
- biology
- protein
- structure
- PDB
- PISCES
- CullPDB
- sequence
- curation
language: en
size_categories:
- 1M<n<10M
citation_bibtex: |
  @article{wang2003pisces,
    title={PISCES: a protein sequence culling server},
    author={Wang, Guoying and Dunbrack, Roland L. Jr.},
    journal={Bioinformatics},
    volume={19},
    number={12},
    pages={1589--1591},
    year={2003},
    publisher={Oxford University Press}
  }
---
# PISCES-CulledPDB database as of January 2026
Recurated on Hugging Face on March 5th 2026

The **PISCES dataset** provides curated sets of protein sequences from the Protein Data Bank (PDB) based on sequence identity and structural quality criteria. PISCES yields **non-redundant subsets of protein chains** by applying filters such as sequence identity, experimental resolution, R-factor, chain length, and experimental method (e.g., X-ray, NMR, cryo-EM). The goal is to maximize structural reliability while minimizing sequence redundancy. Unlike culling tools that rely on BLAST or global alignments, PISCES uses **PSI-BLAST** for position-specific scoring matrices, improving detection of homologs below 40% sequence identity.

## Dataset sources

- **Server:** [PISCES](https://dunbrack.fccc.edu/pisces/)
- **Reference:** Wang, G., & Dunbrack, R. L. Jr. (2003). *Bioinformatics* 19(12), 1589–1591.
- 

## Quickstart Usage
### Install HuggingFace Datasets package

Each subset can be loaded into python using the Huggingface [datasets](https://huggingface.co/docs/datasets/index) library.
First, from the command line install the `datasets` library

    $ pip install datasets

then, from within python load the datasets library

    >>> import datasets

### Load Dataset

Load PISCES-CulledPDB dataset.

    >>> pisces_culledpdb = datasets.load_dataset('RosettaCommons/PISCES-CulledPDB')
    Downloading readme: 4.02kB [00:00, 1.08MB/s]
    Downloading data: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████| 69.3M/69.3M [00:13<00:00, 5.10MB/s]
    Generating train split: 100%|██████████████████████████████████████████████████████████████████████████| 3632659/3632659 [00:02<00:00, 1637871.99 examples/s]

and the dataset is loaded as a `datasets.arrow_dataset.Dataset`

    >>> pisces_culledpdb
    DatasetDict({
        train: Dataset({
            features: ['pdb_chain', 'cluster_id', 'split'],
            num_rows: 3632659
        })
    })

which is a column oriented format that can be accessed directly, converted in to a `pandas.DataFrame`, or `parquet` format, e.g.
    
    >>> pisces_culledpdb.data.column('pdb_chain')
    >>> pisces_culledpdb.to_pandas()
    >>> pisces_culledpdb.to_parquet("dataset.parquet")


## Uses

- Non-redundant protein chain datasets for ML and statistical analysis  
- Benchmarking protein structure prediction or homology modeling  
- Studying evolutionary relationships at chosen sequence identity thresholds  
- High-quality training sets filtered by resolution and R-factor  
- Structure-based ML datasets for protein modeling  

## Dataset structure

| Item | Description |
|------|-------------|
| **Main CSV** | `curated_csv/cullpdb_combined_chains.csv` — full chain table |
| **Subsets** | `curated_csv/subsets/*.csv` — 242 files (same columns) |
| **Index** | `curated_csv/cullpdb_list_fasta_index.csv` |

Subset paths: `curated_csv/dataset_metadata.json` (keys `data_paths`, `subset_paths`).

### Columns (chain CSVs)

| Column | Description |
|--------|-------------|
| **pdb_chain** | PDB chain ID (e.g. 1ABC_A) |
| **pdb** | PDB ID (first 4 chars) |
| **chain** | Chain ID |
| **sequence** | Amino acid sequence (one-letter) |
| **len** | Sequence length |
| **method** | Experimental method (e.g. XRAY, NMR) |
| **resolution** | Resolution in Å |
| **rfac** | R-factor |
| **freerfac** | Free R-factor |
| **pc** | Sequence identity cutoff % for this subset |
| **no_breaks** | Whether chain has no breaks (yes/no) |
| **R** | R-factor cutoff for this subset |
| **source_list** | Subset list basename (curation parameters) |

## Usage

```python
from huggingface_hub import hf_hub_download
import pandas as pd

path = hf_hub_download(
    repo_id="RosettaCommons/PISCES-CulledPDB",
    filename="curated_csv/cullpdb_combined_chains.csv",
    repo_type="dataset"
)
df = pd.read_csv(path)
```

## File naming convention

Subset filenames follow:

`cullpdb_pc{pc}_res{res_min}-{res_max}[_noBrks]_len40-10000_R{R}_{methods}_d2026_01_26_chains{N}.csv`

| Parameter | Meaning |
|-----------|---------|
| **pc** | Percent sequence identity cutoff (15, 20, …, 95) |
| **res** | Resolution range in Å (e.g. 0.0-1.0, 0.0-2.5) |
| **noBrks** | Optional: exclude chains with breaks |
| **R** | R-factor cutoff (0.2, 0.25, 0.3, 1.0) |
| **methods** | Xray, Xray+EM, or Xray+Nmr+EM |
| **N** | Number of chains in the list |

## License

Apache-2.0


## Citation

```
@article{wang2003pisces,
  title={PISCES: a protein sequence culling server},
  author={Wang, Guoying and Dunbrack, Roland L. Jr.},
  journal={Bioinformatics},
  volume={19},
  number={12},
  pages={1589--1591},
  year={2003},
  publisher={Oxford University Press}
}
```

*Recurated for Hugging Face by Akshaya Narayanasamy akshayanarayanasamy[at]gmail.com.*