How to interpret the results about "effect size"

I tried to find the dependency in a specific genetic background. So, I selected two groups of cancer cell lines ,a control group and a genetic variant group, to find the dependent genes in the genetic variant group using the tools “Data Explorer” according to DepMap Public 20Q4 v2 CRISPR screening. the results are shown in a volcano plot . However, the results are confused to me. how to interpret the value of “Effect Size” in the X axis. the value, “Effect Size”, of some genes is negative and the value of the other genes is positive. the negative value represent negative genes or the positive represent positive genes?newplot (1)

1 Like

Hi Cornelius,

The effect size in two-class comparison is basically the difference between average response values (in your case the dependency values) between the sets of cell lines. In particular, a positive effect size of 1 implies the mean dependency value of the in-set cell lines for that gene is 1 unit larger than the average of the out-of-set ones.

Warmly,
Mustafa

Is the effect size just the average of treatment group - average of control group or it is the above score divided by standard deviation?

Hi akacrispr,

Apologies for the late response. As you pointed out effect size is the difference between the averages of treatment and controls (in portal’s terminology case in-group and out-group), this difference is moderated with an empirical Bayes method using the adaptive shrinkage method described in CRAN - Package ashr

Warmly,
Mustafa

Dear Mustafa,

Thank you so much for providing this info. I was also interested in this functionality of DepMap, and accessed the cdsrmodels package’s lin_associations function to reproduce it as I saw mentioned in another comment of yours. However, with this function I don’t see an output of effect-size. Is this also outputtable using the package’s premade functions?

Hi e333,

Yes, you can reproduce the results using lin_associations function. I believe the output that corresponds to the effect_size is “PosteriorMean” column of the res.table, i.e.

fit = cdsrmodels::lin_associations(X,Y)
effect.size = fit[[“res.table”]]$PosteriorMean

Hi DepMap team,

Seeking some clarification over the EffectSize being “PosteriorMean”, I am looking at a rather strange looking distribution of PosteriorMean for a specific Two Class comparison. The first plot enclosed is made using the R package cdsrmodels, but this is also reproducible on the DepMap web portal using the Two class comparison (for which I have also enclosed a second plot). The query uses two groups of cell lines which are below. Would you be able to comment on why the EffectSizes following shrinkage are all (a bit oddly) centred below zero, when the fit[[“res.table”]]$betahat were centered on zero?

RHOA_SL_Lung

Group 1:
ACH-000867,ACH-000785,ACH-000866,ACH-000924,ACH-000718,ACH-000698,ACH-000290,ACH-000378,ACH-000161,ACH-000395,ACH-000463,ACH-000311,ACH-000150,ACH-000431,ACH-000510,ACH-000695,ACH-000781

Group 2:
ACH-000528,ACH-000769,ACH-000800,ACH-000700,ACH-000176,ACH-000587,ACH-000585,ACH-000627,ACH-000035,ACH-000638,ACH-000894,ACH-000596,ACH-000481,ACH-000871,ACH-000858,ACH-000787,ACH-000677,ACH-000012,ACH-000945,ACH-000662,ACH-000261,ACH-000681,ACH-000901,ACH-000511,ACH-002077,ACH-000975,ACH-000890,ACH-000562,ACH-002650,ACH-000187,ACH-000639,ACH-000339,ACH-000525,ACH-000853,ACH-000851,ACH-001386,ACH-000434,ACH-000514,ACH-000414,ACH-000665,ACH-001549,ACH-000706,ACH-000251,ACH-002526,ACH-002051,ACH-000589,ACH-000264,ACH-000843,ACH-000840,ACH-000912,ACH-000667,ACH-000747,ACH-000438,ACH-000021,ACH-000980,ACH-000845,ACH-000448,ACH-000766,ACH-000343,ACH-000774,ACH-000921,ACH-000790,ACH-000767,ACH-000454,ACH-000916,ACH-000292,ACH-000837,ACH-000861,ACH-000563,ACH-000355,ACH-000757,ACH-000416,ACH-000442,ACH-000841,ACH-000860,ACH-000929,ACH-000390,ACH-000496,ACH-000878,ACH-000257,ACH-000521,ACH-000029,ACH-002531,ACH-000869,ACH-000337,ACH-000444,ACH-000886,ACH-000888,ACH-000030,ACH-000775,ACH-000559,ACH-000143,ACH-002035,ACH-000015,ACH-000791,ACH-001075,ACH-000900,ACH-000666,ACH-000872

Thank you so much in anticipation