cmatkhan commited on
Commit
299f18c
·
1 Parent(s): 0f20ac4

updating readme

Browse files
Files changed (2) hide show
  1. README.md +225 -0
  2. scripts/parse_mahendrawada_data.R +34 -0
README.md CHANGED
@@ -26,6 +26,9 @@ experimental_conditions:
26
  media:
27
  # Mahendrawada et al 2025: "synthetic complete (SC) media"
28
  name: synthetic_complete
 
 
 
29
  nitrogen_source:
30
  - compound: yeast_nitrogen_base
31
  # Mahendrawada et al 2025: 1.7 g/L (without ammonium sulfate or amino acids (BD Difco))
@@ -1200,6 +1203,67 @@ configs:
1200
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1201
  description: Environmental growth condition for this experiment
1202
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
  - name: timepoint
1204
  dtype: float64
1205
  description: Time point in minutes (standard is 30 minutes post-treatment. very few other timepoints)
@@ -1273,6 +1337,16 @@ configs:
1273
  names: ["DMSO", "IAA"]
1274
  description: Degron treatment condition (DMSO control or IAA degradation)
1275
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
1276
  - name: degron_variant
1277
  dtype:
1278
  class_label:
@@ -1284,6 +1358,53 @@ configs:
1284
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1285
  description: Environmental growth condition
1286
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1287
  - name: timepoint
1288
  dtype: float64
1289
  description: Time point for time-series experiments (minutes)
@@ -1364,6 +1485,53 @@ configs:
1364
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1365
  description: Environmental growth condition
1366
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1367
  - name: replicate
1368
  dtype: string
1369
  description: Biological replicate identifier (A, B, or C)
@@ -1433,6 +1601,53 @@ configs:
1433
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1434
  description: Environmental growth condition
1435
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1436
  - name: replicate
1437
  dtype: string
1438
  description: Biological replicate identifier (A, B, or C)
@@ -1502,6 +1717,16 @@ configs:
1502
  names: ["DMSO", "IAA"]
1503
  description: Degron treatment condition (DMSO control or IAA degradation)
1504
  role: experimental_condition
 
 
 
 
 
 
 
 
 
 
1505
  - name: replicate
1506
  dtype: string
1507
  description: Biological replicate identifier (A, B, or C)
 
26
  media:
27
  # Mahendrawada et al 2025: "synthetic complete (SC) media"
28
  name: synthetic_complete
29
+ carbon_source:
30
+ # Carbon source is not specified in the paper; D-glucose is standard for SC media.
31
+ - compound: D-glucose
32
  nitrogen_source:
33
  - compound: yeast_nitrogen_base
34
  # Mahendrawada et al 2025: 1.7 g/L (without ammonium sulfate or amino acids (BD Difco))
 
1203
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1204
  description: Environmental growth condition for this experiment
1205
  role: experimental_condition
