R/idStochastic.R

Defines functions idStochastic

Documented in idStochastic

idStochastic <- function(bpMat, bpGraph=FALSE, pThresh=0.01,
                         pLevels = 1e-4, prob=0.5){

    if(bpGraph)
      bpMat <- as(bpMat, "matrix")

    f <- assessSymmetry(bpMat, bpGraph = bpGraph, pLevels = pLevels, prob=prob)
    sel <- (f$p>pThresh)
    return(names(sel)[sel])
    
}

  
Bioconductor/ppiStats documentation built on Nov. 1, 2021, 1:24 a.m.