e18fa442e05628a15efcad248c2f1c49b1e6c008 angie Tue Mar 31 10:03:17 2020 -0700 Make casing consistent in hapCluster options. Thanks Brian L! refs #25197 diff --git src/hg/lib/vcfUi.c src/hg/lib/vcfUi.c index d4c94e6..48ca85f 100644 --- src/hg/lib/vcfUi.c +++ src/hg/lib/vcfUi.c @@ -127,31 +127,31 @@ { if (vcff != NULL && vcff->genotypeCount > 1) { printf("<TABLE cellpadding=0><TR><TD colspan=2>" "<B>Haplotype sorting order:</B></TD></TR><TR><TD>\n"); char *hapMethod = cartOrTdbString(cart, tdb, VCF_HAP_METHOD_VAR, VCF_DEFAULT_HAP_METHOD); char varName[1024]; safef(varName, sizeof(varName), "%s." VCF_HAP_METHOD_VAR, track); cgiMakeRadioButton(varName, VCF_HAP_METHOD_CENTER_WEIGHTED, sameString(hapMethod, VCF_HAP_METHOD_CENTER_WEIGHTED)); printf("</TD><TD>"); vcfCfgHaplotypeCenter(cart, tdb, track, parentLevel, vcff, NULL, NULL, 0, "mainForm"); puts("<TR><TD>"); cgiMakeRadioButton(varName, VCF_HAP_METHOD_FILE_ORDER, sameString(hapMethod, VCF_HAP_METHOD_FILE_ORDER)); - puts("</TD><TD>Using the order in which samples appear in the underlying VCF file"); + puts("</TD><TD>using the order in which samples appear in the underlying VCF file"); puts("</TR></TD></TABLE>"); } } //TODO: share this code w/hgTracks, hgc in hg/lib/vcfFile.c static struct vcfFile *vcfHopefullyOpenHeader(struct cart *cart, struct trackDb *tdb) /* Defend against network errors and return the vcfFile object with header data, or NULL. */ { knetUdcInstall(); if (udcCacheTimeout() < 300) udcSetCacheTimeout(300); char *fileOrUrl = trackDbSetting(tdb, "bigDataUrl"); if (isEmpty(fileOrUrl)) { char *db = cartString(cart, "db");