Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
Term printing is now woring in viewOntology.php, nothing else has
authormiles <miles@localhost>
Wed, 13 Mar 2013 01:09:44 +0000 (01:09 +0000)
committermiles <miles@localhost>
Wed, 13 Mar 2013 01:09:44 +0000 (01:09 +0000)
currently been implimented here. Still to do: Gene printing, cell
coloring

svn path=/; revision=432

Personnel/miles/Web Page/heatMap.php

index e7a8019e73b2f0e34bb1e5c073f40c6b08fcd819..c4e4154337fb30e9cc4b3169b0f770ed0abaf6e2 100644 (file)
@@ -87,31 +87,6 @@ for ($i = 0; $i < sizeof($heatMapData); $i ++)
   $finalHeatMapData[$i] = implode(",", $heatMapData[$i]);
   }
 
-// extra goodies from the mysql database
-$username="inparanoid-read-user";
-$password="inparanoid-read-user_pw";
-$database="inparanoid_data";
-$url="floret.cgrb.oregonstate.edu:3306";
-
-$connection=mysql_connect($url,$username,$password);
-$logic="gene like ";
-for($i=0; $i<sizeof($geneIDs); $i++) {
-  $logic = $logic . "\"" . $geneIDs[$i] . "%\"";
-  if($i+1 < sizeof($geneIDs))  {
-     $logic = $logic . " or gene like "; 
-  }
-}
-
-function array_search2d($needle, $haystack) {
-  $ind=0;
-  for ($i=0; $i<sizeof($haystack); $i++) {
-    if ($needle == (string)$haystack[$i]) {
-      $ind = $i;
-    }
-  }
-  return $ind;
-}
-
 $width = 25*$speciesCount + 100;
 $height = 25 * $clusterCount + 200;
 ?>