33c3087e49e2af7bbad960879e12797933ea7ab5
kate
  Thu Feb 11 17:15:04 2016 -0800
Make GTEx V6 the default. refs #16545

diff --git src/hg/inc/gtexInfo.h src/hg/inc/gtexInfo.h
index 7f43f26..3e5b4f8 100644
--- src/hg/inc/gtexInfo.h
+++ src/hg/inc/gtexInfo.h
@@ -68,23 +68,27 @@
 /* Free a list of dynamically allocated gtexInfo's */
 
 void gtexInfoOutput(struct gtexInfo *el, FILE *f, char sep, char lastSep);
 /* Print out gtexInfo.  Separate fields with sep. Follow last field with lastSep. */
 
 #define gtexInfoTabOut(el,f) gtexInfoOutput(el,f,'\t','\n');
 /* Print out gtexInfo as a line in a tab-separated file. */
 
 #define gtexInfoCommaOut(el,f) gtexInfoOutput(el,f,',',',');
 /* Print out gtexInfo as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
 #endif /* GTEXINFO_H */
 
+#define GTEX_DEFAULT_VERSION    "V6"
+
 void gtexInfoCreateTable(struct sqlConnection *conn, char *table);
 /* Create GTEx info table */
 
 double gtexMaxMedianScore(char *version);
 /* Retrieve max median score for latest (or named) version */
 
 char *gtexVersion(char *table);
 /* Return version string based on table suffix */
+
+