[R-gregmisc-users] SF.net SVN: r-gregmisc:[1995] trunk/gplots/R/heatmap.2.R
Brought to you by:
warnes
From: <wa...@us...> - 2015-05-01 15:28:36
|
Revision: 1995 http://sourceforge.net/p/r-gregmisc/code/1995 Author: warnes Date: 2015-05-01 15:28:33 +0000 (Fri, 01 May 2015) Log Message: ----------- - heatmap.2: row traces could be plotted in the wrong order. Modified Paths: -------------- trunk/gplots/R/heatmap.2.R Modified: trunk/gplots/R/heatmap.2.R =================================================================== --- trunk/gplots/R/heatmap.2.R 2015-05-01 15:25:31 UTC (rev 1994) +++ trunk/gplots/R/heatmap.2.R 2015-05-01 15:28:33 UTC (rev 1995) @@ -554,7 +554,7 @@ { retval$hline <- hline hline.vals <- scale01(hline, min.scale, max.scale) - for( i in rowInd ) + for( i in 1:length(rowInd) ) { if(!is.null(hline)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |