From: miles Date: Tue, 6 Nov 2012 00:52:45 +0000 (+0000) Subject: Species inclusion now working for webpage only. Clear box added. X-Git-Url: http://gitweb.planteome.org/?a=commitdiff_plain;h=bd8dacfa330445b6e73e2c2f323fe13070a0cf8a;p=old-jaiswallab-svn%2F.git Species inclusion now working for webpage only. Clear box added. svn path=/; revision=406 --- diff --git a/Personnel/miles/Web Page/Heatmap.jar b/Personnel/miles/Web Page/Heatmap.jar index 10fac21..7b1c942 100644 Binary files a/Personnel/miles/Web Page/Heatmap.jar and b/Personnel/miles/Web Page/Heatmap.jar differ diff --git a/Personnel/miles/Web Page/heatMap.php b/Personnel/miles/Web Page/heatMap.php index 8e6d1ee..333eb9b 100644 --- a/Personnel/miles/Web Page/heatMap.php +++ b/Personnel/miles/Web Page/heatMap.php @@ -9,9 +9,9 @@ $originalSpecies; if(isset($_POST['originalSpecies'])) { $originalSpecies = explode(" ", $_POST['originalSpecies']); } -$excludedSpecies = ""; +$includedSpecies = ""; if(isset($_POST['excluded'])) { - $excludedSpecies = $_POST['excluded']; + $includedSpecies = $_POST['excluded']; } $input = ""; @@ -27,7 +27,7 @@ if(!preg_match("/[a-zA-Z0-9\.]/", substr($input,-1))) { } } -$finalInput = "webpage " . $excludedSpecies . ";" . $input; +$finalInput = "webpage " . $includedSpecies . ";" . $input; //echo $finalInput; exec("java -Djava.awt.headless=true -jar Heatmap.jar " . "\"" . $finalInput . "\"", $output); @@ -109,7 +109,7 @@ $height = 25 * $clusterCount + 200;




-The following species have been excluded from the heat map: +The following species have been included in the heat map:

@@ -124,6 +124,11 @@ Click on a species name, cluster number, or cell for more information. \ No newline at end of file