1206
+ definitions:
1207
+ standard_30C:
1208
+ description: Standard synthetic complete medium at 30°C; the baseline growth condition.
1209
+ temperature_celsius: 30
1210
+ media:
1211
+ name: synthetic_complete
1212
+ SM:
1213
+ description: >-
1214
+ Amino acid starvation induced by sulfometuron methyl (SM) in
1215
+ synthetic complete medium lacking Ile/Val.
1216
+ temperature_celsius: 30
1217
+ media:
1218
+ name: synthetic_complete_minus_ile_val
1219
+ chemical_treatment:
1220
+ compound: sulfometuron_methyl
1221
+ concentration_ug_per_mL: 0.5
1222
+ duration_minutes: 60
1223
+ galactose:
1224
+ description: >-
1225
+ Galactose induction condition for Gal4 experiments; cells grown
1226
+ in YEP-Raffinose then induced with 2% galactose for 2 hours.
1227
+ temperature_celsius: 30
1228
+ media:
1229
+ # Methods: YEP-Raffinose (1% yeast extract, 2% peptone, 2% raffinose)
1230
+ # induced with 2% galactose for 2h
1231
+ name: yeast_extract_peptone_raffinose_plus_galactose
1232
+ carbon_source:
1233
+ - compound: D-raffinose
1234
+ concentration_percent: 2
1235
+ - compound: D-galactose
1236
+ concentration_percent: 2
1237
+ nitrogen_source:
1238
+ - compound: yeast_extract
1239
+ concentration_percent: 1
1240
+ - compound: peptone
1241
+ concentration_percent: 2
1242
+ galactose_induction_duration_hours: 2
1243
+ raffinose:
1244
+ description: >-
1245
+ Uninduced raffinose condition for Gal4 experiments; cells grown
1246
+ in YEP-Raffinose without galactose addition.
1247
+ temperature_celsius: 30
1248
+ media:
1249
+ # Methods: YEP-Raffinose (1% yeast extract, 2% peptone, 2% raffinose)
1250
+ name: yeast_extract_peptone_raffinose
1251
+ carbon_source:
1252
+ - compound: D-raffinose
1253
+ concentration_percent: 2
1254
+ nitrogen_source:
1255
+ - compound: yeast_extract
1256
+ concentration_percent: 1
1257
+ - compound: peptone
1258
+ concentration_percent: 2
1259
+ heat_shock_37C:
1260
+ description: >-
1261
+ Heat shock to 37°C for 10 minutes, used for Hsf1 and Msn2
1262
+ experiments; equal volume of 44°C medium added to 30°C culture.
1263
+ initial_temperature_celsius: 30
1264
+ mixing_temperature_celsius: 44
1265
+ final_temperature_celsius: 37
1266
+ incubation_duration_minutes: 10
1267
  - name: timepoint
1268
  dtype: float64
1269
  description: Time point in minutes (standard is 30 minutes post-treatment. very few other timepoints)
 
1337
  names: ["DMSO", "IAA"]
1338
  description: Degron treatment condition (DMSO control or IAA degradation)
1339
  role: experimental_condition
1340
+ definitions:
1341
+ DMSO:
1342
+ description: DMSO vehicle control; the auxin-inducible degron tag is inactive and the transcription factor is present.
1343
+ IAA:
1344
+ description: Indole-3-acetic acid (auxin) treatment to induce degradation of the IAA7-tagged transcription factor.
1345
+ chemical_treatment:
1346
+ compound: indole-3-acetic_acid
1347
+ # Methods: 500 μM IAA for 30 min
1348
+ concentration_uM: 500
1349
+ duration_minutes: 30
1350
  - name: degron_variant
1351
  dtype:
1352
  class_label:
 
1358
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1359
  description: Environmental growth condition
1360
  role: experimental_condition
1361
+ definitions:
1362
+ standard_30C:
1363
+ description: Standard synthetic complete medium at 30°C; the baseline growth condition.
1364
+ temperature_celsius: 30
1365
+ media:
1366
+ name: synthetic_complete
1367
+ SM:
1368
+ description: >-
1369
+ Amino acid starvation induced by sulfometuron methyl (SM) in
1370
+ synthetic complete medium lacking Ile/Val.
1371
+ temperature_celsius: 30
1372
+ media:
1373
+ name: synthetic_complete_minus_ile_val
1374
+ chemical_treatment:
1375
+ compound: sulfometuron_methyl
1376
+ concentration_ug_per_mL: 0.5
1377
+ duration_minutes: 60
1378
+ galactose:
1379
+ description: >-
1380
+ Galactose induction condition for Gal4 experiments; cells grown in
1381
+ YEP-Raffinose then induced with 2% galactose for 2 hours.
1382
+ temperature_celsius: 30
1383
+ media:
1384
+ name: yeast_extract_peptone
1385
+ carbon_source:
1386
+ - compound: D-raffinose
1387
+ concentration_percent: 2
1388
+ - compound: D-galactose
1389
+ concentration_percent: 2
1390
+ galactose_induction_duration_hours: 2
1391
+ raffinose:
1392
+ description: >-
1393
+ Uninduced raffinose condition for Gal4 experiments; cells grown in
1394
+ YEP-Raffinose without galactose addition.
1395
+ temperature_celsius: 30
1396
+ media:
1397
+ name: yeast_extract_peptone
1398
+ carbon_source:
1399
+ - compound: D-raffinose
1400
+ concentration_percent: 2
1401
+ heat_shock_37C:
1402
+ description: >-
1403
+ Heat shock to 37°C for 10 minutes, used for Hsf1 and Msn2
1404
+ experiments; equal volume of 44°C medium added to 30°C culture.
1405
+ initial_temperature_celsius: 30
1406
+ final_temperature_celsius: 37
1407
+ incubation_duration_minutes: 10
1408
  - name: timepoint
