I am having a very related question about multiple replicates.
From Eq. 1, it seems that each patient (with two matched normal and tumour samples) is treated independently, then P* obtained after optimization could be different for different patients, then I wonder how could their corresponding w variables be integrated among different patients?
From the description in the Methods, it seems DaPars doesn't take into consideration the different P* values, the downstream calculations after Eq. 1 only depend on those w values.
Zhixia, since the author isn't very active, do you have any comment on my question, please? I tried to find how this is handled in the source code, https://github.com/ZhengXia/dapars/blob/44a3552276c5c12426cd3765d5c71c6e8cf5fe53/src/DaPars_main.py, but the code is too difficult to read.
--
You received this message because you are subscribed to the Google Groups "DaPars" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dapars+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
mse_for_all_p = []
for each p:
mse_per_p = []
for each sample:
calculate w_L, w_S, mse
mse_per_p.append(mse)
mse_per_all_p.append(average(mse_per_p))
p* = argmin(mse_per_all_p)
Then based on p*, get the corresponding w_L, w_S and each sample