akshayansamy commited on
Commit
8a5edc9
·
verified ·
1 Parent(s): 7fafce4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -111
README.md CHANGED
@@ -992,60 +992,16 @@ size_categories:
992
  ---
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
 
@@ -1060,53 +1016,49 @@ rldunbrack@fccc.edu
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
 
@@ -1115,34 +1067,24 @@ path = hf_hub_download(
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
1148
- ```
 
992
  ---
993
  # PISCES-CulledPDB
994
 
995
+ Curated protein chain tables from PISCES/CullPDB: one row per chain with sequence and metadata. Use the **subset dropdown** in the [Hugging Face Data Viewer](https://huggingface.co/datasets/PRMegathon26/PISCES-CulledPDB) to switch between the main table and 242 curation subsets.
 
996
 
997
+ ## Dataset description
998
 
999
+ 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.
1000
 
1001
+ ## Dataset sources
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
 
1003
+ - **Server:** [PISCES](https://dunbrack.fccc.edu/pisces/)
1004
+ - **Reference:** Wang, G., & Dunbrack, R. L. Jr. (2003). *Bioinformatics* 19(12), 1589–1591.
 
 
 
 
 
1005
 
1006
  ## Citation
1007
 
 
1016
  year={2003},
1017
  publisher={Oxford University Press}
1018
  }
1019
+ ```
 
 
 
 
 
 
1020
 
1021
+ *Recurated for Hugging Face by Akshaya Narayanasamy akshayanarayanasamy[at]gmail.com.*
1022
 
1023
+ ## Uses
1024
 
1025
+ - Non-redundant protein chain datasets for ML and statistical analysis
1026
+ - Benchmarking protein structure prediction or homology modeling
1027
+ - Studying evolutionary relationships at chosen sequence identity thresholds
1028
+ - High-quality training sets filtered by resolution and R-factor
1029
+ - Structure-based ML datasets for protein modeling
1030
 
1031
+ ## Dataset structure
1032
 
1033
+ | Item | Description |
1034
+ |------|-------------|
1035
+ | **Main CSV** | `curated_csv/cullpdb_combined_chains.csv` — full chain table |
1036
+ | **Subsets** | `curated_csv/subsets/*.csv` — 242 files (same columns) |
1037
+ | **Index** | `curated_csv/cullpdb_list_fasta_index.csv` |
1038
 
1039
+ Subset paths: `curated_csv/dataset_metadata.json` (keys `data_paths`, `subset_paths`).
1040
 
1041
+ ### Columns (chain CSVs)
1042
 
1043
+ | Column | Description |
1044
+ |--------|-------------|
1045
+ | **pdb_chain** | PDB chain ID (e.g. 1ABC_A) |
1046
+ | **pdb** | PDB ID (first 4 chars) |
1047
+ | **chain** | Chain ID |
1048
+ | **sequence** | Amino acid sequence (one-letter) |
1049
+ | **len** | Sequence length |
1050
+ | **method** | Experimental method (e.g. XRAY, NMR) |
1051
+ | **resolution** | Resolution in Å |
1052
+ | **rfac** | R-factor |
1053
+ | **freerfac** | Free R-factor |
1054
+ | **pc** | Sequence identity cutoff % for this subset |
1055
+ | **no_breaks** | Whether chain has no breaks (yes/no) |
1056
+ | **R** | R-factor cutoff for this subset |
1057
+ | **source_list** | Subset list basename (curation parameters) |
1058
 
1059
+ ## Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
1060
 
1061
+ ```python
 
 
 
 
 
 
 
1062
  from huggingface_hub import hf_hub_download
1063
  import pandas as pd
1064
 
 
1067
  filename="curated_csv/cullpdb_combined_chains.csv",
1068
  repo_type="dataset"
1069
  )
 
1070
  df = pd.read_csv(path)
1071
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1072
 
1073
+ ## File naming convention
1074
 
1075
+ Subset filenames follow:
1076
 
1077
+ `cullpdb_pc{pc}_res{res_min}-{res_max}[_noBrks]_len40-10000_R{R}_{methods}_d2026_01_26_chains{N}.csv`
1078
 
1079
+ | Parameter | Meaning |
1080
+ |-----------|---------|
1081
+ | **pc** | Percent sequence identity cutoff (15, 20, …, 95) |
1082
+ | **res** | Resolution range in Å (e.g. 0.0-1.0, 0.0-2.5) |
1083
+ | **noBrks** | Optional: exclude chains with breaks |
1084
+ | **R** | R-factor cutoff (0.2, 0.25, 0.3, 1.0) |
1085
+ | **methods** | Xray, Xray+EM, or Xray+Nmr+EM |
1086
+ | **N** | Number of chains in the list |
1087
 
1088
+ ## License
1089
 
1090
+ Apache-2.0