RonanMcGovern commited on
Commit
eba2fc8
1 Parent(s): 6ae96c6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -9
README.md CHANGED
@@ -33,7 +33,7 @@ There are two datasets:
33
 
34
  As to where the dataset comes from in this broader work, the relevant dataset (#3) is shown in `dataset_table.jpeg` of this repository's files.
35
 
36
- ## Sample Protein Stability Data
37
 
38
  | Base Protein Sequence | Mutation | ΔΔG_ML | Classification |
39
  |-------------------------------------------------------------|----------|--------------------|-----------------|
@@ -45,15 +45,70 @@ As to where the dataset comes from in this broader work, the relevant dataset (#
45
 
46
  ## Dataset Structure
47
 
48
- The dataset focuses on the differential deltaG of *unfolding* (mutation minus base) of various protein mutations.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
- - **Base Protein Sequence** (`aa_seq`): A (sometimes shortened) amino acid sequence.
51
- - **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).
52
- - **delta deltaG** (`ddG_ML`): Derived from a model that makes use of stability measurements (free energy of unfolding) measured by two proteases, trypsin and chymotrypsin.
53
- - **Classification**: Classification is done purely on the basis of ddG.
54
- -- Rows below -0.5 standard deviations are classified as 'destabilising'
55
- -- Rows above +0.5 standard deviations are classified as 'stabilising'
56
- -- Rows between -0.5 and 0.5 standard deviations are classified as 'neutral'
57
 
58
  ### Understanding ΔG (delta G)
59
 
 
33
 
34
  As to where the dataset comes from in this broader work, the relevant dataset (#3) is shown in `dataset_table.jpeg` of this repository's files.
35
 
36
+ ## Sample Protein Stability Data [subset of 4 columns]
37
 
38
  | Base Protein Sequence | Mutation | ΔΔG_ML | Classification |
39
  |-------------------------------------------------------------|----------|--------------------|-----------------|
 
45
 
46
  ## Dataset Structure
47
 
48
+ This dataset focuses on the differential deltaG of *unfolding* (mutation minus base) of various protein mutations and is derived from stability measurements (free energy of unfolding) measured by two proteases, trypsin and chymotrypsin.
49
+
50
+ ### Columns (Trypsin):
51
+
52
+ - **name**: The name of the protein variant.
53
+ - **dna_seq**: The DNA sequence encoding the protein variant.
54
+ - **log10_K50_t**: The log10 of the K50 value measured with trypsin (a measure of stability).
55
+ - **log10_K50_t_95CI_high**: The upper bound of the 95% confidence interval for log10_K50_t.
56
+ - **log10_K50_t_95CI_low**: The lower bound of the 95% confidence interval for log10_K50_t.
57
+ - **log10_K50_t_95CI**: The width of the 95% confidence interval for log10_K50_t.
58
+ - **fitting_error_t**: A measure of error between the model and data for trypsin.
59
+ - **log10_K50unfolded_t**: The predicted log10 K50 value for the unfolded state with trypsin.
60
+ - **deltaG_t**: The ΔG stability calculated from the trypsin data.
61
+ - **deltaG_t_95CI_high**: The upper bound of the ΔG confidence interval from trypsin.
62
+ - **deltaG_t_95CI_low**: The lower bound of the ΔG confidence interval from trypsin.
63
+ - **deltaG_t_95CI**: The width of the ΔG confidence interval from trypsin.
64
+
65
+ ### Columns (Chymotrypsin):
66
+
67
+ - **log10_K50_c**: Analogous to `log10_K50_t`, but for chymotrypsin.
68
+ - **log10_K50_c_95CI_high**: Upper bound of the 95% CI for `log10_K50_c`.
69
+ - **log10_K50_c_95CI_low**: Lower bound of the 95% CI for `log10_K50_c`.
70
+ - **log10_K50_c_95CI**: Width of the 95% CI for `log10_K50_c`.
71
+ - **fitting_error_c**: A measure of error between the model and data for chymotrypsin.
72
+ - **log10_K50unfolded_c**: Predicted log10 K50 value for the unfolded state with chymotrypsin.
73
+ - **deltaG_c**: ΔG stability calculated from the chymotrypsin data.
74
+ - **deltaG_c_95CI_high**: Upper bound of the ΔG CI from chymotrypsin.
75
+ - **deltaG_c_95CI_low**: Lower bound of the ΔG CI from chymotrypsin.
76
+ - **deltaG_c_95CI**: Width of the ΔG CI from chymotrypsin.
77
+
78
+ ### Combined Data:
79
+
80
+ - **deltaG**: The combined ΔG estimate from both trypsin and chymotrypsin.
81
+ - **deltaG_95CI_high**: Upper bound of the combined ΔG confidence interval.
82
+ - **deltaG_95CI_low**: Lower bound of the combined ΔG confidence interval.
83
+ - **deltaG_95CI**: Width of the combined ΔG confidence interval.
84
+
85
+ ### Protein Sequencing Data:
86
+
87
+ - **aa_seq_full**: The full amino acid sequence.
88
+ - **aa_seq**: A (sometimes shortened) amino acid sequence representing the protein.
89
+ - **mut_type**: The type of mutation introduced to the protein.
90
+ - **WT_name**: Name of the wild type variant.
91
+ - **WT_cluster**: Cluster classification for the wild type variant.
92
+ - **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).
93
+ - **base_aa_seq**: The base sequence of the protein before the mutation.
94
+
95
+ ### Derived Data:
96
+
97
+ - **log10_K50_trypsin_ML**: Log10 value of K50 derived from a machine learning model using trypsin data.
98
+ - **log10_K50_chymotrypsin_ML**: Log10 value of K50 derived from a machine learning model using chymotrypsin data.
99
+ - **dG_ML**: ΔG derived from a machine learning model that makes use of stability measurements from both proteases.
100
+ - **ddG_ML**: Differential ΔG (mutation minus base) derived from a machine learning model.
101
+
102
+ ### Classification:
103
+
104
+ - **Stabilizing_mut**: Indicates whether the mutation is stabilizing or not.
105
+ - **pair_name**: Name representation combining the wild type and mutation.
106
+ - **classification**: Classification based on `ddG_ML`:
107
+ - Rows below -0.5 standard deviations are classified as 'destabilising'.
108
+ - Rows above +0.5 standard deviations are classified as 'stabilising'.
109
+ - Rows between -0.5 and 0.5 standard deviations are classified as 'neutral'.
110
 
111
+ This dataset offers a comprehensive view of protein mutations, their effects, and how they relate to the stability measurements made with trypsin and chymotrypsin.
 
 
 
 
 
 
112
 
113
  ### Understanding ΔG (delta G)
114