combine.weight {metaseqR} | R Documentation |
This function combines p-values from the various statistical tests supported by metaseqR using p-value weights.
combine.weight(p, w)
p |
a p-value matrix (rows are genes, columns are statistical tests). |
w |
a weights vector, must sum to 1. |
A vector of combined p-values.
Panagiotis Moulos
p <- matrix(runif(300),100,3) pc <- combine.weight(p,w=c(0.2,0.5,0.3))