Commit ·
13022ca
1
Parent(s): 813427e
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -18,12 +18,50 @@ extra_gated_fields:
|
|
| 18 |
Email: text
|
| 19 |
I have purchased a license: checkbox
|
| 20 |
---
|
| 21 |
-
# Protein Data Stability
|
| 22 |
|
|
|
|
| 23 |
|
|
|
|
| 24 |
|
| 25 |
-
|
|
|
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## Dataset Structure
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
Email: text
|
| 19 |
I have purchased a license: checkbox
|
| 20 |
---
|
| 21 |
+
# Protein Data Stability - Single Mutation
|
| 22 |
|
| 23 |
+
This repository contains data on the change in protein stability with a single mutation.
|
| 24 |
|
| 25 |
+
## Attribution of Data Sources
|
| 26 |
|
| 27 |
+
- **Primary Source**: Tsuboyama, K., Dauparas, J., Chen, J. et al. Mega-scale experimental analysis of protein folding stability in biology and design. Nature 620, 434–444 (2023). [Link to the paper](https://www.nature.com/articles/s41586-023-06328-6)
|
| 28 |
+
- **Dataset Link**: [Zenodo Record](https://zenodo.org/record/7992926)
|
| 29 |
|
| 30 |
+
## Sample Protein Stability Data
|
| 31 |
+
|
| 32 |
+
| Base Amino Acid Sequence | Mutation | ddG_ML | Classification |
|
| 33 |
+
|---------------------------------------------------------------------------|----------|------------------------|----------------|
|
| 34 |
+
| DEIHIHFNGVTIEFRGLTEEAKKALEEAIKRGASEEELKELARRLIK | base | -0.0675543480388345 | neutral |
|
| 35 |
+
| DEIHIHFNGVTIEFRGLTEEAKKALEEAIKRGASEEELKELARRLIK | D1Q | -0.0162349479755414 | neutral |
|
| 36 |
+
| DEIHIHFNGVTIEFRGLTEEAKKALEEAIKRGASEEELKELARRLIK | D1E | -0.1402534094665108 | neutral |
|
| 37 |
+
| DEIHIHFNGVTIEFRGLTEEAKKALEEAIKRGASEEELKELARRLIK | D1N | 0.0126650189159422 | neutral |
|
| 38 |
+
| DEIHIHFNGVTIEFRGLTEEAKKALEEAIKRGASEEELKELARRLIK | D1H | 0.1970434798619962 | neutral |
|
| 39 |
|
| 40 |
## Dataset Structure
|
| 41 |
|
| 42 |
+
The dataset focuses on the differential deltaG (mutation minus base) of various protein mutations.
|
| 43 |
+
|
| 44 |
+
- **Base Protein Sequence** (`aa_seq`): A (sometimes shortened) amino acid sequence.
|
| 45 |
+
- **Mutation**: Represented as a combination of amino acid and its position (e.g., F10N indicates changing the 10th amino acid (F) in a sequence for N).
|
| 46 |
+
- **delta deltaG** (`ddG_ML`): Derived from a model that makes use of stability measurements measured by two proteases, trypsin and chymotrypsin.
|
| 47 |
+
|
| 48 |
+
### Understanding ΔG (delta G)
|
| 49 |
+
|
| 50 |
+
ΔG is the Gibbs free energy change of a process, dictating whether a process is thermodynamically favorable:
|
| 51 |
+
|
| 52 |
+
- **Negative ΔG**: Indicates the process is energetically favorable. For protein folding, it implies the protein is stable in its folded form.
|
| 53 |
+
- **Positive ΔG**: Indicates the process is not energetically favorable. In protein folding, it means the protein requires energy to maintain its folded state.
|
| 54 |
+
|
| 55 |
+
The **delta delta G** (ΔΔG) represents the deltaG of the mutation compared to the base protein:
|
| 56 |
+
|
| 57 |
+
- **Positive ΔΔG**: Suggests the mutation decreases protein stability.
|
| 58 |
+
- **Negative ΔΔG**: Suggests the mutation enhances protein stability.
|
| 59 |
+
|
| 60 |
+
### Dataset preparation:
|
| 61 |
+
|
| 62 |
+
For a quick overview, the relevant dataset structure can be found in `dataset_table.jpeg`.
|
| 63 |
+
|
| 64 |
+
### Data Cleanup and Validation:
|
| 65 |
+
|
| 66 |
+
1. Filtering: The dataset has been curated to only include examples of single mutations.
|
| 67 |
+
2. Consistency Check: Only rows with consistent mutation indication, aligned with both the base and mutated sequences, have been retained.
|