-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplot.py
More file actions
463 lines (398 loc) · 12.9 KB
/
plot.py
File metadata and controls
463 lines (398 loc) · 12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
"""
Author: Alexandra Lee
Date Created: 18 December 2020
This script provide supporting functions to run analysis notebooks.
This script includes functions to plot data
"""
import os
import pandas as pd
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt
def make_volcano_template_highlight_DEG(
template_DE_stats_filename,
project_id,
pval_name,
logFC_name,
output_figure_filename,
):
"""
This function creates volcano plot of template experiment
highlighting traditional DEGs
Arguments
----------
template_DE_stats_filename: str
File containing DE statistics for template experiment
project_id: str
Experiment identifier
pval_name: "padj" or "adj.P.Val"
logFC_name: "logFC" or "log2FoldChange"
output_figure_filename: str
File to save figure to
"""
# Read template DE stats
template_DE_stats_df = pd.read_csv(
template_DE_stats_filename, sep="\t", index_col=0, header=0
)
# Take -log10 of adjusted p-value
template_DE_stats_df["padj_log10"] = -np.log10(template_DE_stats_df[pval_name])
# Label DEGs by traditional criteria
# log2FC > 1
# padj < 0.05
template_DE_stats_df["gene group"] = "none"
template_DE_stats_df.loc[
(abs(template_DE_stats_df[logFC_name]) > 1)
& (template_DE_stats_df[pval_name] < 0.05),
"gene group",
] = "DEG"
# Plot
colors = ["lightgrey", "#a1dab4ff"]
f = sns.scatterplot(
data=template_DE_stats_df,
x=logFC_name,
y="padj_log10",
hue="gene group",
hue_order=["none", "DEG"],
style="gene group",
markers={"none": ".", "DEG": "o"},
palette=colors,
linewidth=0,
alpha=0.5,
)
handles, labels = f.get_legend_handles_labels()
f.legend([handles[1]], [labels[1]], loc="upper right")
f.set_xlabel(r"log$_2$ Fold Change", fontsize=14, fontname="Verdana")
f.set_ylabel(r"-log$_{10}$ (FDR adjusted p-value)", fontsize=14, fontname="Verdana")
f.set_title(f"Template experiment ({project_id})", fontsize=16, fontname="Verdana")
f.figure.savefig(
output_figure_filename,
format="svg",
bbox_inches="tight",
transparent=True,
pad_inches=0,
dpi=300,
)
def make_volcano_simulated_highlight_DEG(
simulated_DE_stats_dir,
project_id,
pval_name,
logFC_name,
num_simulated,
ncols,
nrows,
fig_width,
fig_height,
output_figure_filename,
):
"""
This function makes multiple volcano plots of example simulated experiments
and highlights traditional DEGs
Arguments
----------
template_DE_stats_filename: str
File containing DE statistics for template experiment
project_id: str
Experiment identifier
pval_name: "padj" or "adj.P.Val"
logFC_name: "logFC" or "log2FoldChange"
num_simulated: int
Number of simulated experiments
ncols: int
Number of columns in facet plot
nrows: int
Number of rows in facet plot
fig_width: int
Width of figure
fig_height: ing
Height of figure
output_figure_filename: str
File to save figure to
"""
fig, axes = plt.subplots(ncols=ncols, nrows=nrows, figsize=(fig_width, fig_height))
axes = axes.ravel()
for i in range(num_simulated):
# Get filename
simulated_DE_stats_filename = os.path.join(
simulated_DE_stats_dir, f"DE_stats_simulated_data_{project_id}_{i}.txt",
)
# Read simulated DE stats
simulated_DE_stats_df = pd.read_csv(
simulated_DE_stats_filename, sep="\t", index_col=0, header=0
)
# Take -log10 of adjusted p-value
simulated_DE_stats_df["padj_log10"] = -np.log10(
simulated_DE_stats_df[pval_name]
)
# Label DEGs by traditional criteria
# log2FC > 1
# padj < 0.05
simulated_DE_stats_df["gene group"] = "none"
simulated_DE_stats_df.loc[
(abs(simulated_DE_stats_df[logFC_name]) > 1)
& (simulated_DE_stats_df[pval_name] < 0.05),
"gene group",
] = "DEG"
# Plot
colors = ["lightgrey", "#a1dab4ff"]
f = sns.scatterplot(
data=simulated_DE_stats_df,
x=logFC_name,
y="padj_log10",
hue="gene group",
hue_order=["none", "DEG"],
style="gene group",
markers={"none": ".", "DEG": "o"},
palette=colors,
linewidth=0,
alpha=0.5,
legend=("full" if i == 0 else False),
ax=axes[i],
)
axes[i].set_ylabel("")
axes[i].set_xlabel("")
if i == 0:
handles, labels = f.get_legend_handles_labels()
fig.legend(handles, labels, loc="center right")
f.legend_.remove()
fig.text(0.5, 0.0, r"log$_2$ Fold Change", ha="center", fontsize=14, fontname="Verdana")
fig.text(
0.08,
0.5,
r"-log$_{10}$ (FDR adjusted p-value)",
va="center",
rotation="vertical",
fontsize=14,
fontname="Verdana",
)
fig.suptitle(
f"Example simulated experiments based on {project_id}",
fontsize=16,
fontname="Verdana",
)
fig.savefig(
output_figure_filename,
format="svg",
bbox_inches="tight",
transparent=True,
pad_inches=0,
dpi=300,
)
def get_generic_genes(gene_summary_filename, generic_threshold):
"""
This function returns generic gene ids
Arguments
----------
gene_summary_filename: str
File containing summary statistics for each gene
generic_threshold: int
Rank threshold to use to identify generic genes
"""
# Read summary file
summary_data = pd.read_csv(gene_summary_filename, sep="\t", index_col=0, header=0)
# Find all genes above generic_threshold
generic_gene_ids = list(
summary_data[summary_data["Rank (simulated)"] >= generic_threshold].index
)
return generic_gene_ids
def get_specific_genes(gene_summary_filename, num_top_genes):
"""
This function returns specific gene ids
Arguments
----------
gene_summary_filename: str
File containing summary statistics for each gene
num_top_genes: int
Number of genes with highest z-score
"""
# Read summary file
summary_data = pd.read_csv(gene_summary_filename, sep="\t", index_col=0, header=0)
# Find all genes above generic_threshold
specific_gene_ids = list(summary_data.nlargest(num_top_genes, "Z score").index)
print(len(specific_gene_ids))
return specific_gene_ids
def make_volcano_template_highlight_generic_specific(
gene_summary_filename,
generic_threshold,
num_specific_genes,
template_DE_stats_filename,
project_id,
pval_name,
logFC_name,
output_figure_filename,
):
"""
This function creates volcano plot of template experiment
highlighting generic and specific genes.
Arguments
----------
gene_summary_filename: str
File containing summary statistics for each gene
generic_threshold: int
Rank threshold to use to identify generic genes
num_specific_genes: int
Number of top Z-scoring genes. These will be
considered specific genes
template_DE_stats_filename: str
File containing DE statistics for template experiment
project_id: str
Experiment identifier
pval_name: "padj" or "adj.P.Val"
logFC_name: "logFC" or "log2FoldChange"
output_figure_filename: str
File to save figure to
"""
# Get generic gene ids
generic_gene_ids = get_generic_genes(gene_summary_filename, generic_threshold)
# Get specific gene ids
specific_gene_ids = get_specific_genes(gene_summary_filename, num_specific_genes)
# Read template DE stats
template_DE_stats_df = pd.read_csv(
template_DE_stats_filename, sep="\t", index_col=0, header=0
)
# Take -log10 of adjusted p-value
template_DE_stats_df["padj_log10"] = -np.log10(template_DE_stats_df[pval_name])
# Label generic genes
template_DE_stats_df["gene group"] = "none"
template_DE_stats_df.loc[generic_gene_ids, "gene group"] = "generic"
template_DE_stats_df.loc[specific_gene_ids, "gene group"] = "specific"
# Plot
colors = ["lightgrey", "#2c7fb8", "red"]
f = sns.scatterplot(
data=template_DE_stats_df,
x=logFC_name,
y="padj_log10",
hue="gene group",
hue_order=["none", "generic", "specific"],
style="gene group",
markers={"none": ".", "generic": ".", "specific": "o"},
palette=colors,
linewidth=0,
alpha=0.5,
)
f.set_xlabel(r"log$_2$ Fold Change", fontsize=14, fontname="Verdana")
f.set_ylabel(r"-log$_{10}$ (FDR adjusted p-value)", fontsize=14, fontname="Verdana")
f.set_title(f"Template experiment ({project_id})", fontsize=16, fontname="Verdana")
f.figure.savefig(
output_figure_filename,
format="svg",
bbox_inches="tight",
transparent=True,
pad_inches=0,
dpi=300,
)
def make_volcano_simulated_highlight_generic_specific(
gene_summary_filename,
generic_threshold,
num_specific_genes,
simulated_DE_stats_dir,
project_id,
pval_name,
logFC_name,
num_simulated,
ncols,
nrows,
fig_width,
fig_height,
output_figure_filename,
):
"""
This function makes multiple volcano plots of example simulated experiments
and highlights generic and specific genes on all volcano plots
Arguments
----------
gene_summary_filename: str
File containing summary statistics for each gene
generic_threshold: int
Rank threshold to use to identify generic genes
num_specific_genes: int
Number of top Z-scoring genes. These will be
considered specific genes
template_DE_stats_filename: str
File containing DE statistics for template experiment
project_id: str
Experiment identifier
pval_name: "padj" or "adj.P.Val"
logFC_name: "logFC" or "log2FoldChange"
num_simulated: int
Number of simulated experiments
ncols: int
Number of columns in facet plot
nrows: int
Number of rows in facet plot
fig_width: int
Width of figure
fig_height: ing
Height of figure
output_figure_filename: str
File to save figure to
"""
# Get generic gene ids
generic_gene_ids = get_generic_genes(gene_summary_filename, generic_threshold)
# Get specific gene ids
specific_gene_ids = get_specific_genes(gene_summary_filename, num_specific_genes)
fig, axes = plt.subplots(ncols=ncols, nrows=nrows, figsize=(fig_width, fig_height))
axes = axes.ravel()
for i in range(num_simulated):
# Get filename
simulated_DE_stats_filename = os.path.join(
simulated_DE_stats_dir, f"DE_stats_simulated_data_{project_id}_{i}.txt",
)
# Read simulated DE stats
simulated_DE_stats_df = pd.read_csv(
simulated_DE_stats_filename, sep="\t", index_col=0, header=0
)
# Take -log10 of adjusted p-value
simulated_DE_stats_df["padj_log10"] = -np.log10(
simulated_DE_stats_df[pval_name]
)
# Label generic genes
simulated_DE_stats_df["gene group"] = "none"
simulated_DE_stats_df.loc[generic_gene_ids, "gene group"] = "generic"
simulated_DE_stats_df.loc[specific_gene_ids, "gene group"] = "specific"
## TO DO:
# Add threshold for logFC and pvalue?
# Plot
colors = ["lightgrey", "#2c7fb8", "red"]
f = sns.scatterplot(
data=simulated_DE_stats_df,
x=logFC_name,
y="padj_log10",
hue="gene group",
hue_order=["none", "generic", "specific"],
style="gene group",
markers={"none": ".", "generic": ".", "specific": "o"},
palette=colors,
linewidth=0,
alpha=0.5,
legend=("full" if i == 0 else False),
ax=axes[i],
)
axes[i].set_ylabel("")
axes[i].set_xlabel("")
if i == 0:
handles, labels = f.get_legend_handles_labels()
fig.legend(handles, labels, loc="center right")
f.legend_.remove()
fig.text(0.5, 0.0, r"log$_2$ Fold Change", ha="center", fontsize=14, fontname="Verdana")
fig.text(
0.08,
0.5,
r"-log$_{10}$ (FDR adjusted p-value)",
va="center",
rotation="vertical",
fontsize=14,
fontname="Verdana",
)
fig.suptitle(
f"Example simulated experiments based on {project_id}",
fontsize=16,
fontname="Verdana",
)
fig.savefig(
output_figure_filename,
format="svg",
bbox_inches="tight",
transparent=True,
pad_inches=0,
dpi=300,
)