679b48855a32f8ea1e1ea8ca3c095a0c2c7f6c7a
max
  Tue Sep 8 10:08:41 2026 -0700
detailsScript: add a scatterPlot plot type, and use it for pcLAI

Clicking a pcLAI window now shows where that window sits in the ancestry space
it was placed in: a scatterplot of the 1000 Genomes reference haplotypes with
the window's own PCA coordinate and its segment's coordinate marked on it. The
numbers were already on the details page and told a reader almost nothing.

New plot type scatterPlot (hg/js/hgc.scatterPlot.js), driven the same way as
histogram. Background points come from a JSON or TSV file named by dataUrl and
may carry a category, which colors them and builds a legend, and a label, which
is shown on mouseover. The cloud is drawn on a canvas, since these files hold
thousands of points and that many <circle> elements make the page crawl; axes
and the highlighted points stay SVG on top. Point lookup for the mouseover goes
through a cell index so a large file stays smooth.

Two additions serve every plot type, not just this one:

- exportFields, a config key listing further bigBed fields whose values are
passed to the module as a fieldValues object. Without it a plot needing two
coordinates would need them packed into one field, and pcLAI keeps them in
pca and pcaSegment. Only fields that exist in the bigBed are exported, at
most 32, and the JSON types are checked rather than asserted because
jsonListVal and jsonStringVal errAbort and this JSON is written by a hub.

- a config key ending in Url is treated as a file, by the convention
trackSettingIsFile() already uses, and a relative one is resolved against the
track's own bigDataUrl. The module does not fetch it directly; it asks
hgTrackUi for it, the route facetedComposite uses for its metadata. That
checks the canonicalized path against the hubs on the cart and reads it with
udc, so a hub-relative path works even for a hub loaded from a local path
(the GenArk /gbdb hubs), no CORS header is needed, and a file outside a
connected hub cannot be read. Verified that /etc/passwd, file://, a dot-dot
escape, an unattached hub and an unrelated host are all refused with 400.
When the session has file caching off, hgc now exports udcTimeout the way
hgTrackUi does and the module POSTs, so the browser cannot answer from cache.

Fixes a crash reachable from any hub: "detailsScript.<plotType>.<field> null"
segfaulted hgc, because jsonObjectVal returns NULL for a JSON null and the hash
routines dereference it. This hit the shipped histogram type too.

trackDbSettingsGen.py stopped reading a setting's description at the first
"Example:" paragraph and never read <ul> at all, so it dropped everything after
the first example and every list item. That silently truncated 226 of the 264
descriptions, including spectrum's minGrayLevel/scoreMin/scoreMax bullets, and
would have dropped this whole scatterPlot section. It now skips the Example
label instead of stopping, and folds list items in. No setting loses a word and
none gains or loses an example.

pcLAI wiring: the background file is the authors' published reference panel
(github.com/AI-sandbox/hprc-pclai reference_pca_metadata.tsv), converted by
hprc2annotMakePclaiRefPanel.py -- 3122 haplotypes, 21 populations, 94 KB, one
file for the collection since it is the reference space rather than per-assembly
data. The four values pcaSegment takes across all 460 assemblies turn out to be
the four continental cluster centres, so the highlighted segment dot always
lands on one of them.

genark: addContrib now rewrites a "...Url" inside a detailsScript value the same
way it rewrites bigDataUrl, and symlinks the collection's shared root-level data
files next to the docs, so contrib/<name>/<file> resolves in the deeper GenArk
layout. It writes the alpha tier only, leaving the assembly's default hub alone,
and clears any unmarked copy of the collection's stanzas that the assembly build
baked in, which would otherwise leave the hub declaring each track twice.

refs #35415

diff --git src/hg/htdocs/goldenPath/help/trackDb/trackDbSettingsGen.py src/hg/htdocs/goldenPath/help/trackDb/trackDbSettingsGen.py
index 3a3e857e1d6..cd6c6795498 100644
--- src/hg/htdocs/goldenPath/help/trackDb/trackDbSettingsGen.py
+++ src/hg/htdocs/goldenPath/help/trackDb/trackDbSettingsGen.py
@@ -129,40 +129,55 @@
             continue
         name = classes[0]
         if name.endswith("_intro") or name.endswith("_example"):
             continue
         types = [c for c in span.get("class", []) if not c.startswith("types")]
         if not types:
             types = ["all"]
         fmtDiv = div.find("div", class_="format")
         fmtCode = fmtDiv.find("code") if fmtDiv else None
         fmt = toAscii(fmtCode.get_text(" ", strip=True)) if fmtCode else name
 
         req = div.find("p", class_="isRequired")
         reqText = req.get_text(" ", strip=True).lower() if req else ""
         required = "yes" in reqText or "for hubs" in reqText
 
+        # Walk p and ul in document order. Stopping at the first "Example" paragraph
+        # would lose every later paragraph, which matters for a setting that documents
+        # more than one variant, so the label is skipped rather than ended on. List
+        # items carry real content, so <ul> is folded in as well.
         descParts = []
-        for p in div.find_all("p"):
-            if "isRequired" in (p.get("class") or []):
+
+        def addPart(txt, prefix=""):
+            # The source wraps paragraphs over several lines, so squeeze each block to
+            # one line; blocks are then joined by newlines to keep them apart.
+            txt = re.sub(r"\s+", " ", txt).strip()
+            if txt:
+                descParts.append(prefix + txt)
+
+        for el in div.find_all(["p", "ul"]):
+            if el.name == "ul":
+                for li in el.find_all("li"):
+                    addPart(li.get_text(" ", strip=True), "- ")
                 continue
-            txt = p.get_text(" ", strip=True)
+            if "isRequired" in (el.get("class") or []):
+                continue
+            txt = el.get_text(" ", strip=True)
             if txt.lower().startswith("example"):
-                break
-            if txt:
-                descParts.append(txt)
-        description = toAscii(re.sub(r"\s+", " ", " ".join(descParts)).strip())
+                continue
+            addPart(txt)
+        description = toAscii("\n".join(descParts).strip())
         examples = []
         for pre in div.find_all("pre"):
             ex = toAscii(pre.get_text().strip())
             if ex:
                 examples.append(ex)
 
         blurbs[name] = {
             "types": types,
             "format": fmt,
             "required": required,
             "description": description,
             "summary": firstSentence(description),
             "examples": examples,
         }
     return blurbs