cmatkhan commited on
Commit
e27b9d9
·
verified ·
1 Parent(s): 1009546

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -26
README.md CHANGED
@@ -30,30 +30,40 @@ configs:
30
  - name: sample_id
31
  dtype: integer
32
  description: >-
33
- unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
34
- and can be used to join the metadata to the other datasets in this repo
 
35
  - name: regulator_locus_tag
36
  dtype: string
37
  role: identifier
38
- description: Systematic gene name (ORF identifier) of the transcription factor
 
 
39
  - name: regulator_symbol
40
  dtype: string
41
  description: Standard gene symbol of the transcription factor
42
  - name: found_domain
43
  dtype: string
44
- description: Identified DNA-binding domain(s) or protein family classification
 
45
  - name: sgd_description
46
  dtype: string
47
- description: Functional description from Saccharomyces Genome Database (SGD)
 
48
  - name: essential
49
  dtype: bool
50
- description: Boolean indicating whether the gene is essential for viability
 
51
  - name: oe_passed_qc
52
  dtype: bool
53
- description: Boolean indicating whether overexpression experiments passed quality control
 
 
54
  - name: del_passed_qc
55
  dtype: bool
56
- description: Boolean indicating whether deletion experiments passed quality control
 
 
57
 
58
  - config_name: overexpression
59
  description: Overexpression perturbation normalized log2 fold changes
@@ -61,27 +71,45 @@ configs:
61
  data_files:
62
  - split: train
63
  path: overexpression.parquet
 
 
 
 
 
 
 
 
 
 
 
 
64
  dataset_info:
65
  features:
66
  - name: sample_id
67
  dtype: integer
68
  description: >-
69
- unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
70
- and can be used to join to the other datasets in this repo, including the metadata
 
71
  - name: regulator_locus_tag
72
  dtype: string
73
- role: identifier
74
- description: Systematic gene name (ORF identifier) of the perturbed transcription factor
 
 
75
  - name: regulator_symbol
76
  dtype: string
77
  description: Standard gene symbol of the perturbed transcription factor
78
  - name: target_locus_tag
79
  dtype: string
80
- role: identifier
81
- description: Systematic gene name (ORF identifier) of the target gene measured
 
 
82
  - name: target_symbol
83
  dtype: string
84
  description: Standard gene symbol of the target gene measured
 
85
  - name: dye_plus
86
  dtype: float64
87
  role: quantitative_measure
@@ -98,8 +126,9 @@ configs:
98
  dtype: float64
99
  role: quantitative_measure
100
  description: >-
101
- Average log2 fold change across dye orientations, providing a dye-independent
102
- estimate of gene expression change upon transcription factor overexpression.
 
103
 
104
  - config_name: knockout
105
  description: Deletion/knockout perturbation normalized log2 fold changes
@@ -107,45 +136,60 @@ configs:
107
  data_files:
108
  - split: train
109
  path: knockout.parquet
 
 
 
 
 
 
 
110
  dataset_info:
111
  features:
112
  - name: sample_id
113
  dtype: integer
114
  description: >-
115
- unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
116
- and can be used to join to the other datasets in this repo, including the metadata
 
117
  - name: regulator_locus_tag
118
  dtype: string
119
- role: identifier
120
- description: Systematic gene name (ORF identifier) of the perturbed transcription factor
 
 
121
  - name: regulator_symbol
122
  dtype: string
123
  description: Standard gene symbol of the perturbed transcription factor
 
124
  - name: target_locus_tag
125
  dtype: string
126
- role: identifier
127
- description: Systematic gene name (ORF identifier) of the target gene measured
 
 
128
  - name: target_symbol
129
  dtype: string
130
  description: Standard gene symbol of the target gene measured
 
131
  - name: dye_plus
132
  dtype: float64
133
- role: quantitative_measure
134
  description: >-
135
  Normalized log2 fold change for positive (+) dye orientation.
136
  Positive values indicate upregulation in response to deletion.
 
137
  - name: dye_minus
138
  dtype: float64
139
- role: quantitative_measure
140
  description: >-
141
  Normalized log2 fold change for negative (-) dye orientation.
142
  Positive values indicate upregulation in response to deletion.
 
143
  - name: mean_norm_log2fc
144
  dtype: float64
145
- role: quantitative_measure
146
  description: >-
147
  Average log2 fold change across dye orientations, providing a
148
- dye-independent estimate of gene expression change upon transcription factor deletion.
 
 
149
  ---
150
  # Hughes 2006
151
 
 
30
  - name: sample_id
31
  dtype: integer
32
  description: >-
33
+ unique identifier for a specific sample. The sample ID identifies
34
+ a unique regulator_locus_tag and can be used to join to the
35
+ other datasets in this repo, including the metadata
36
  - name: regulator_locus_tag
37
  dtype: string
38
  role: identifier
