<canvas id="nothing" width="1" height="<?php echo 200 + sizeof($allClusterIDs)*25 ?>"> </canvas>
</div>
-<form id="downloadImage" action="download.php" method="post">
+<form id="downloadImage" action="HMdownload.php" method="post">
<input type="hidden" name="param" value = "unset DISPLAY && java -Djava.awt.headless=true -jar Heatmap.jar "image" <?php echo implode(" ",$includedSpecies)?>;<?php echo $input; ?>">
<input type="button" value="Download as JPG" onClick="downloadImage()"/>
</form>
The numbers printed inside each cell represent the confidence rating of the ontological assignment; a higher number indicates more confidence.<br><br>
An "A" after the term name signifies that it relates to anatomy, a "G" signifies that it relates to growth, development, or structure <br><br>
Click on a gene or term for detailed annotations from Plant Ontology.
+
+<form name="downloadImage" action="VOdownload.php" method="post">
+<input type="button" value="Download Tab Delimited File" onClick="downloadTabDem()"/>
+<input type="hidden" value="" name="genes">
+<input type="hidden" value="" name="terms">
+<input type="hidden" value="" name="cellData"/>
+</form>
+
+
+
</div>
if(checkBoxes[t]) {
ontMap.fillRect(xCoord,topOffset-(cellSize*3),cellSize,cellSize);
}
- if(!checkBoxes[t]) {/*
- ontMap.fillStyle="#FFFFFF";
- ontMap.fillRect(xCoord,topOffset-(cellSize*3),cellSize,cellSize);*/
+ if(!checkBoxes[t]) {
ontMap.fillStyle="#000000";
ontMap.strokeRect(xCoord,topOffset-(cellSize*3),cellSize,cellSize);
}
document.geneForm.submit();
}
+function downloadTabDem() {
+ document.downloadImage.cellData.value=rawCellData;
+ document.downloadImage.terms.value=terms.join("\t");
+ document.downloadImage.genes.value=genes.join(",");
+ document.downloadImage.submit();
+}
+
</script>