R/printGSEA.R

Defines functions printGSEA

Documented in printGSEA

printGSEA <-
function(x)
{
	cat("Call:\n")
	print(x$call)
	cat("\n")
	
	stat=x[[1]]

	
	op=getOption("scipen")
	options(scipen=7)
	
	cat("GSEA Test\n")
	if(is.null(stat$gsea)) cat("Null GSEA")
	else if(!is.null(stat$gsea)){

		print(stat$gsea)
		cat("\n")
	}
	options(scipen=op)
}

Try the BOG package in your browser

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

BOG documentation built on May 2, 2019, 6:50 a.m.