akshayansamy commited on
Commit
96f37a1
·
verified ·
1 Parent(s): 04d15bd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +137 -31
README.md CHANGED
@@ -993,49 +993,155 @@ size_categories:
993
  # PISCES-CulledPDB
994
 
995
  Curated protein chain tables from PISCES/CullPDB: one row per chain with sequence and metadata.
 
996
 
997
- **Dataset:** [PRMegathon26/PISCES-CulledPDB](https://huggingface.co/datasets/PRMegathon26/PISCES-CulledPDB)
998
 
999
- Use the **subset dropdown** in the Hugging Face Data Viewer to switch between the main table and 242 curation subsets.
 
 
 
 
 
 
 
 
 
 
 
1000
 
1001
- ## Summary
1002
 
1003
- | Item | Description |
1004
- |------|-------------|
1005
- | **Main CSV** | `curated_csv/cullpdb_combined_chains.csv` — full chain table |
1006
- | **Subsets** | `curated_csv/subsets/*.csv` — 242 files (same columns) |
1007
- | **Index** | `curated_csv/cullpdb_list_fasta_index.csv` |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1008
 
1009
- Full list of subset paths: `curated_csv/dataset_metadata.json` (keys `data_paths`, `subset_paths`).
1010
 
1011
- ## Columns (chain CSVs)
 
 
 
 
 
 
 
 
 
 
 
1012
 
1013
- | Column | Description |
1014
- |--------|-------------|
1015
- | **pdb_chain** | PDB chain ID (e.g. 1ABC_A) |
1016
- | **pdb** | PDB ID (first 4 chars) |
1017
- | **chain** | Chain ID |
1018
- | **sequence** | Amino acid sequence (one-letter) |
1019
- | **len** | Sequence length |
1020
- | **method** | Experimental method (e.g. XRAY, NMR) |
1021
- | **resolution** | Resolution in Å (per structure) |
1022
- | **rfac** | R-factor |
1023
- | **freerfac** | Free R-factor |
1024
- | **pc** | Sequence identity cutoff % used for this subset |
1025
- | **no_breaks** | Whether chain has no breaks (yes/no) |
1026
- | **R** | R-factor cutoff used for this subset |
1027
- | **source_list** | Subset list basename (identifies curation parameters) |
1028
 
1029
- ## Usage
1030
 
1031
- ```python
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1032
  from huggingface_hub import hf_hub_download
1033
  import pandas as pd
1034
 
1035
- path = hf_hub_download(repo_id="PRMegathon26/PISCES-CulledPDB", filename="curated_csv/cullpdb_combined_chains.csv", repo_type="dataset")
 
 
 
 
 
1036
  df = pd.read_csv(path)
1037
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1038
 
1039
- ## License
1040
 
1041
- cc-by-4.0
 
993
  # PISCES-CulledPDB
994
 
995
  Curated protein chain tables from PISCES/CullPDB: one row per chain with sequence and metadata.
996
+ Use the **subset dropdown** in the Hugging Face Data Viewer to switch between the main table and 242 curation subsets.
997
 
 
998
 
999
+ ```
1000
+ ---
1001
+ license: apache-2.0
1002
+ task_categories:
1003
+ - protein-structure-prediction
1004
+ - bioinformatics
1005
+ language:
1006
+ - en
1007
+ pretty_name: PISCES Culled Protein Chains
1008
+ size_categories:
1009
+ - 100K<n<1M
1010
+ ---
1011
 
1012
+ # Dataset Card for PISCES Protein Sequence Cull Sets
1013
 
1014
+ ## Dataset Details
1015
+
1016
+ ### Dataset Description
1017
+
1018
+ The **PISCES dataset** provides curated sets of protein sequences from the Protein Data Bank (PDB) based on user-defined sequence identity and structural quality criteria.
1019
+
1020
+ PISCES enables users to obtain **non-redundant subsets of protein chains** by applying filters such as:
1021
+
1022
+ - Sequence identity
1023
+ - Experimental resolution
1024
+ - R-factor
1025
+ - Chain length
1026
+ - Experimental method (e.g., X-ray, NMR, cryo-EM)
1027
+
1028
+ The goal of PISCES is to **maximize structural reliability while minimizing sequence redundancy**.
1029
+
1030
+ Unlike other culling tools that rely on BLAST or global alignments, PISCES uses **PSI-BLAST** to generate position-specific scoring matrices. This enables more accurate detection of homologous relationships, particularly **below 40% sequence identity**.
1031
+
1032
+ ---
1033
+
1034
+ ## Dataset Sources
1035
+
1036
+ **Original Server:**
1037
+ PISCES
1038
+
1039
+ **Primary Reference:**
1040
+ Wang, G., & Dunbrack, R. L., Jr. (2003). *Bioinformatics*, 19(12), 1589–1591.
1041
+
1042
+ **Availability:**
1043
+ https://dunbrack.fccc.edu/pisces/
1044
+
1045
+ **Contact:**
1046
+ rldunbrack@fccc.edu
1047
+
1048
+ ---
1049
 
1050
+ ## Citation
1051
 
1052
+ ```bibtex
1053
+ @article{wang2003pisces,
1054
+ title={PISCES: a protein sequence culling server},
1055
+ author={Wang, Guoying and Dunbrack, Roland L. Jr.},
1056
+ journal={Bioinformatics},
1057
+ volume={19},
1058
+ number={12},
1059
+ pages={1589--1591},
1060
+ year={2003},
1061
+ publisher={Oxford University Press}
1062
+ }
1063
+ dditional Attribution
1064
 
1065
+ Recurated in Hugging Face by: Akshaya Narayanasamy (akshayanarayanasamy[at]gmail.com)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1066
 
1067
+ License: Apache-2.0
1068
 
1069
+ Primary Domain: Structural Bioinformatics / Computational Biology
1070
+
1071
+ Uses
1072
+
1073
+ This dataset can be used for:
1074
+
1075
+ Generating non-redundant protein chain datasets for machine learning and statistical analysis
1076
+
1077
+ Benchmarking protein structure prediction or homology modeling algorithms
1078
+
1079
+ Studying evolutionary relationships using sequence identity thresholds
1080
+
1081
+ Designing high-quality training datasets filtered by structural resolution and reliability
1082
+
1083
+ Building structure-based machine learning datasets for protein modeling
1084
+
1085
+ Dataset Structure
1086
+
1087
+ Each record corresponds to one protein chain.
1088
+ | Field | Description |
1089
+ | ----------- | --------------------------------------------------- |
1090
+ | PDB | Protein Data Bank identifier |
1091
+ | Chain | Chain identifier within the PDB structure |
1092
+ | Sequence | Amino acid sequence of the chain |
1093
+ | Len | Sequence length |
1094
+ | Method | Experimental method used to determine the structure |
1095
+ | Rfac | Crystallographic R-factor |
1096
+ | Freerfac | Free R-factor |
1097
+ | Pc | Maximum pairwise sequence identity threshold |
1098
+ | Break | Indicates whether the chain contains breaks |
1099
+ | R | Resolution of the structure |
1100
+ | Source_list | Original PISCES list source |
1101
+
1102
+ Sequences are sorted by structural quality metrics such as resolution and R-factor and then culled based on mutual sequence identity thresholds to ensure non-redundancy.
1103
+ | Item | Description |
1104
+ | ------------ | ------------------------------------------------------------ |
1105
+ | **Main CSV** | `curated_csv/cullpdb_combined_chains.csv` — full chain table |
1106
+ | **Subsets** | `curated_csv/subsets/*.csv` — 242 files (same columns) |
1107
+ | **Index** | `curated_csv/cullpdb_list_fasta_index.csv` |
1108
+ Full list of subset paths:
1109
+ curated_csv/dataset_metadata.json (keys data_paths, subset_paths).
1110
  from huggingface_hub import hf_hub_download
1111
  import pandas as pd
1112
 
1113
+ path = hf_hub_download(
1114
+ repo_id="PRMegathon26/PISCES-CulledPDB",
1115
+ filename="curated_csv/cullpdb_combined_chains.csv",
1116
+ repo_type="dataset"
1117
+ )
1118
+
1119
  df = pd.read_csv(path)
1120
+ File Naming Convention
1121
+
1122
+ Each dataset file follows the naming pattern:
1123
+ cullpdb_pc{pc}_res{res_min}-{res_max}[_noBrks]_len40-10000_R{R}_{methods}_d2026_01_26_chains{N}
1124
+ Parameters
1125
+
1126
+ pc – Percent sequence identity cutoff
1127
+ Examples: 15, 20, 25, …, 95
1128
+
1129
+ res – Resolution range (Å)
1130
+ Examples: 0.0-1.0, 0.0-2.5, 0.0-5.0
1131
+
1132
+ noBrks – Optional flag indicating chains with breaks are excluded
1133
+
1134
+ R – R-factor cutoff
1135
+ Possible values: 0.2, 0.25, 0.3, 1.0
1136
+
1137
+ methods – Experimental structure determination methods
1138
+
1139
+ Possible values:
1140
+
1141
+ Xray
1142
+
1143
+ Xray+EM
1144
 
1145
+ Xray+Nmr+EM
1146
 
1147
+ N – Total number of chains in the list