Update of /cvsroot/basedb/basedb/www
In directory sc8-pr-cvs1:/tmp/cvs-serv2061/www
Modified Files:
gene_explore.phtml
Log Message:
minor bugfix
Index: gene_explore.phtml
===================================================================
RCS file: /cvsroot/basedb/basedb/www/gene_explore.phtml,v
retrieving revision 1.70
retrieving revision 1.71
diff -C2 -d -r1.70 -r1.71
*** gene_explore.phtml 3 Feb 2003 08:54:11 -0000 1.70
--- gene_explore.phtml 4 Feb 2003 21:51:13 -0000 1.71
***************
*** 949,958 ****
$rawcols = RawBioAssayData::getAllShownColumns();
! $rawcols = xcolFilterColumns($rawcols, $rawLevel, 1);
for($i = 0; $i < count($rawcols); $i++)
{
$rc =& $rawcols[$i];
! $cols[] = array($rc[0], false, $rc[2],
! xcolDefaultOrder($rc[1]), 1, 1);
}
unset($rc);
--- 949,959 ----
$rawcols = RawBioAssayData::getAllShownColumns();
! $rawcols = xcolFilterColumns($rawcols, $rawLevel, $average);
for($i = 0; $i < count($rawcols); $i++)
{
$rc =& $rawcols[$i];
! $rnd = xcolTypeIsNumber($rc[1]);
! $cols[] = array($rc[0], false, $rc[2], xcolDefaultOrder($rc[1]),
! $rnd ? "renderExploreIntensity" : 1, 1);
}
unset($rc);
|