e875d891b2b315130d008702bfc8e496f9ed4c7a
chinhli
Mon Jan 9 09:44:00 2012 -0800
Change /goldenPath/help/customTrack.html#BED (GTF, GFF, MAF, and PSL) to /FAQ/FAQformat.html#formatN
diff --git src/hg/hgCustom/hgCustom.c src/hg/hgCustom/hgCustom.c
index 42d7b04..bffdc13 100644
--- src/hg/hgCustom/hgCustom.c
+++ src/hg/hgCustom/hgCustom.c
@@ -86,66 +86,66 @@
void makeClearButton(char *field)
/* UI button that clears a text field */
{
char javascript[1024];
safef(javascript, sizeof javascript,
"document.mainForm.%s.value = '';", field);
cgiMakeOnClickButton(javascript, " Clear ");
}
void addIntro()
/* display overview and help message for "add" screen */
{
if (hIsGsidServer())
{
puts(" Data must be formatted in\n"
- " BED,\n"
+ " BED,\n"
" bigBed,\n"
" bedGraph,\n"
- " GFF,\n"
- " GTF,\n"
+ " GFF,\n"
+ " GTF,\n"
" WIG\n"
" bigWig,\n"
" BED detail,\n"
" Personal Genome SNP,\n"
- " or PSL\n"
+ " or PSL\n"
" formats. To configure the display, set\n"
" track\n"
" and"
" browser\n"
" line attributes as described in the \n"
" User's Guide.\n"
" URLs for data in the bigBed, bigWig, BAM and VCF formats must be embedded in a track\n"
" line in the box below.\n"
);
}
else
{
puts(" Data must be formatted in\n"
- " BED,\n"
+ " BED,\n"
" bigBed,\n"
" bedGraph,\n"
- " GFF,\n"
- " GTF,\n"
+ " GFF,\n"
+ " GTF,\n"
" WIG,\n"
" bigWig,\n"
" MAF,\n"
" BAM,\n"
" BED detail,\n"
" Personal Genome SNP,\n"
" VCF,\n"
- " or PSL\n"
+ " or PSL\n"
" formats. To configure the display, set\n"
" track\n"
" and"
" browser\n"
" line attributes as described in the \n"
" User's Guide.\n"
" URLs for data in the bigBed, bigWig, BAM and VCF formats must be embedded in a track\n"
" line in the box below.\n"
" Publicly available custom tracks are listed\n"
" here.\n"
" Examples are\n"
" here.\n"
);
}
}