1409
  dtype: float64
1410
  description: Time point for time-series experiments (minutes)
 
1485
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1486
  description: Environmental growth condition
1487
  role: experimental_condition
1488
+ definitions:
1489
+ standard_30C:
1490
+ description: Standard synthetic complete medium at 30°C; the baseline growth condition.
1491
+ temperature_celsius: 30
1492
+ media:
1493
+ name: synthetic_complete
1494
+ SM:
1495
+ description: >-
1496
+ Amino acid starvation induced by sulfometuron methyl (SM) in
1497
+ synthetic complete medium lacking Ile/Val.
1498
+ temperature_celsius: 30
1499
+ media:
1500
+ name: synthetic_complete_minus_ile_val
1501
+ chemical_treatment:
1502
+ compound: sulfometuron_methyl
1503
+ concentration_ug_per_mL: 0.5
1504
+ duration_minutes: 60
1505
+ galactose:
1506
+ description: >-
1507
+ Galactose induction condition for Gal4 experiments; cells grown in
1508
+ YEP-Raffinose then induced with 2% galactose for 2 hours.
1509
+ temperature_celsius: 30
1510
+ media:
1511
+ name: yeast_extract_peptone
1512
+ carbon_source:
1513
+ - compound: D-raffinose
1514
+ concentration_percent: 2
1515
+ - compound: D-galactose
1516
+ concentration_percent: 2
1517
+ galactose_induction_duration_hours: 2
1518
+ raffinose:
1519
+ description: >-
1520
+ Uninduced raffinose condition for Gal4 experiments; cells grown in
1521
+ YEP-Raffinose without galactose addition.
1522
+ temperature_celsius: 30
1523
+ media:
1524
+ name: yeast_extract_peptone
1525
+ carbon_source:
1526
+ - compound: D-raffinose
1527
+ concentration_percent: 2
1528
+ heat_shock_37C:
1529
+ description: >-
1530
+ Heat shock to 37°C for 10 minutes, used for Hsf1 and Msn2
1531
+ experiments; equal volume of 44°C medium added to 30°C culture.
1532
+ initial_temperature_celsius: 30
1533
+ final_temperature_celsius: 37
1534
+ incubation_duration_minutes: 10
1535
  - name: replicate
1536
  dtype: string
1537
  description: Biological replicate identifier (A, B, or C)
 
1601
  names: ["standard_30C", "SM", "galactose", "raffinose", "heat_shock_37C"]
1602
  description: Environmental growth condition
1603
  role: experimental_condition
