5709a7858d5c197721be66d5218a79124abadb70 lrnassar Tue Mar 17 08:46:31 2026 -0700 Adding alt text to images across static documentation pages, CGI headers, markdown docs, and Pandoc templates. Content images receive AI-generated descriptive alt text; decorative images (icons, spacers, toggles) receive alt="" per WCAG best practice. Also adds Image Descriptions section to the accessibility page, and fixes Pandoc Lua writers to output alt attributes. 67 files, covering help docs, news archive, ENCODE pages, portal pages, and session examples. refs #37254 diff --git src/hg/htdocs/goldenPath/help/hubBasics.html src/hg/htdocs/goldenPath/help/hubBasics.html index 772e5035124..33647779c19 100755 --- src/hg/htdocs/goldenPath/help/hubBasics.html +++ src/hg/htdocs/goldenPath/help/hubBasics.html @@ -134,67 +134,67 @@ type bigBed 12 + bigDataUrl gtexCaviar.chr7_155799529-155812871.bb

The type line consists of three parts:

Here is a screenshot of what this basic bigBed track looks like displayed in the Genome Browser:
- +Browser display of a basic bigBed track configured with required settings only

The bigBed format also offers a wide range of customization options for the display, from decorators to highlights. Additionally, it offers extensive filter controls, searching options, and mouseover configurations. Our trackDb documentation contains a full listing of settings available for the format.

Here is the bigBed configuration with some commonly used settings, including filtering and mouseover configuration.

track bigBedCommonSettings
 shortLabel bigBed Common Settings
 longLabel A bigBed Example with Commonly Used Settings
 visibility pack
 type bigBed 12 +
 bigDataUrl gtexCaviar.chr7_155799529-155812871.bb
 filterLabel.cpp CPP (Causal Posterior Probability)
 filter.cpp 0
 filterLabel.geneName Gene Symbol
 filterText.geneName *
 mouseOver $name; CPP: $cpp
 

And here is what that track looks like in the Genome Browser:
- +Browser display of a bigBed track configured with commonly used optional settings

These common settings added options to the track configuration pop-up:
- +Track configuration pop-up showing filtering and mouseover options for a bigBed track

bigWig Tracks

You can use bigWig to tracks to display continuous annotations, such as RNA-seq expression, conservation scores, or other genome signal scores. You can build a bigWig using one of two plain-text formats: wiggle or bedGraph.

Building a bigWig

  1. Download the wigToBigWig utility for your system type from our download @@ -229,31 +229,31 @@ longLabel A bigWig Example with Commonly Used Settings visibility pack type bigWig -20 10.003 bigDataUrl hg38.phyloP100way.chr7_155799529-155812871.bw color 60,60,140

    The type line consists of two parts:

    • "bigWig" is the basic track type
    • "-20 10.003" indicates the minimum and maximum of the data in the bigWig

    Here is what this looks like visualized in the Genome Browser:
    - +Browser display of a basic bigWig signal track with required settings only

    Grouping tracks

    Next, we'll provide a basic overview of how to group your tracks using composite tracks and super tracks. This will allow you to pull similar data together under a single container.

    Composite Tracks

    Composite tracks can hold multiple tracks of the same type. For example, you use a composite to group together a set of RNA-seq experiments, including replicates.

    @@ -279,31 +279,31 @@ visibility dense track compositeBigWig2 bigDataUrl c.chr7_155799529-155812871.bw shortLabel bigWig #2 longLabel bigWig in Composite Track Example #2 parent compositeExample type bigWig 0 1 color 0,255,0 autoScale group visibility dense

    This composite track configuration will display like so:
    - +Composite track displaying multiple bigWig subtracks grouped together in the browser

    Super Tracks

    Super tracks are a more general type of container. They can contain tracks of different types and even composites.

    Configuring a basic super track is quite similar to composite tracks. There are two key components of a composite: (1) the line "superTrack on" in the parent track stanza, and (2) including "parent superTrackName" for each track that will be part of the super track.

    track superTrackExample
     shortLabel Super Track Example
     longLabel A super-track of related data of various types together: individual, multiWig, and composite
     superTrack on show
    @@ -333,31 +333,31 @@
             longLabel A composite-contained bigWig in a super track example #1
             parent superTrackCompositeBigWig on
             type bigWig 0 1
             
             track superTrackCompositeBigWig2
             bigDataUrl c.chr7_155799529-155812871.bw
             shortLabel ST bigWig composite #2
             longLabel A composite-contained bigWig in a super track example #2
             parent superTrackCompositeBigWig on
             type bigWig 0 1
     

    Loading the example hub with this super track configuration looks like this:
    - +Super track grouping bigBed, composite bigWig, and multiWig tracks in a folder hierarchy

    Creating description pages

    If you plan to share your track hub more widely, you will want to create a description page for your tracks. A description page could contain a short description of what the data represents, how the data was generated, a link to the associated paper, or a contact email for questions regarding the data. Multiple tracks can use the same description page.

    We provide an example description html that you can modify with the details for your track. Once you've modified this example html for your track, add an html to the corresponding track stanza:

    track bigWigExample