5c5df1a7446ad3368896deba413360935c334188 kate Wed Feb 10 13:12:47 2016 -0800 Support for multiple GTEx releases/versions (to add V6 track). refs #15645 diff --git src/hg/inc/gtexGeneBed.h src/hg/inc/gtexGeneBed.h index 13ec81e..f88183b 100644 --- src/hg/inc/gtexGeneBed.h +++ src/hg/inc/gtexGeneBed.h @@ -55,17 +55,20 @@ /* Free a list of dynamically allocated gtexGeneBed's */ void gtexGeneBedOutput(struct gtexGeneBed *el, FILE *f, char sep, char lastSep); /* Print out gtexGeneBed. Separate fields with sep. Follow last field with lastSep. */ #define gtexGeneBedTabOut(el,f) gtexGeneBedOutput(el,f,'\t','\n'); /* Print out gtexGeneBed as a line in a tab-separated file. */ #define gtexGeneBedCommaOut(el,f) gtexGeneBedOutput(el,f,',',','); /* Print out gtexGeneBed as a comma separated list including final comma. */ /* -------------------------------- End autoSql Generated Code -------------------------------- */ void gtexGeneBedCreateTable(struct sqlConnection *conn, char *table); /* Create expression record format table of given name. */ +char *gtexVersionSuffix(char *table); +/* Return version string for a GTEx track table. For now, just supporting V4 (no suffix) and V6 */ + #endif /* GTEXGENEBED_H */