src/hg/instinct/lib/hgHeatmapLib.c 1.63

1.63 2009/10/22 18:40:26 cszeto
Local url pointer added
Index: src/hg/instinct/lib/hgHeatmapLib.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/lib/hgHeatmapLib.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -b -B -U 4 -r1.62 -r1.63
--- src/hg/instinct/lib/hgHeatmapLib.c	6 Oct 2009 23:47:57 -0000	1.62
+++ src/hg/instinct/lib/hgHeatmapLib.c	22 Oct 2009 18:40:26 -0000	1.63
@@ -189,9 +189,9 @@
 gh->dataType = (char *)(hashMustFindVal(raHash, "dataType"));
 gh->accessTable = (char *)(hashFindVal(raHash, "accessTable"));
 if (!sqlTableExists(conn, gh->accessTable))
     gh->accessTable= NULL;
-gh->url = (char *)(hashFindVal(raHash, "url"));
+gh->local_url = (char *)(hashFindVal(raHash, "local_url"));
 gh->group = (char *)(hashFindVal(raHash, "group"));
 
 /* Settings on patient information from datasets.ra file */
 gh->raFile = (char *)(hashFindVal(raHash, "raFile"));
@@ -270,9 +270,9 @@
 newGh->next = NULL;
 newGh->name = gh->name;
 newGh->shortLabel = gh->shortLabel;
 newGh->longLabel = gh->longLabel;
-newGh->url = gh->url;
+newGh->local_url = gh->local_url;
 newGh->accessTable= gh->accessTable;
 newGh->database= gh->database;
 newGh->dataType = gh->dataType;
 newGh->patDb= gh->patDb;