src/hg/instinct/bioInt2/bioIntUI.h 1.4

1.4 2009/03/31 04:08:23 jsanborn
added search
Index: src/hg/instinct/bioInt2/bioIntUI.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/bioInt2/bioIntUI.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/hg/instinct/bioInt2/bioIntUI.h	29 Mar 2009 01:40:43 -0000	1.3
+++ src/hg/instinct/bioInt2/bioIntUI.h	31 Mar 2009 04:08:23 -0000	1.4
@@ -1,44 +1,45 @@
 /*  */
 
 #ifndef BIOINTUI_H
 #define BIOINTUI_H
 
 
 #define MAX_NUM_RESPONSE 100  // maximum number of objects in JSON response
 
 #include "cart.h"
 
 #define DEBUG 0
 
 /*** Prefixes for variables in cart we don't share with other apps. ***/
 #define bioIntPrefix "bioInt_"
 #define hghDo hghPrefix "do"
 
 #define hghTableName hghPrefix "tableName"
 
 /*** Our various cart variables. ***/
 #define hghHeatmap hghPrefix "heatmap"
 #define hghDataSet hghPrefix "dataset"
 #define hghDisplayType hghPrefix "display"
 #define hghGhName hghPrefix "ghName"
 #define hghMaxGapToFill hghPrefix "maxGapToFill"
 #define hghImageWidth hghPrefix "imageWidth"
 #define hghDataConfigPrefix hghPrefix "data_" 
 
 /** Commands from Javascript client **/
 
 #define bioIntPrefix "bioInt_"
 
 /* Obtaining Heatmaps */
 #define bioIntMode bioIntPrefix "mode"
 #define bioIntFeature bioIntPrefix "feature"
 #define bioIntCohortId bioIntPrefix "cohort_id"
 #define bioIntAnalysisId bioIntPrefix "analysis_id"
 #define bioIntFeatureId bioIntPrefix "feature_id"
 #define bioIntFeatureName bioIntPrefix "feature_name"
 #define bioIntTakeTop bioIntPrefix "take_top"
+#define bioIntSourceName bioIntPrefix "source"
 
 /* ---- Global variables declared in hgHeatmap.c */
 extern struct cart *cart;	/* This holds cgi and other variables between clicks. */
 
 #endif /* BIOINTUI_H */