b5e62153da4e34f2bd670a088adfd1e77afb9760
angie
  Tue Oct 15 10:14:57 2019 -0700
hui: added link to ucscNotes description, thx Lou refs #23283

diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 2798893..f6c57f6 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -4363,31 +4363,33 @@
                    boolean boxed)
 /* UI for bigDbSnp a.k.a. "dbSNP 2.0". */
 {
 boxed = cfgBeginBoxAndTitle(leafTdb, boxed, title);
 freqSourceSelect(cart, leafTdb, name);
 puts("<br>");
 puts("<b>Label:</b>");
 struct trackDb *correctTdb = tdbOrAncestorByName(leafTdb, name);
 labelMakeCheckBox(cart, correctTdb, "rsId", "rs# identifier", TRUE);
 labelMakeCheckBox(cart, correctTdb, "refAlt", "reference/alternate allele", TRUE);
 labelMakeCheckBox(cart, correctTdb, "majMin", "major/minor allele", FALSE);
 labelMakeCheckBox(cart, correctTdb, "maf", "MAF if available", FALSE);
 labelMakeCheckBox(cart, correctTdb, "func", "Most severe functional impact on gene if any", FALSE);
 puts("<br>");
 scoreCfgUi(db, cart, leafTdb, name, "", 0, FALSE);
-puts("<br>");
+puts("For more information about the &quot;Interesting or anomalous properties&quot;, "
+     "see <a href='#ucscNotes'>below</a>.");
+puts("<br><br>");
 puts("<b>Minimum MAF:</b>");
 boolean parentLevel = isNameAtParentLevel(leafTdb, name);
 double minMaf = cartUsualDoubleClosestToHome(cart, leafTdb, parentLevel, "minMaf", 0.0);
 char cartVar[1024];
 safef(cartVar, sizeof cartVar, "%s.minMaf", name);
 cgiMakeDoubleVarWithLimits(cartVar, minMaf, "MAF", 0, 0.0, 0.5);
 puts("range: 0.0 - 0.5");
 cfgEndBox(boxed);
 }
 
 void cfgByCfgType(eCfgType cType,char *db, struct cart *cart, struct trackDb *tdb,char *prefix,
 	      char *title, boolean boxed)
 // Methods for putting up type specific cfgs used by composites/subtracks in hui.c
 {
 // When only one subtrack, then show it's cfg settings instead of composite/view level settings