Nothing
#' netFun
#'
#' This is the network reconstruction function that will be used to build aggregate networks.
#' @param x Numeric matrix with samples in columns.
#' @keywords netFun
#' @export
#' @examples
#' netFun()
netFun <- function(x) {
stats::cor(t(x), method="pearson")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.