R/PlotHeatmap.R

Defines functions PlotHeatmap

Documented in PlotHeatmap

PlotHeatmap= function(toptable,colpal = colorRampPalette(c("blue","white","yellow")),key=FALSE,margins= c(7,7),na.color="grey",breaks=  seq(-1,1,by =0.01),...){
  col=colpal(200)
  resi = tt2matrix(toptable,what="size")
  heatmap.2(resi,trace="none",col= col,margins=margins,key=key,na.color = na.color,breaks = breaks,...)
}
  

Try the coRNAi package in your browser

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

coRNAi documentation built on Nov. 17, 2017, 11:14 a.m.