1604
+ definitions:
1605
+ standard_30C:
1606
+ description: Standard synthetic complete medium at 30°C; the baseline growth condition.
1607
+ temperature_celsius: 30
1608
+ media:
1609
+ name: synthetic_complete
1610
+ SM:
1611
+ description: >-
1612
+ Amino acid starvation induced by sulfometuron methyl (SM) in
1613
+ synthetic complete medium lacking Ile/Val.
1614
+ temperature_celsius: 30
1615
+ media:
1616
+ name: synthetic_complete_minus_ile_val
1617
+ chemical_treatment:
1618
+ compound: sulfometuron_methyl
1619
+ concentration_ug_per_mL: 0.5
1620
+ duration_minutes: 60
1621
+ galactose:
1622
+ description: >-
1623
+ Galactose induction condition for Gal4 experiments; cells grown in
1624
+ YEP-Raffinose then induced with 2% galactose for 2 hours.
1625
+ temperature_celsius: 30
1626
+ media:
1627
+ name: yeast_extract_peptone
1628
+ carbon_source:
1629
+ - compound: D-raffinose
1630
+ concentration_percent: 2
1631
+ - compound: D-galactose
1632
+ concentration_percent: 2
1633
+ galactose_induction_duration_hours: 2
1634
+ raffinose:
1635
+ description: >-
1636
+ Uninduced raffinose condition for Gal4 experiments; cells grown in
1637
+ YEP-Raffinose without galactose addition.
1638
+ temperature_celsius: 30
1639
+ media:
1640
+ name: yeast_extract_peptone
1641
+ carbon_source:
1642
+ - compound: D-raffinose
1643
+ concentration_percent: 2
1644
+ heat_shock_37C:
1645
+ description: >-
1646
+ Heat shock to 37°C for 10 minutes, used for Hsf1 and Msn2
1647
+ experiments; equal volume of 44°C medium added to 30°C culture.
1648
+ initial_temperature_celsius: 30
1649
+ final_temperature_celsius: 37
1650
+ incubation_duration_minutes: 10
1651
  - name: replicate
1652
  dtype: string
1653
  description: Biological replicate identifier (A, B, or C)
 
1717
  names: ["DMSO", "IAA"]
1718
  description: Degron treatment condition (DMSO control or IAA degradation)
1719
  role: experimental_condition
1720
+ definitions:
1721
+ DMSO:
1722
+ description: DMSO vehicle control; the auxin-inducible degron tag is inactive and the transcription factor is present.
1723
+ IAA:
1724
+ description: Indole-3-acetic acid (auxin) treatment to induce degradation of the IAA7-tagged transcription factor.
1725
+ chemical_treatment:
1726
+ compound: indole-3-acetic_acid
1727
+ # Methods: 500 μM IAA for 30 min
1728
+ concentration_uM: 500
1729
+ duration_minutes: 30
1730
  - name: replicate
1731
  dtype: string
1732
  description: Biological replicate identifier (A, B, or C)
scripts/parse_mahendrawada_data.R CHANGED
@@ -90,3 +90,37 @@ gc()
90
  # write_statistics = TRUE,
91
  # use_dictionary = c(
92
  # chr = TRUE))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  # write_statistics = TRUE,
91
  # use_dictionary = c(
92
  # chr = TRUE))
93
+
94
+ ##### separating GAL4 samples
95
+
96
+ mahendrawada_chec_af_combined <- list(
97
+ meta = arrow::read_parquet("~/code/hf/mahendrawada_2025/chec_mahendrawada_m2025_af_combined_meta.parquet"),
98
+ data = arrow::read_parquet("~/code/hf/mahendrawada_2025/chec_mahendrawada_m2025_af_combined.parquet")
99
+ )
100
+
101
+
102
+
103
+ standard_meta = mahendrawada_chec_af_combined$meta |>
104
+ filter(condition=='standard')
105
+
106
+ standard_data = mahendrawada_chec_af_combined$data |>
107
+ filter(sample_id %in% standard_meta$sample_id) |>
108
+ left_join(dplyr::select(standard_meta,
109
+ sample_id,
110
+ regulator_locus_tag,
111
+ regulator_symbol,
112
+ mahendrawada_symbol)) |>
113
+ dplyr::relocate(sample_id,
114
+ regulator_locus_tag,
115
+ regulator_symbol,
116
+ mahendrawada_symbol)
117
+
118
+
119
+ # arrow::write_parquet(
120
+ # standard_data,
121
+ # "~/code/hf/mahendrawada_2025/chec_mahendrawada_m2025_af_combined_standard.parquet",
122
+ # compression = "zstd",
123
+ # compression_level = 3
124
+ # )
125
+
126
+