39
+ description: >-
40
+ Systematic gene name (ORF identifier) of the
41
+ transcription factor
42
  - name: regulator_symbol
43
  dtype: string
44
  description: Standard gene symbol of the transcription factor
45
  - name: found_domain
46
  dtype: string
47
+ description: >-
48
+ Identified DNA-binding domain(s) or protein family classification
49
  - name: sgd_description
50
  dtype: string
51
+ description: >-
52
+ Functional description from Saccharomyces Genome Database (SGD)
53
  - name: essential
54
  dtype: bool
55
+ description: >-
56
+ Boolean indicating whether the gene is essential for viability
57
  - name: oe_passed_qc
58
  dtype: bool
59
+ description: >-
60
+ Boolean indicating whether overexpression experiments passed
61
+ quality control
62
  - name: del_passed_qc
63
  dtype: bool
64
+ description: >-
65
+ Boolean indicating whether deletion experiments passed
66
+ quality control
67
 
68
  - config_name: overexpression
69
  description: Overexpression perturbation normalized log2 fold changes
 
71
  data_files:
72
  - split: train
73
  path: overexpression.parquet
74
+ experimental_conditions:
75
+ growth_conditions:
76
+ media:
77
+ name: selective_medium
78
+ carbon_source:
79
+ compound: D-raffinose
80
+ concentration_percent: 2
81
+ induction:
82
+ inducer:
83
+ compound: D-galactose
84
+ concentration_percent: 2
85
+ duration_hours: 3
86
  dataset_info:
87
  features:
88
  - name: sample_id
89
  dtype: integer
90
  description: >-
91
+ unique identifier for a specific sample. The sample ID identifies
92
+ a unique regulator_locus_tag and can be used to join to the
93
+ other datasets in this repo, including the metadata
94
  - name: regulator_locus_tag
95
  dtype: string
96
+ description: >-
97
+ Systematic gene name (ORF identifier) of the
98
+ perturbed transcription factor
99
+ role: regulator_identifier
100
  - name: regulator_symbol
101
  dtype: string
102
  description: Standard gene symbol of the perturbed transcription factor
103
  - name: target_locus_tag
104
  dtype: string
105
+ description: >-
106
+ Systematic gene name (ORF identifier) of the
107
+ target gene measured
108
+ role: target_identifier
109
  - name: target_symbol
110
  dtype: string
111
  description: Standard gene symbol of the target gene measured
112
+ role: target_identifier
113
  - name: dye_plus
114
  dtype: float64
115
  role: quantitative_measure
 
126
  dtype: float64
127
  role: quantitative_measure
128
  description: >-
129
+ Average log2 fold change across dye orientations,
130
+ providing a dye-independent estimate of gene expression
131
+ change upon transcription factor overexpression.
132
 
133
  - config_name: knockout
134
  description: Deletion/knockout perturbation normalized log2 fold changes
 
136
  data_files:
137
  - split: train
138
  path: knockout.parquet
139
+ experimental_conditions:
140
+ growth_conditions:
141
+ media:
142
+ name: synthetic_medium
143
+ carbon_source:
144
+ compound: D-glucose
145
+ concentration_percent: 2
146
  dataset_info:
147
  features:
148
  - name: sample_id
149
  dtype: integer
150
  description: >-
151
+ unique identifier for a specific sample. The sample ID identifies
152
+ a unique regulator_locus_tag and can be used to join to the
153
+ other datasets in this repo, including the metadata
154
  - name: regulator_locus_tag
155
  dtype: string
156
+ description: >-
157
+ Systematic gene name (ORF identifier) of the perturbed
158
+ transcription factor
159
+ role: regulator_identifier
160
  - name: regulator_symbol
161
  dtype: string
162
  description: Standard gene symbol of the perturbed transcription factor
163
+ role: regulator_identifier
164
  - name: target_locus_tag
165
  dtype: string
166
+ description: >-
167
+ Systematic gene name (ORF identifier) of the
168
+ target gene measured
169
+ role: target_identifier
170
  - name: target_symbol
171
  dtype: string
172
  description: Standard gene symbol of the target gene measured
173
+ role: target_identifier
174
  - name: dye_plus
175
  dtype: float64
 
176
  description: >-
177
  Normalized log2 fold change for positive (+) dye orientation.
178
  Positive values indicate upregulation in response to deletion.
179
+ role: quantitative_measure
180
  - name: dye_minus
181
  dtype: float64
 
182
  description: >-
183
  Normalized log2 fold change for negative (-) dye orientation.
184
  Positive values indicate upregulation in response to deletion.
185
+ role: quantitative_measure
186
  - name: mean_norm_log2fc
187
  dtype: float64
 
188
  description: >-
189
  Average log2 fold change across dye orientations, providing a
190
+ dye-independent estimate of gene expression change upon
191
+ transcription factor deletion.
192
+ role: quantitative_measure
193
  ---
194
  # Hughes 2006
195