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/hgTables/schema.c src/hg/hgTables/schema.c index f2ceac6..8623670 100644 --- src/hg/hgTables/schema.c +++ src/hg/hgTables/schema.c @@ -469,31 +469,31 @@ static void showSchemaCtBed(char *table, struct customTrack *ct) /* Show schema on bed format custom track. */ { struct bed *bed; int count = 0; boolean showItemRgb = FALSE; showItemRgb=bedItemRgb(ct->tdb); /* should we expect itemRgb */ /* instead of "reserved" */ /* Find named custom track. */ hPrintf("Custom Track ID: %s ", table); hPrintf("Field Count: %d
", ct->fieldCount); hPrintf("For formatting information see: "); -hPrintf("BED "); +hPrintf("BED "); hPrintf("format."); if (ct->dbTrack) { struct sqlConnection *conn = hAllocConn(CUSTOM_TRASH); webNewSection("Sample Rows"); printSampleRows(10, conn, ct->dbTableName); printTrackHtml(ct->tdb); hFreeConn(&conn); } else { webNewSection("Sample Rows"); hPrintf("
");
     if (showItemRgb)
@@ -507,31 +507,31 @@
 	    bedTabOutN(bed, ct->fieldCount, stdout);
 	}
     hPrintf("
\n"); } } static void showSchemaCtArray(char *table, struct customTrack *ct) /* Show schema on bed format custom track. */ { struct bed *bed; int count = 0; /* Find named custom track. */ hPrintf("Custom Track ID: %s ", table); hPrintf("Field Count: %d
", ct->fieldCount); hPrintf("For formatting information see: "); -hPrintf("Microarray "); +hPrintf("Microarray "); hPrintf("format."); if (ct->dbTrack) { struct sqlConnection *conn = hAllocConn(CUSTOM_TRASH); webNewSection("Sample Rows"); printSampleRows(10, conn, ct->dbTableName); printTrackHtml(ct->tdb); hFreeConn(&conn); } else { webNewSection("Sample Rows"); hPrintf("
");
     for(bed = ct->bedList;bed != NULL && count < 10;bed = bed->next,++count)