8715d83d38d8bb18adfdd9ce05771b4cede85407
angie
Fri Dec 5 09:52:07 2014 -0800
Moved some hgTables code that had been copied into a couple differentplaces into a new lib module, cartTrackDb. hgGenome/import.c has code
that is fairly similar but that also needs to filter out custom tracks
that were generated by hgGenome.
diff --git src/hg/hgVai/hgVai.c src/hg/hgVai/hgVai.c
index 38ba99b..3a96088 100644
--- src/hg/hgVai/hgVai.c
+++ src/hg/hgVai/hgVai.c
@@ -1,28 +1,29 @@
/* hgVai - Variant Annotation Integrator. */
/* Copyright (C) 2014 The Regents of the University of California
* See README in this or parent directory for licensing information. */
#include "common.h"
#include "linefile.h"
#include "hash.h"
#include "options.h"
#include "jksql.h"
#include "htmshell.h"
#include "web.h"
#include "cheapcgi.h"
#include "cart.h"
+#include "cartTrackDb.h"
#include "hui.h"
#include "grp.h"
#include "hCommon.h"
#include "hgFind.h"
#include "hPrint.h"
#include "jsHelper.h"
#include "memalloc.h"
#include "textOut.h"
#include "trackHub.h"
#include "hubConnect.h"
#include "twoBit.h"
#include "gpFx.h"
#include "udc.h"
#include "knetUdc.h"
#include "md5.h"
@@ -162,33 +163,34 @@
printf("");
}
char *makePositionInput()
/* Return HTML for the position input. */
{
struct dyString *dy = dyStringCreate("",
hgvaRange, 45,
addCommasToPos(NULL, cartString(cart, hgvaRange)));
return dyStringCannibalize(&dy);
}
void printCtAndHubButtons()
/* Print a div with buttons for hgCustom and hgHubConnect */
{
+boolean hasCustomTracks = customTracksExist(cart, NULL);
puts("
");
}
void hgGatewayCladeGenomeDb()
/* Make a row of labels and row of buttons like hgGateway, but not using tables. */
{
boolean gotClade = hGotClade();
if (gotClade)
@@ -2279,31 +2281,31 @@
cart = cartAndCookieNoContent(hUserCookie(), excludeVars, oldVars);
else
cart = cartAndCookie(hUserCookie(), excludeVars, oldVars);
/* Set up global variables. */
getDbAndGenome(cart, &database, &genome, oldVars);
regionType = cartUsualString(cart, hgvaRegionType, hgvaRegionTypeGenome);
if (isEmpty(cartOptionalString(cart, hgvaRange)))
cartSetString(cart, hgvaRange, hDefaultPos(database));
int timeout = cartUsualInt(cart, "udcTimeout", 300);
if (udcCacheTimeout() < timeout)
udcSetCacheTimeout(timeout);
knetUdcInstall();
-initGroupsTracksTables(cart, &fullTrackList, &fullGroupList);
+cartTrackDbInit(cart, &fullTrackList, &fullGroupList, TRUE);
if (lookupPosition(cart, hgvaRange))
{
if (startQuery)
doQuery();
else
doUi();
}
else
{
// Revert to lastPosition if we have multiple matches or warnings,
// especially in case user manually edits browser location as in #13009:
char *position = cartUsualString(cart, "lastPosition", hDefaultPos(database));
cartSetString(cart, hgvaRange, position);
if (webGotWarnings())
{