if(isset($_POST['originalSpecies'])) {
$originalSpecies = explode(" ", $_POST['originalSpecies']);
}
-$excludedSpecies = "";
+$includedSpecies = "";
if(isset($_POST['excluded'])) {
- $excludedSpecies = $_POST['excluded'];
+ $includedSpecies = $_POST['excluded'];
}
$input = "";
}
}
-$finalInput = "webpage " . $excludedSpecies . ";" . $input;
+$finalInput = "webpage " . $includedSpecies . ";" . $input;
//echo $finalInput;
exec("java -Djava.awt.headless=true -jar Heatmap.jar " . "\"" . $finalInput . "\"", $output);
<br> <br> <br> <br> <br>
-The following species have been excluded from the heat map: <?php echo $excludedSpecies; ?>
+The following species have been included in the heat map: <?php echo $includedSpecies; ?>
<br> <br>
<!--
+THE ACTUAL QUERY
+<?php echo $finalInput ?>
+
+
+
<br> <br>
If you do not wish to view any of the species in the final heat map, click on the checkbox next to the correct species names and then click 'submit' to reload the heat map.
<br> <br>
function generateImage() {
document.infoForm.action="download.php";
- document.infoForm.param.value = "unset DISPLAY && java -Djava.awt.headless=true -jar Heatmap.jar \"image" + "<?php echo $excludedSpecies?>" + ";" + "<?php echo $input; ?> \"";
+ document.infoForm.param.value = "unset DISPLAY && java -Djava.awt.headless=true -jar Heatmap.jar \"image" + "<?php echo $includedSpecies?>" + ";" + "<?php echo $input; ?>\"";
document.infoForm.submit();
}
<!--
-1. Possibility of species exclusion dynamically from heatMap.php
-2. Possibility of putting exclude species forms in a table on Main Page
+1. Tables
+2. Possibility of putting species checkboxes in a table on Main Page
3. Updating links given by Pankaj
-4. Improve downloaded image to match with heat map generated
- Eliminate Species not asked for
- Improved color analysis system
-5. Improve efficiency of species elimination call
+4. Investigate misbehaving gene: BRADI1G00460.1
+5. Fix species inclusion in downloaded image
+6. Make key move with size of heatmap
-->
\ No newline at end of file