49eb00a2d0f47737a528e3ca0d8dc5ac2ff09229
gperez2
  Thu Feb 20 16:37:56 2025 -0800
Updating the big* data schema tools and table browser text, refs #35223

diff --git src/hg/hgTables/hgTables.c src/hg/hgTables/hgTables.c
index 07605b0bd20..977dcccba52 100644
--- src/hg/hgTables/hgTables.c
+++ src/hg/hgTables/hgTables.c
@@ -256,38 +256,38 @@
 
 boolean printTypeHelpDesc(char *type)
 /* print a little link to our help docs given a track type. Return true if file type is a big* file format. */
 {
 boolean isBig = FALSE;
 
 if (startsWith("vcf", type))
     {
     hPrintf("See the <A HREF=\"%s\" target=_blank>Variant Call Format specification</A> for  more details<BR>\n",
             "http://www.1000genomes.org/wiki/analysis/vcf4.0");
     }
 else if (startsWithWord("bigWig", type))
     {
     printf("<BR>The data is stored in the binary "
            "<A HREF=\"/goldenPath/help/bigWig.html\" TARGET=_BLANK>"
-           "BigWig</A> format. Our tools <tt>bigWigToBedGraph</tt> or <tt>bigWigToWig</tt> accept a file or the URL above and output text.\n");
+           "BigWig</A> format. Our <tt>bigWigToBedGraph</tt> and <tt>bigWigToWig</tt> tools accept a file or the URL above as the input and convert it to text.\n");
     isBig = TRUE;
     }
 else if (startsWith("big", type))
     {
     printf("<BR>The data is stored in the binary "
            "<A HREF=\"/goldenPath/help/bigBed.html\" TARGET=_BLANK>"
-           "BigBed</A> format. Our tool <tt>bigBedToBed</tt> accepts a file or the URL above as the input and outputs text.<BR>\n");
+           "BigBed</A> format. Our <tt>bigBedToBed</tt> tool accepts a file or the URL above as the input and converts it to text.<BR>\n");
     isBig = TRUE;
     }
 
 return isBig;
 }
 
 void textOpen()
 /* Start up page in text format. (No need to close this).
  *	In case of pipeline output to a compressor, it is closed
  *	at main() exit.
  */
 {
 
 // hgBotDelay function is now in earlyBotCheck() at the start of main(), and in
 // this case, the issueBotWarning flag is ignored to avoid any output here