| detectionPnegEcdf {sesame} | R Documentation |
The function takes a SigSet as input, computes detection p-value
using negative control probes' empirical distribution and returns a new
SigSet with an updated mask slot.
detectionPnegEcdf(sset, return.pval = FALSE, pval.threshold = 0.05)
sset |
a |
return.pval |
whether to return p-values, instead of a
masked |
pval.threshold |
minimum p-value to mask |
a SigSet, or a p-value vector if return.pval is TRUE
sset <- sesameDataGet("HM450.1.TCGA.PAAD")$sset
sum(mask(sset))
sset_with_mask <- detectionPnegEcdf(sset)
sum(mask(sset_with_mask))