53a520d17d725ceacf50f5eecead0c75470ce48a braney Sat Jul 29 16:13:58 2017 -0700 adding hgCollection, a tool to build custom collections of tracks diff --git src/hg/lib/hCommon.c src/hg/lib/hCommon.c index 8131329..5bbbe12 100644 --- src/hg/lib/hCommon.c +++ src/hg/lib/hCommon.c @@ -7,31 +7,31 @@ #include "hCommon.h" #include "chromInfo.h" #include "portable.h" #include "hgConfig.h" #include "errAbort.h" static char *_hgcName = "../cgi-bin/hgc"; /* Path to click processing program. */ static char *_hgTracksName = "../cgi-bin/hgTracks"; /* Path back to genome browser. */ static char *_hgTrackUiName = "../cgi-bin/hgTrackUi"; /* Path to extended ui program. */ static char *_hgFileUiName = "../cgi-bin/hgFileUi"; /* Path to downloladable files CGI. */ static char *_hgTextName = "../cgi-bin/hgText"; /* Path back to the text browser. */ static char *_hgTablesName = "../cgi-bin/hgTables"; /* Path back to the table browser. */ static char *_hgVaiName = "../cgi-bin/hgVai"; /* Path back to the variant annotation integrator. */ static char *_hgCustomName = "../cgi-bin/hgCustom"; /* Path back to the custom tracks manager. */ -static char *_hgCompositeName = "../cgi-bin/hgComposite"; /* Path back to the composite builder */ +static char *_hgCollectionName = "../cgi-bin/hgCollection"; /* Path back to the composite builder */ static char *_hgHubConnectName = "../cgi-bin/hgHubConnect"; /* Path back to the track hub manager. */ static char *_hgSessionName = "../cgi-bin/hgSession"; /* Path to session manager. */ static char *_hgPalName = "../cgi-bin/hgPal"; /* Path back to the protein aligner */ static char *_hgVarAnnogratorName = "../cgi-bin/hgVarAnnogrator"; /* Path to variant annot intgr */ static char *_hgIntegratorName = "../cgi-bin/hgIntegrator"; /* Path to annotation intgrator */ static char *_hgGeneName = "../cgi-bin/hgGene"; /* Path to gene details */ char *hgPalName() /* Relative URL to click processing program. */ { return _hgPalName; } char *hgcName() /* Relative URL to click processing program. */ @@ -69,34 +69,34 @@ return _hgTablesName; } char *hgVaiName() /* Relative URL to variant annotation integrator. */ { return _hgVaiName; } char *hgCustomName() /* Relative URL to custom tracks manager. */ { return _hgCustomName; } -char *hgCompositeName() +char *hgCollectionName() /* Relative URL to composite builder. */ { -return _hgCompositeName; +return _hgCollectionName; } char *hgHubConnectName() /* Relative URL to track hub manager. */ { return _hgHubConnectName; } char *hgSessionName() /* Relative URL to session manager. */ { return _hgSessionName; } char *hgVarAnnogratorName()