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("<B>Custom Track ID:</B> %s ", table); hPrintf("<B>Field Count:</B> %d<BR>", ct->fieldCount); hPrintf("For formatting information see: "); -hPrintf("<A HREF=\"../goldenPath/help/customTrack.html#BED\">BED</A> "); +hPrintf("<A HREF=\"../FAQ/FAQformat.html#format1\">BED</A> "); 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("<TT><PRE>"); if (showItemRgb) @@ -507,31 +507,31 @@ bedTabOutN(bed, ct->fieldCount, stdout); } hPrintf("</PRE></TT>\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("<B>Custom Track ID:</B> %s ", table); hPrintf("<B>Field Count:</B> %d<BR>", ct->fieldCount); hPrintf("For formatting information see: "); -hPrintf("<A HREF=\"../goldenPath/help/customTrack.html#microarray\">Microarray</A> "); +hPrintf("<A HREF=\"../FAQ/FAQformat.html#format6.5\">Microarray</A> "); 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("<TT><PRE>"); for(bed = ct->bedList;bed != NULL && count < 10;bed = bed->next,++count)