6819e624cfe2476aa5e10be99ebaf8c96e319278
angie
  Tue Aug 9 15:40:00 2011 -0700
Feature #3710 (vcfTabix UI options): added checkbox to enable/disable haplotype sorting display.
diff --git src/hg/inc/vcfUi.h src/hg/inc/vcfUi.h
index 7d749a0..fa28053 100644
--- src/hg/inc/vcfUi.h
+++ src/hg/inc/vcfUi.h
@@ -1,22 +1,23 @@
 /* vcfUi - Variant Call Format user interface controls that are shared
  * between more than one CGI. */
 #ifndef VCFUI_H
 #define VCFUI_H
 
 #include "cart.h"
 #include "trackDb.h"
 #include "vcf.h"
 
 #define VCF_HAP_HEIGHT_VAR "hapClusterHeight"
-
 #define VCF_DEFAULT_HAP_HEIGHT 128
 
+#define VCF_HAP_ENABLED_VAR "hapClusterEnabled"
+
 void vcfCfgHaplotypeCenter(struct cart *cart, struct trackDb *tdb, struct vcfFile *vcff,
 			   char *thisName, char *thisChrom, int thisPos, char *formName);
 /* If vcff has genotype data, show status and controls for choosing the center variant
  * for haplotype clustering/sorting in hgTracks. */
 
 void vcfCfgUi(struct cart *cart, struct trackDb *tdb, char *name, char *title, boolean boxed);
 /* Complete track controls for VCF. */
 
 #endif//def VCF_UI