From 1134cbf588bb69c378c50e7c45e525a800cfd757 Mon Sep 17 00:00:00 2001 From: miles Date: Tue, 26 Mar 2013 20:58:51 +0000 Subject: [PATCH] View Ontology Changes: -VOdownload.php made -download button implimented -downloading tab delimited file is now working svn path=/; revision=448 --- Personnel/miles/Web Page/heatMap.php | 2 +- Personnel/miles/Web Page/viewOntology.php | 21 ++++++++++++++++++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Personnel/miles/Web Page/heatMap.php b/Personnel/miles/Web Page/heatMap.php index ae3df3e..4360f22 100644 --- a/Personnel/miles/Web Page/heatMap.php +++ b/Personnel/miles/Web Page/heatMap.php @@ -130,7 +130,7 @@ Your browser does not support the canvas element. -
+ ;">
diff --git a/Personnel/miles/Web Page/viewOntology.php b/Personnel/miles/Web Page/viewOntology.php index 062c21a..f7b189d 100644 --- a/Personnel/miles/Web Page/viewOntology.php +++ b/Personnel/miles/Web Page/viewOntology.php @@ -121,6 +121,16 @@ Note: The colors have no relevance to the data, they simply serve to distinguish The numbers printed inside each cell represent the confidence rating of the ontological assignment; a higher number indicates more confidence.

An "A" after the term name signifies that it relates to anatomy, a "G" signifies that it relates to growth, development, or structure

Click on a gene or term for detailed annotations from Plant Ontology. + +
+ + + + +
+ + + @@ -303,9 +313,7 @@ function drawMap(init) { 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); } @@ -371,6 +379,13 @@ function getGeneInfo(gene) { 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(); +} + -- 2.34.1