-
Notifications
You must be signed in to change notification settings - Fork 0
/
combined_enrichment_analysis.jl
598 lines (526 loc) · 30.1 KB
/
combined_enrichment_analysis.jl
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
proj_info = (id = "mpxv",
oesc_ver = "20221117")
datasets = Dict(
:fp => (fit_ver="20221104", data_ver = "20221104",
analysis=:msglm, ptm=nothing,
datatype=:fp, entity=:protein,
label="Proteome",
color="#226430"),
:phospho => (fit_ver="20221111", data_ver = "20221105",
analysis=:msglm, ptm=:phospho,
datatype=:phospho, entity=:ptm,
label="Phosphoproteome",
color="#5e268f"),
:rnaseq => (fit_ver="20221116",
analysis=:DESeq2, ptm=nothing,
datatype=:rnaseq, entity=:gene,
label="Transcriptome",
color="#bf1c2c"),
)
using Pkg
Pkg.activate(@__DIR__)
using Revise
using RData, CSV, DataFrames, FastaIO
using JLD2
using StatsBase
@info "Project '$(proj_info.id)' analysis version=$(proj_info.oesc_ver)"
const base_scripts_path = "/home/ge54heq/projects"
const base_analysis_path = "/pool/analysis/yhuang"
const misc_scripts_path = joinpath(base_scripts_path, "misc_jl");
const analysis_path = joinpath(base_analysis_path, proj_info.id)
const data_path = joinpath(analysis_path, "data")
const results_path = joinpath(analysis_path, "results")
const scratch_path = joinpath(analysis_path, "scratch")
const plots_path = joinpath(analysis_path, "plots")
const party3rd_data_path = "/pool/pub3rdparty"
includet(joinpath(misc_scripts_path, "frame_utils.jl"));
includet(joinpath(misc_scripts_path, "msglm_utils.jl"));
includet(joinpath(misc_scripts_path, "delimdata_utils.jl"));
includet(joinpath(misc_scripts_path, "fasta_reader.jl"));
include(joinpath(misc_scripts_path, "ms_import.jl"));
includet(joinpath(misc_scripts_path, "protgroup_assembly.jl"));
includet(joinpath(misc_scripts_path, "protgroup_crossmatch.jl"));
# load data and fits
msglm_rdata = Dict(begin
@info "Loading $dsname analysis (fit_ver=$(dsinfo.fit_ver))..."
dsname => (input_data = load(joinpath(scratch_path, "$(proj_info.id)_msglm_data_$(dsinfo.datatype)_$(dsinfo.fit_ver).RData"), convert=true),
full_data = load(joinpath(scratch_path, "$(proj_info.id)_msdata_full_$(dsinfo.datatype)_$(dsinfo.data_ver).RData"), convert=true),
fit = load(joinpath(results_path, "$(proj_info.id)_msglm_fit_$(dsinfo.datatype)_$(dsinfo.fit_ver).RData"), convert=true))
end for (dsname, dsinfo) in pairs(datasets) if dsinfo.analysis == :msglm);
# fix some data differences
for (dsname, rdata) in pairs(msglm_rdata)
@info "Fixing $dsname"
msdata_full = rdata.full_data["msdata_full"]
proteins_df = msdata_full["proteins"]
proteins_df.organism = [ismissing(org) ? org : replace(org, r"\s+OX=\d+$" => "") for org in proteins_df.organism]
hasproperty(proteins_df, :genename) && rename!(proteins_df, :genename => :gene_name)
if hasproperty(proteins_df, :protein_name) && hasproperty(proteins_df, :protein_description)
rename!(proteins_df, :protein_name => :protein_code, :protein_description => :protein_name)
end
peptides_df = msdata_full["peptides"]
hasproperty(peptides_df, :peptide_seq) || rename!(peptides_df, :seq => :peptide_seq)
pepmodstates_df = msdata_full["pepmodstates"]
if haskey(msdata_full, "pepmods")
pepmods_df = msdata_full["pepmods"]
missing_pms_cols = intersect(setdiff([:peptide_id, :nselptms], propertynames(pepmodstates_df)), propertynames(pepmods_df))
if !isempty(missing_pms_cols)
pepmodstates_df = innerjoin(pepmodstates_df, pepmods_df[!, [[:pepmod_id]; missing_pms_cols]], on=:pepmod_id)|> unique! #sometimes contaminants might be counted twice in pepmods
@assert nrow(pepmodstates_df) == nrow(msdata_full["pepmodstates"])
msdata_full["pepmodstates"] = pepmodstates_df
end
end
pms_intensities_df = msdata_full["pepmodstate_intensities"]
hasproperty(pms_intensities_df, :psm_pvalue) || insertcols!(pms_intensities_df, :psm_pvalue =>1) #fp doesn't have psm_pvalue, use 1 instead. Later the peptides from fp won't be influcing the protgroup of ptms anyway
if !hasproperty(pms_intensities_df, :peptide_id)
pms_intensities_df = innerjoin(pms_intensities_df, pepmodstates_df[!, [:pepmodstate_id, :peptide_id]], on=:pepmodstate_id)
@assert nrow(pms_intensities_df) == nrow(msdata_full["pepmodstate_intensities"])
msdata_full["pepmodstate_intensities"] = pms_intensities_df
end
end
peptide2protein_df = combine(groupby(reduce(vcat, begin
@info "Processing peptides of $dsname"
isptm = !isnothing(datasets[dsname].ptm)
msdata = dsdata.full_data["msdata_full"]
if isptm
pep2prot_df = copy(msdata["peptide2protein"], copycols=false)
else
pep2prot_df = select(msdata["peptides"], [:peptide_id, :peptide_seq, :protein_acs])
pep2prot_df = filter!(r -> !ismissing.(r.protein_acs), pep2prot_df)
pep2prot_df[!, "protein_ac"] = split.(pep2prot_df.protein_acs, ";")
pep2prot_df = flatten(pep2prot_df, "protein_ac")
end
if !hasproperty(pep2prot_df, :peptide_seq)
pep2prot_df = innerjoin(msdata["peptide2protein"], msdata["peptides"],
on=:peptide_id)
end
if isptm # only use modified peptides for PTM datasets
pepmodstates_df = filter(r -> r.nselptms > 0, msdata["pepmodstates"])
# remove phosphosites from ubi data
(dsname == :ubi) && filter!(r -> occursin("[GlyGly", r.pepmod_seq), pepmodstates_df)
select!(pepmodstates_df, [:pepmodstate_id, :peptide_id])
else
pepmodstates_df = select(msdata["pepmodstates"], [:pepmodstate_id, :peptide_id])
end
pms_intensities_df = copy(msdata["pepmodstate_intensities"], copycols=false)
if !hasproperty(pms_intensities_df, :peptide_seq)
pms_intensities_df = innerjoin(semijoin(pms_intensities_df, pepmodstates_df, on=:pepmodstate_id),
select(msdata["peptides"], [:peptide_id, :peptide_seq]), on=:peptide_id)
end
pepstats_df = combine(groupby(pms_intensities_df, :peptide_seq),
:psm_pvalue => (x -> minimum(coalesce(x,1))) => :psm_pvalue) #note that some peptides has nothing in psm_pvalue at all
# set the rank of non-PTM peptides to -1, so that proteome-only observed peptides are ignored (was: still used to define
# protein groups, but they would not split the protein group derived from PTM datasets)
pepstats_df.peptide_rank = ifelse.(coalesce.(pepstats_df.psm_pvalue, 1.0) .<= 1E-3, ifelse(isptm, 1, 2), -1)
pep2prot_df = innerjoin(pep2prot_df, pepstats_df, on=:peptide_seq)
pep2prot_df.peptide_seq = replace.(pep2prot_df.peptide_seq, Ref('_' => ""))
select!(pep2prot_df, [:protein_ac, :peptide_seq, :peptide_rank])
unique!(pep2prot_df)
pep2prot_df[!, :dataset] .= dsname
@info " $(nrow(pep2prot_df)) associations of $(length(unique(pep2prot_df.peptide_seq))) peptide(s) to $(length(unique(pep2prot_df.protein_ac))) protein(s)"
pep2prot_df
end for (dsname, dsdata) in pairs(msglm_rdata)), [:protein_ac, :peptide_seq]),
:peptide_rank => (x -> any(>(0), x) ? minimum(filter(>(0), x)) : -1) => :peptide_rank,
:dataset => (x -> join(sort(x), ' ')) => :datasets)
peptide2proteins = Dict(df.peptide_seq[1] => (Set{String}(df.protein_ac), df.peptide_rank[1])
for df in groupby(peptide2protein_df, :peptide_seq))
proteins_df = reduce(vcat, begin
select(rdata.full_data["msdata_full"]["proteins"], [:protein_ac, :gene_name, :protein_code, :protein_name, :protein_existence, :src_db, :is_contaminant, :is_viral, :organism], copycols=false)
end for (dsname, rdata) in msglm_rdata) |> unique!
proteins_df.protein_ac_noiso = Fasta.strip_uniprot_isoform.(proteins_df.protein_ac)
for noiso_group_df in groupby(proteins_df, :protein_ac_noiso) # extrapolate best PE across isoforms
pe = noiso_group_df.protein_existence
if any(ismissing, pe) && any(!ismissing, pe)
noiso_group_df.protein_existence .= coalesce.(pe, minimum(skipmissing(pe)))
elseif any(ismissing, pe) && any(noiso_group_df.is_viral)
noiso_group_df.protein_existence .= 1
end
end
# calculate AC ranks - the more canonical proptein is, the better
protein_ac_ranks = Dict(r.protein_ac => ProtgroupXMatch.rank_uniprot(r) for r in eachrow(proteins_df))
ptm_protgroups = ProtgroupAssembly.assemble_protgroups(peptide2proteins, verbose=true,
nspec_peptides=2, rspec_peptides=0.25)
ptm_protgroup2protein_df = reduce(vcat, [
DataFrame(protgroup_id = i-1,
protein_ac = collect(prg.major_prots))
for (i, prg) in enumerate(ptm_protgroups)])
ptm_protgroups_df = ProtgroupAssembly.dataframe(ptm_protgroups, protein_ranks=protein_ac_ranks,
protgroup_col=:protgroup_id, protein_col=:protein_ac,
proteins_info=proteins_df)
rename!(ptm_protgroups_df, [:gene_name => :gene_names, :protein_name => :protein_names])
ptm_protgroups_df[!, :is_reverse] .= false
using CodecZlib
ptmngroup2protgroup_dfs = Dict(dsname => begin
msdata_full = msglm_rdata[dsname].full_data["msdata_full"]
obj_contrasts_df = msglm_rdata[dsname].fit["object_contrasts.df"]
ptm2ptmngroup_df = semijoin(select(msdata_full["ptmngroups"], [:ptmngroup_id, :ptm_id], copycols=false),
select(obj_contrasts_df, [:ptmngroup_id], copycols=false), on=:ptmngroup_id)
ptmgroup2proteinac_df = innerjoin(ptm2ptmngroup_df, msdata_full["ptm2protein"], on=:ptm_id)
select!(innerjoin(ptmgroup2proteinac_df, ptm_protgroup2protein_df, on=:protein_ac),
[:ptmngroup_id, :protgroup_id]) |> unique!
end for (dsname, dsinfo) in datasets if !isnothing(dsinfo.ptm))
for (dsname, df) in ptmngroup2protgroup_dfs
dsinfo = datasets[dsname]
open(GzipCompressorStream, joinpath(data_path, "phospho_$(dsinfo.data_ver)", "ptm2protgroup_$(dsinfo.fit_ver).txt.gz"), "w") do io
CSV.write(io, df, delim='\t')
end
end
fp_protgroups_df = rename!(copy(msglm_rdata[:fp].full_data["msdata_full"]["protregroups"]),
:protregroup_id => :protgroup_id)
rnaseq_rdata = load(joinpath(results_path, "$(proj_info.id)_$(datasets[:rnaseq].analysis)_data_$(datasets[:rnaseq].fit_ver)_julia.RData"), convert=true)
rnaseq_contrasts_df = rename!(copy(rnaseq_rdata["object_contrasts_4show.df"], copycols=false), :GeneID => :gene_names)
rnaseq_protgroups_df = rename!(copy(rnaseq_rdata["rnaseq_genes2protacs.df"], copycols=false),
:GeneID => :gene_names)
rnaseq_protgroups_df.majority_protein_acs = copy(rnaseq_protgroups_df.protein_acs)
rnaseq_protgroups_df[!, :is_contaminant] .= false
rnaseq_protgroups_df[!, :is_reverse] .= false
rnaseq_protgroups_df.organism = missings(String, nrow(rnaseq_protgroups_df))
rnaseq_protgroups_df.protgroup_id = 1:nrow(rnaseq_protgroups_df)
protgroups_dfs = Dict(
:rnaseq => rnaseq_protgroups_df,
:ptm => ptm_protgroups_df,
:fp => fp_protgroups_df,
)
pg_matches_df = ProtgroupXMatch.match_protgroups(collect(pairs(protgroups_dfs)), protein_ac_ranks);
objid_col = :protgroup_id_united;
pg_matches_df.protgroup_id_united = 1:nrow(pg_matches_df)
# add protgroup ids of each dataset and add protgroup_id_common to each dataset
for (dsname, pg_df) in pairs(protgroups_dfs)
rowix_col = Symbol("rowix_", dsname)
if !hasproperty(pg_matches_df, rowix_col)
@warn "Dataset $dsname key does not exist, skipping"
continue
end
pg_col = Symbol("protgroup_id_", dsname)
pg_matches_df[!, pg_col] = missings(nonmissingtype(eltype(pg_df.protgroup_id)), nrow(pg_matches_df))
pg_df[!, :protgroup_id_united] = missings(Int, nrow(pg_df))
for (i, rowix) in enumerate(pg_matches_df[!, rowix_col])
if !ismissing(rowix)
pg_matches_df[i, pg_col] = pg_df[rowix, :protgroup_id]
pg_df[rowix, :protgroup_id_united] = pg_matches_df[i, :protgroup_id_united]
end
end
select!(pg_matches_df, Not(rowix_col))
end
pg_matches_long_df = FrameUtils.pivot_longer(pg_matches_df, [:protgroup_id_united, :protein_acs, :majority_protein_acs, :gene_names,
:is_contaminant, :is_reverse],
measure_vars_regex=r"^(?<value>rowix|protgroup_id|pgrank|acrank)_(?<var>[^u].+)$",
var_col=:dataset)
pg_matches_long_df.dataset = Symbol.(pg_matches_long_df.dataset)
pg_matches_long_expanded_df = DelimDataUtils.expand_delim_column(
pg_matches_long_df, key_col=[:dataset, :protgroup_id_united, :protgroup_id],
list_col=:protein_acs, elem_col=:protein_ac)
#=
length(union(
unique(filter(r -> occursin(r"SARS_.+_vs_mock", r.contrast) && r.std_type == "median" && r.change in ["+", "-"],
innerjoin(msglm_rdata[:cov2ts_proteome].fit["object_contrasts.df"],
select(pg_matches_df, [:protgroup_id_united, :protgroup_id_cov2ts_proteome]),
on=[:protgroup_id => :protgroup_id_cov2ts_proteome])).protgroup_id_united),
unique(filter(r -> occursin(r"SARS_.+_vs_mock", r.contrast) && r.std_type == "median" && r.change in ["+", "-"],
innerjoin(msglm_rdata[:cov2el_proteome].fit["object_contrasts.df"],
select(pg_matches_df, [:protgroup_id_united, :protgroup_id_cov2el_proteome]),
on=[:protregroup_id => :protgroup_id_cov2el_proteome])).protgroup_id_united)
))
=#
obj2protac_df = unique!(dropmissing!(select(pg_matches_long_expanded_df,
[objid_col, :protein_ac])))
nonunique_matches_dfs = [dsname => begin
pg_col = Symbol("protgroup_id_", dsname)
combine(groupby(filter(r -> !ismissing(r[pg_col]), pg_matches_df), pg_col)) do df
return nrow(df) > 1 ? df : df[1:0, :]
end
end for (dsname, _) in pairs(protgroups_dfs)]
contrast_cols = [:contrast, :timepoint_lhs, :timepoint_rhs, :treatment_lhs, :treatment_rhs]
obj_contrasts_msglm_dfs = Dict(ds => begin
@info "Processing $ds results..."
orig_objcontrasts_df = rdata.fit["object_contrasts.df"]
sel_cols = [:ci_target; contrast_cols;
[:object_id,
:median, :p_value,
:is_hit, :change, :is_hit_nomschecks, :is_signif]]
for col in [:ptm_type, :ptmngroup_id, :ptmn_id, :protregroup_id]
hasproperty(orig_objcontrasts_df, col) && push!(sel_cols, col)
end
objcontrasts_df = select(orig_objcontrasts_df, sel_cols)
objcontrasts_df[!, :dataset] .= ds
objcontrasts_df.change = ifelse.(objcontrasts_df.is_hit,
ifelse.(objcontrasts_df.median .> 0, "+", "-"), ".")
@show nrow(objcontrasts_df)
isptm = !isnothing(datasets[ds].ptm)
if isptm
@info " Associating PTM groups to protein groups..."
objcontrasts_df = innerjoin(objcontrasts_df,
ptmngroup2protgroup_dfs[ds], on=:ptmngroup_id)
#@assert hasproperty(objcontrasts_df, :ptm_type)
objcontrasts_df[!, :ptm_type] .= datasets[ds].ptm
else
if hasproperty(objcontrasts_df, :protregroup_id) &&
!hasproperty(objcontrasts_df, :protgroup_id)
rename!(objcontrasts_df, :protregroup_id => :protgroup_id)
end
objcontrasts_df.ptmgroup_id = missings(Int, nrow(objcontrasts_df))
objcontrasts_df.ptmn_id = missings(Int, nrow(objcontrasts_df))
objcontrasts_df.ptm_type = missings(String, nrow(objcontrasts_df))
end
@show nrow(objcontrasts_df)
@info " Associating dataset-specific protein groups to united protein groups..."
objcontrasts_df = leftjoin(objcontrasts_df,
select(protgroups_dfs[isptm ? :ptm : ds], [:protgroup_id, :protgroup_id_united], copycols=false),
on=:protgroup_id)
@show nrow(objcontrasts_df)
objcontrasts_df
end for (ds, rdata) in pairs(msglm_rdata))
sel_ci_target = "average"
# in FP one protgroup could belong to a single +/-/. group
obj_contrasts_fp_agg_df = combine(groupby(filter(r -> (r.ci_target == sel_ci_target) && !ismissing(r.protgroup_id_united), obj_contrasts_msglm_dfs[:fp]),
[[:ci_target, :dataset, :ptm_type]; contrast_cols; :protgroup_id_united])
) do df
min_ix = findmin(df.p_value)[2]
return df[min_ix:min_ix, :]
end
obj_contrasts_ptm_agg_df = combine(groupby(filter!(r -> (r.ci_target == sel_ci_target) && !ismissing(r.protgroup_id_united),
obj_contrasts_msglm_dfs[:phospho]),
[:ci_target, :dataset, :ptm_type,
:contrast, :timepoint_lhs, :timepoint_rhs, :treatment_lhs, :treatment_rhs,
:protgroup_id_united, :change])
) do df
return DataFrame(is_hit = any(df.is_hit),
nrows=nrow(df),
nobjs = length(unique(df.object_id)),
nobj_hits = length(unique(df.object_id[coalesce.(df.is_hit, false)])))
end
obj_contrasts_rnaseq_agg_df = combine(groupby(innerjoin(rnaseq_contrasts_df, protgroups_dfs[:rnaseq],
on=[:gene_names]),
[contrast_cols; :protgroup_id_united])) do df
min_ix = findmin(df.padj)[2]
return df[min_ix:min_ix, :]
end
obj_contrasts_rnaseq_agg_df[!, :dataset] .= :rnaseq
obj_contrasts_rnaseq_agg_df.timepoint_lhs = string.(Int.(obj_contrasts_rnaseq_agg_df[!,:timepoint_lhs]))
obj_contrasts_rnaseq_agg_df.timepoint_rhs = string.(Int.(obj_contrasts_rnaseq_agg_df[!,:timepoint_rhs]))
united_cols = [:dataset; contrast_cols; :protgroup_id_united; :is_hit; :change]
obj_contrasts_united_df = vcat(select(obj_contrasts_fp_agg_df, united_cols, copycols=false),
select(obj_contrasts_ptm_agg_df, united_cols, copycols=false),
select(obj_contrasts_rnaseq_agg_df, united_cols, copycols=false))
filter!(r -> r.treatment_rhs == "mock" && r.timepoint_lhs == r.timepoint_rhs,
obj_contrasts_united_df)
countmap(collect(zip(obj_contrasts_united_df.is_hit, obj_contrasts_united_df.change)))
contrasts_df = unique!(select(obj_contrasts_united_df, [:dataset; contrast_cols; :change]))
contrasts_df.dataset = String.(contrasts_df.dataset)
contrasts_df.timepoint_lhs = Vector{Union{String}}(contrasts_df[!,:timepoint_lhs])
contrasts_df.timepoint_lhs = parse.(Int, contrasts_df.timepoint_lhs)
contrasts_df.timepoint_rhs = Vector{Union{String}}(contrasts_df[!,:timepoint_rhs])
contrasts_df.timepoint_rhs = parse.(Int, contrasts_df.timepoint_rhs)
contrasts_df.change_alt = getindex.(Ref(Dict("+" => "▲", "-" => "▼", "." => ".")),
contrasts_df.change)
include(joinpath(misc_scripts_path, "optcover_utils.jl"));
includet(joinpath(misc_scripts_path, "gmt_reader.jl"));
includet(joinpath(misc_scripts_path, "omics_collections.jl"));
@info "Loading Human annotations..."
# human mappings from http://download.baderlab.org/EM_Genesets/December_01_2021/Human/UniProt/
# FIXME using all evidence codes
genesets_df, genesets_coll = GMT.read(String,
joinpath(party3rd_data_path, "Human_GO_AllPathways_with_GO_iea_December_01_2021_UniProt.gmt"),
id_col = :term_id, src_col = :term_src);
# strip Reactome version
genesets_df.term_id = [ifelse(r.term_src == "Reactome", replace(r.term_id, r"\.\d+$" => ""), r.term_id)
for r in eachrow(genesets_df)]
genesets_coll = Dict(ifelse(contains(k, r"^R-HSA-"), replace(k, r"\.\d+$" => ""), k) => v
for (k, v) in pairs(genesets_coll))
pcomplexes_df, pcomplex_iactors_df, pcomplex_iactor2ac_df =
OmicsCollections.ppicollection(joinpath(party3rd_data_path, "complexes_20191217.RData"), seqdb=:uniprot);
pcomplexes_df[!, :coll_id] .= "protein_complexes";
# make complexes collections, keep complexes with at least 2 participants
uprot_pcomplex_coll = FrameUtils.frame2collection(innerjoin(pcomplex_iactors_df, pcomplex_iactor2ac_df,
on=[:file, :entry_index, :interaction_id, :interactor_id]),
set_col=:complex_id, obj_col=:protein_ac, min_size=2)
protac_sets = merge!(genesets_coll, uprot_pcomplex_coll)
terms_df = vcat(rename(genesets_df[!, [:term_src, :term_id, :name, :descr]],
:term_src => :coll_id, :name=>:term_name, :descr=>:term_descr),
rename(pcomplexes_df[!, [:coll_id, :complex_id, :interaction_label, :interaction_name]],
:complex_id=>:term_id, :interaction_label=>:term_name, :interaction_name=>:term_descr));
protac2term_df = FrameUtils.collection2frame(protac_sets, terms_df,
setid_col=:term_id, objid_col=:protein_ac)
# link protein group IDs to annots and create protgroup collections
obj2term_df = select!(innerjoin(obj2protac_df, protac2term_df, on = :protein_ac),
Not([:protein_ac])) |> unique!
protac_colls = FrameUtils.frame2collections(protac2term_df, obj_col=:protein_ac,
set_col=:term_id, coll_col=:coll_id)
obj_colls = FrameUtils.frame2collections(obj2term_df, obj_col=objid_col,
set_col=:term_id, coll_col=:coll_id)
@info "Preparing hit sets"
ObjectType = eltype(obj2protac_df[!, objid_col])
obj_hit_sets = Dict{Tuple{String, String, String}, Set{ObjectType}}()
for hits_df in groupby(filter(r -> coalesce(r.is_hit, false), obj_contrasts_united_df),
[:dataset, :contrast, :change])
obj_hit_sets[(string(hits_df[1, :dataset]),
hits_df[1, :contrast], hits_df[1, :change])] =
Set(skipmissing(hits_df[!, objid_col]))
end
# only relevant ones
obj_hit_selsets = obj_hit_sets
@info "Preparing mosaics..."
observed_protacs = Set(obj2protac_df.protein_ac) # all annotation ACs observed in the data
obj_mosaics = OptCoverUtils.collections2mosaics(obj_colls,
protac_colls, observed_protacs,
setXset_frac_extra_elms=0.05,
verbose=true);
# remove broad terms larger than 200 elements (too unspecific)
obj_hit_mosaics = Dict(begin
@info "Masking $mosaic_name dataset by hits..."
mosaic_name => OptCoverUtils.automask(mosaic, obj_hit_selsets,
max_sets=2000, min_nmasked=2, max_setsize=200, verbose=true)
end for (mosaic_name, mosaic) in pairs(obj_mosaics));
using OptEnrichedSetCover
cover_params = CoverParams(setXset_factor=0.5,
uncovered_factor=0.0, covered_factor=0.0)#, covered_factor=0.002)
ENV["MKL_NUM_THREADS"] = 1
obj_hit_mosaics_v = collect(pairs(obj_hit_mosaics))
obj_hit_covers_v = similar(obj_hit_mosaics_v, Pair)
Threads.@threads for i in eachindex(obj_hit_mosaics_v)
mosaic_name, masked_mosaic = obj_hit_mosaics_v[i]
@info "Covering $mosaic_name by hits..."
obj_hit_covers_v[i] =
mosaic_name => collect(masked_mosaic, cover_params,
CoverEnumerationParams(max_set_score=0.0, max_covers=1),
MultiobjOptimizerParams(ϵ=[0.02, 0.2], MaxSteps=2_000_000, WeightDigits=2,
NWorkers=1,#Threads.nthreads()-1,
MaxRestarts=200),
true)
end
obj_hit_covers = Dict(k => v for (k, v) in obj_hit_covers_v)
@info "Saving data and analysis results"
hit_covers_filename = joinpath(scratch_path, "$(proj_info.id)_united_hit_covers_$(proj_info.oesc_ver).jld2")
@save(hit_covers_filename,
proj_info, datasets, protac_colls, obj_colls, obj_mosaics,
obj2term_df, terms_df,
#objects_df,
protgroups_dfs, pg_matches_df,
contrasts_df,
obj_contrasts_united_df,
obj_hit_sets, obj_hit_selsets, obj_hit_mosaics,
cover_params, obj_hit_covers)
if !@isdefined(obj_hit_covers)
using JLD2, CSV, DataFrames, OptEnrichedSetCover
@load(hit_covers_filename,
proj_info, datasets, protac_colls, obj_colls, obj_mosaics,
obj2term_df, terms_df,
#objects_df,
protgroups_dfs, pg_matches_df,
contrasts_df,
obj_contrasts_united_df,
obj_hit_sets, obj_hit_selsets, obj_hit_mosaics,
cover_params, obj_hit_covers)
end
include(joinpath(misc_scripts_path, "optcover_utils.jl"));
@info "Preparing protgroup?gene_name map..."
obj_id2name = Dict(r.protgroup_id_united => !ismissing(r.gene_names) ? DelimDataUtils.rejoin_unique_substrings([r.gene_names]) :
!ismissing(r.majority_protein_acs) ? DelimDataUtils.rejoin_unique_substrings([r.majority_protein_acs]) :
string("PGU_", r.protgroup_id_united)
for r in eachrow(filter(r -> !ismissing(r.protgroup_id_united), pg_matches_df)))
obj_hit_covers_df = innerjoin(
OptCoverUtils.covers_report(
obj_hit_covers, obj_hit_selsets, obj_colls, #obj_mosaics,
obj_id2name, terms_df,
cover_params = cover_params,
experimentid_col=[:dataset, :contrast, :change],
weightedset_col_prefix="hit"),
contrasts_df, on=[:dataset, :contrast, :change])
obj_hit_covers_df.intersect_genes = [join(unique(vcat(split.(split(genes, ' '), ';')...)), ' ') for genes in obj_hit_covers_df.intersect_genes]
# don't remove the sets since they are timecourses timepoints
obj_hit_covers_signif_df = combine(groupby(obj_hit_covers_df, :term_collection)) do coll_df
@info "Processing $(coll_df.term_collection[1])..."
return select!(OptCoverUtils.filter_multicover(coll_df, set_cols=[:dataset, :contrast, :change],
max_term_pvalue=1E-3, max_set_pvalue=nothing, min_set_overlap=nothing),
Not(:term_collection))
end
using CSV
CSV.write(joinpath(analysis_path, "reports", "$(proj_info.id)_united_hit_covers_$(proj_info.oesc_ver).txt"),
obj_hit_covers_df[obj_hit_covers_df.nmasked .> 0, :],
missingstring="", delim='\t');
CSV.write(joinpath(analysis_path, "reports", "$(proj_info.id)_united_hit_covers_signif_$(proj_info.oesc_ver).txt"),
obj_hit_covers_signif_df[obj_hit_covers_signif_df.nmasked .> 0, :],
missingstring="", delim='\t');
using XLSX
include(joinpath(misc_scripts_path, "xlsx_utils.jl"));
XLSX.writetable(joinpath(analysis_path, "reports", "$(proj_info.id)_united_hit_enrichment_$(proj_info.oesc_ver).xlsx"),
XLSXUtils.xlsx_compat(obj_hit_covers_df), overwrite=true, sheetname="enrichment report")
XLSX.writetable(joinpath(analysis_path, "reports", "$(proj_info.id)_united_hit_enrichment_signif_$(proj_info.oesc_ver).xlsx"),
XLSXUtils.xlsx_compat(obj_hit_covers_signif_df), overwrite=true, sheetname="enrichment report")
Revise.includet(joinpath(misc_scripts_path, "frame_utils.jl"))
Revise.includet(joinpath(misc_scripts_path, "optcover_plots.jl"))
include(joinpath(misc_scripts_path, "optcover_heatmap.jl"))
using PlotlyJS, TextWrap
heatmap_layout_attrs = Dict(
("SigDB_C2", true) => Dict(:margin_l => 500),
("SigDB_C2", false) => Dict(:margin_l => 500),
#("Reactome", true) => Dict(:margin_l => 600),
#("Reactome", false) => Dict(:margin_l => 600),
#("GO_CC", true) => Dict(:margin_l => 200),
#("GO_CC", false) => Dict(:margin_l => 200),
)
stylize_dataset(ds) =
"<span style=\"font-weight: bold; color: $(datasets[Symbol(ds)].color);\">" * datasets[Symbol(ds)].label * "</span>"
stylize_contrast(str) = foldl(replace, [
r"(MPXV?)_vs_mock@(\d+)h" => s"\1:<span style=\"font-weight: bold; color: black;\">\2</span>h",
"MPXV:" => "<span style=\"font-wieght: bold; color: #F9CB40;\">MPXV</span> ",
],
init = str)
function process_contrast_axis(contrast_df)
contrast_df,
stylize_dataset.(contrast_df.dataset) .* ": " .*
stylize_contrast.(contrast_df.contrast) .*
" " .* OptCoverHeatmap.stylize_change.(contrast_df.change),
stylize_dataset.(contrast_df.dataset) .* ": " .*
stylize_contrast.(contrast_df.contrast) .*
" " .* OptCoverHeatmap.stylize_change.(contrast_df.change)#stylize_effect.(effect_df.effect)
end
datatype_order = Dict(:rnaseq => 1, :fp => 2, :phospho => 3)
heatmaps_path = joinpath(plots_path, "united_hits_oesc_$(sel_ci_target)_$(proj_info.oesc_ver)")
isdir(heatmaps_path) || mkdir(heatmaps_path)
for term_coll in unique(obj_hit_covers_df.term_collection), signif in (false, true)
@info "Plotting $(signif ? "signif " : "")hit heatmap for $term_coll..."
layout_attrs = get(heatmap_layout_attrs, (term_coll, signif), Dict())
df = filter(r -> r.term_collection == term_coll, signif ? obj_hit_covers_signif_df : obj_hit_covers_df)
if nrow(df) == 0
@warn "No term_collection=$term_coll rows"
continue
end
for outformat in ("html", "pdf", "svg")
coll_heatmap = OptCoverHeatmap.oesc_heatmap(df,
elements_label="protein",
experiment_axis_title = "contrast",
experiment_cols = [:dataset, :contrast, :treatment_lhs, :timepoint_lhs, :change, :nhit],
process_experiment_axis=process_contrast_axis,
process_term_axis=OptCoverHeatmap.process_term_axis,
margin_l=get(layout_attrs, :margin_l, 400),
margin_b=get(layout_attrs, :margin_b, 80),
transpose=false,
colorscale = "Hot", reversescale=false,
plot_bgcolor="#FFF", gridcolor="#DDD",#outformat in ["svg", "pdf"] ? "#000" : "#BBB",
cell_width=40, cell_height=30, gridwidth=2,
experiment_order=contrasts -> begin
contrasts.datatype_order = [datatype_order[datasets[Symbol(r.dataset)].datatype]
for r in eachrow(contrasts)]
return sortperm(contrasts, [:datatype_order, :change, :timepoint_lhs, :treatment_lhs, :dataset])
end)
(coll_heatmap === nothing) && continue
for (k, v) in [#:width=>800, :height=>400,
:margin_r=>80, #:margin_t=>20,
:yaxis_tickfont_size=>12, :xaxis_tickangle=>45]
coll_heatmap.plot.layout[k] = v
end
for outformat in ["svg", "pdf", "html"]
plot_fname = joinpath(heatmaps_path,
"$(proj_info.id)_$(proj_info.oesc_ver)_$(term_coll)_contrast$(signif ? "_signif" : "")_heatmap.$(outformat)")
try
savefig(coll_heatmap, plot_fname, format=outformat, width=coll_heatmap.plot.layout[:width], height=coll_heatmap.plot.layout[:height]);
catch e
if e isa InterruptException
rethrow(e)
else
@warn "$term_coll generation failed: $e"
end
end
end
end
end