1181f2b6dc4ea27bd4990fafc90fe787bc8681de ann Fri Aug 21 13:14:50 2015 -0700 reorderd list of data types: remotes first, then alpha. Added bigGenePred to list of remote data types diff --git src/hg/hgCustom/hgCustom.c src/hg/hgCustom/hgCustom.c index f9afdcd..71a323d 100644 --- src/hg/hgCustom/hgCustom.c +++ src/hg/hgCustom/hgCustom.c @@ -87,56 +87,54 @@ struct customTrack *ctList = NULL; 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 */ { puts(" Data must be formatted in\n" -" BED,\n" " bigBed,\n" " bigGenePred,\n" -" bedGraph,\n" -" GFF,\n" -" GTF,\n" -" WIG,\n" " bigWig,\n" -" MAF,\n" " BAM,\n" -" BED detail,\n" -" Personal Genome SNP,\n" " VCF,\n" +" BED,\n" +" BED detail,\n" +" bedGraph,\n" " broadPeak,\n" +" GFF,\n" +" GTF,\n" +" MAF,\n" " narrowPeak,\n" -" or PSL\n" +" Personal Genome SNP,\n" +" PSL,\n" +" or WIG\n" " formats. To configure the display, set\n" " track\n" " and" " browser\n" " line attributes as described in the \n" " User's Guide.\n" -" Data in the bigBed, bigWig, BAM and VCF formats can be provided via only a URL or embedded in a track\n" +" Data in the bigBed, bigWig, bigGenePred, BAM and VCF formats can be provided via only a URL or 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" ); } void addCustomForm(struct customTrack *ct, char *err) /* display UI for adding custom tracks by URL or pasting data */ { char *dataUrl = NULL; char buf[1024]; boolean gotClade = FALSE; boolean isUpdateForm = FALSE; if (ct) {