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 Variant Call Format specification for more details
\n",
"http://www.1000genomes.org/wiki/analysis/vcf4.0");
}
else if (startsWithWord("bigWig", type))
{
printf("
The data is stored in the binary "
""
- "BigWig format. Our tools bigWigToBedGraph or bigWigToWig accept a file or the URL above and output text.\n");
+ "BigWig format. Our bigWigToBedGraph and bigWigToWig 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("
The data is stored in the binary "
""
- "BigBed format. Our tool bigBedToBed accepts a file or the URL above as the input and outputs text.
\n");
+ "BigBed format. Our bigBedToBed tool accepts a file or the URL above as the input and converts it to text.
\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