14292c6bc896a3768a781cf348b14208c5e172a9 lrnassar Thu Feb 23 15:13:54 2023 -0800 Tweaking the statement Max added after re-enabling BED output for signal tracks, refs #30585 diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c index 545bef2..dcc6b93 100644 --- src/hg/hgTables/mainPage.c +++ src/hg/hgTables/mainPage.c @@ -384,34 +384,36 @@ hPrintf(" SELECTED"); if (sameString(ot->name, outBed) || sameString(ot->name, outWigBed)) hPrintf(" id=\"outBed\""); hPrintf(">%s\n", ot->label); } hPrintf("\n"); hPrintf(" "); hPrintf("", database); hPrintf(""); + "Signal data points format: The Table Browser outputs signal track data in " + "wiggle format by default. You can also use the " + "Table Browser filter feature to designate a value threshold and then output that as BED format. The " + "BED file will create a discreet entry for every value that meets the filter. Our command line tool " + "bigWigToBedGraph can also be used " + "to convert wig files directly. Contact us at genome@soe.ucsc.edu for help with data extraction or conversion."); hPrintf(" "); // we should make an hgTables.js one day, this is ugly jsInline("function checkOutputNotes(event) {\n" "var outType=document.getElementById('outputTypeDropdown').value;\n" "if (outType==='gff')\n" " document.getElementById('gffNote').style.display='';\n" "else if (outType==='wigData')\n" " document.getElementById('wigNote').style.display='';\n" "else\n" " $('.outputNote').hide();\n" // a lot shorter with Jquery than without "}\n" "$(document).ready(checkOutputNotes);\n" ); jsAddEventForId("change", "outputTypeDropdown", "checkOutputNotes");