R/print.gSignature.R

Defines functions print.gSignature

print.gSignature <-
function(x, ...) {
  message(paste("Signature name:", x$signatureName))
  message(paste("starting gene(s): ", x$startingSignature, 
                ", with log(p.value, 10) = ", round(log(x$startingPValue, 10), 3), sep = ""))
  message(paste("signature of ", length(x$signature), " elements with log(p.value, 10) = ", round(log(x$pValue, 10), 3), sep = ""))
  message("\t", paste(x$signature, collapse = ", "))
#  NextMethod("print")
}

Try the geneSignatureFinder package in your browser

Any scripts or data that you put into this service are public.

geneSignatureFinder documentation built on May 2, 2019, 2:32 p.m.