|
From: Minghua Y. <my...@ou...> - 2002-12-12 22:38:09
|
In array_print.phtml, $bsizex was initialized to 0 at line 183. The only other occasion $bsizex was assigned a value is at line 257:
if($lastblock == 0) $bsizex = (int)$arr[1];
$lastblock was initialized to -1 at line 180. The only other occasion $lastblock was assigned a value is at line 220:
$lastblock = (int)substr($head, 5);
Since in BioRobotics 'TAM' format, "n" in [Blockn] starts from 1, $lastblock will never be 0. So, "$bsizex = (int)$arr[1];" will never be executed. That means $bsizex will always be 0. The analysis applies to $bsizey, too.
On the "View array design" screen, Block rows and Block columns are both 0. Click on "Get GenePix ArrayList (GAL) file", I got only a GAL file header.
Is this a bug?
Minghua
|