You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which transformation has been used to produce the pValue (8th column) of the output? Is there a way I can get the raw p-values ranging on (0,1) from each peak? It looks like neither -log10 nor log10 gives me these quantities:
> summary(thor$V8)
Min. 1st Qu. Median Mean 3rd Qu. Max.
-3.36502 -0.72130 -0.31481 -0.37389 0.04078 0.52139
> summary(10^(-thor$V8))
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.3010 0.9104 2.0645 6.1711 5.2638 2317.4833
> summary(10^(thor$V8))
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.000432 0.189976 0.484389 0.779523 1.098453 3.321928
Best wishes,
Pedro Baldoni
The text was updated successfully, but these errors were encountered:
Got the same problem. It looks like a complete mess with all this -log10 and raw p-values.
If I run with --no-correction flag I assume that my filtering is done by filter_by_pvalue_strand_lag function. pvalues in this case are already log transformed, otherwise there isn't any logical explanation why we log transform our pcutoff.
Thanks all for reporting, this will be fixed in the next release. Using the --no-correction argument the p-values were indeed "double log10'd", so @plbaldoni in your original example, if you wanted a quick and dirty solution before the release, you could do:
Hi,
I am running THOR with the options "--merge --no-correction --pvalue 1.0" aiming to get the set of all potential peaks and their raw p-values.
After loading the results in R, the output looks like the following:
Which transformation has been used to produce the pValue (8th column) of the output? Is there a way I can get the raw p-values ranging on (0,1) from each peak? It looks like neither -log10 nor log10 gives me these quantities:
Best wishes,
Pedro Baldoni
The text was updated successfully, but these errors were encountered: