cmatkhan commited on
Commit
b166e1d
·
1 Parent(s): 4fef197

removing zev and gev from main dataset and adding responsive column

Browse files
Files changed (3) hide show
  1. README.md +133 -0
  2. hackett_2020.parquet +2 -2
  3. zev_gev_strains.parquet +3 -0
README.md CHANGED
@@ -165,6 +165,139 @@ configs:
165
  local FDR (false discovery rate). Most users of the data will want
166
  to use this column.
167
  role: quantitative_measure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  ---
169
  # Hackett 2020
170
 
 
165
  local FDR (false discovery rate). Most users of the data will want
166
  to use this column.
167
  role: quantitative_measure
168
+ - name: responsive
169
+ dtype: bool
170
+ description: >-
171
+ This labels targets, for a given regulator, with abs(log2_shrunken_timecourses) `>` 0
172
+ - config_name: zev_gev
173
+ description: These are the Z3EV and GEV control strains (no specifically tagged TF)
174
+ default: true
175
+ dataset_type: annotated_features
176
+ metadata_fields: ["sample_id", "regulator_locus_tag", "regulator_symbol", "time", "mechanism", "restriction", "date", "strain"]
177
+ data_files:
178
+ - split: train
179
+ path: hackett_2020.parquet
180
+ dataset_info:
181
+ features:
182
+ - name: sample_id
183
+ dtype: integer
184
+ description: >-
185
+ unique identifier for a specific sample. The sample ID identifies a unique
186
+ (regulator_locus_tag, time, mechanism, restriction, date, strain) tuple.
187
+ - name: target_locus_tag
188
+ dtype: string
189
+ description: >-
190
+ The systematic ID of the feature to which the effect/pvalue is assigned.
191
+ See hf/BrentLab/yeast_genome_resources
192
+ role: target_identifier
193
+ - name: target_symbol
194
+ dtype: string
195
+ description: >-
196
+ The common name of the feature to which the effect/pvalue is assigned.
197
+ If there is no common name, the `target_locus_tag` is used.
198
+ role: target_identifier
199
+ - name: time
200
+ dtype: float
201
+ description: time point (minutes)
202
+ role: experimental_condition
203
+ - name: mechanism
204
+ dtype:
205
+ class_label:
206
+ names: ["GEV", "ZEV"]
207
+ description: Synthetic TF induction system (GEV or ZEV)
208
+ role: experimental_condition
209
+ definitions:
210
+ GEV:
211
+ perturbation_method:
212
+ type: inducible_overexpression
213
+ system: GEV
214
+ inducer: beta-estradiol
215
+ description: "Galactose-inducible estrogen receptor-VP16 fusion system"
216
+ ZEV:
217
+ perturbation_method:
218
+ type: inducible_overexpression
219
+ system: ZEV
220
+ inducer: beta-estradiol
221
+ description: "Z3 (synthetic zinc finger)-estrogen receptor-VP16 fusion system"
222
+ - name: restriction
223
+ dtype:
224
+ class_label:
225
+ names: ["M", "N", "P"]
226
+ description: >-
227
+ nutrient limitation, one of P (phosphate limitation (20 mg/l).),
228
+ N (Nitrogen‐limited cultures were maintained at 40 mg/l ammonium sulfate) or
229
+ M (Not defined in the paper or on the Calico website)
230
+ role: experimental_condition
231
+ definitions:
232
+ P:
233
+ media:
234
+ nitrogen_source:
235
+ - compound: ammonium_sulfate
236
+ # Saldanha et al 2004: 5 g/l
237
+ concentration_percent: 0.5
238
+ phosphate_source:
239
+ - compound: potassium_phosphate_monobasic
240
+ # Hackett et al 2020: 20 mg/l
241
+ concentration_percent: 0.002
242
+ N:
243
+ media:
244
+ nitrogen_source:
245
+ - compound: ammonium_sulfate
246
+ # Hackett et al 2020: 40 mg/l
247
+ concentration_percent: 0.004
248
+ M:
249
+ description: "Not defined in the paper or on the Calico website"
250
+ - name: date
251
+ dtype: string
252
+ description: date performed
253
+ role: experimental_condition
254
+ - name: strain
255
+ dtype: string
256
+ description: strain name
257
+ role: experimental_condition
258
+ - name: green_median
259
+ dtype: float
260
+ description: median of green (reference) channel fluorescence
261
+ role: quantitative_measure
262
+ - name: red_median
263
+ dtype: float
264
+ description: median of red (experimental) channel fluorescence
265
+ role: quantitative_measure
266
+ - name: log2_ratio
267
+ dtype: float
268
+ description: log2(red / green) subtracting value at time zero
269
+ role: quantitative_measure
270
+ - name: log2_cleaned_ratio
271
+ dtype: float
272
+ description: Non-specific stress response and prominent outliers removed
273
+ role: quantitative_measure
274
+ - name: log2_noise_model
275
+ dtype: float
276
+ description: estimated noise standard deviation
277
+ role: quantitative_measure
278
+ - name: log2_cleaned_ratio_zth2d
279
+ dtype: float
280
+ description: >-
281
+ cleaned timecourses hard-thresholded based on
282
+ multiple observations (or last observation) passing the noise model
283
+ role: quantitative_measure
284
+ - name: log2_selected_timecourses
285
+ dtype: float
286
+ description: >-
287
+ cleaned timecourses hard-thresholded based on single observations
288
+ passing noise model and impulse evaluation of biological feasibility
289
+ role: quantitative_measure
290
+ - name: log2_shrunken_timecourses
291
+ dtype: float
292
+ description: >-
293
+ selected timecourses with observation-level shrinkage based on
294
+ local FDR (false discovery rate). Most users of the data will want
295
+ to use this column.
296
+ role: quantitative_measure
297
+ - name: responsive
298
+ dtype: bool
299
+ description: >-
300
+ This labels targets, for a given regulator, with abs(log2_shrunken_timecourses) `>` 0
301
  ---
302
  # Hackett 2020
303
 
hackett_2020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:10f544e6c4e4da0b411f1084cbe7f9188a842bc6578b699bdf02f3507aff6592
3
- size 409722077
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1496f61358e24b7333b056e11742a265c2855f1cb68433878f4f89b18508fe
3
+ size 433257326
zev_gev_strains.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c295c406ed9e4d822da50c6bfa1dfefe07e9e93fa926e4f17199f5bbb54598ec
3
+ size 8800001