49eb00a2d0f47737a528e3ca0d8dc5ac2ff09229 gperez2 Thu Feb 20 16:37:56 2025 -0800 Updating the big* data schema tools and table browser text, refs #35223 diff --git src/hg/hgTables/schema.c src/hg/hgTables/schema.c index f7a8c031077..de4ccda7770 100644 --- src/hg/hgTables/schema.c +++ src/hg/hgTables/schema.c @@ -192,31 +192,31 @@ void explainCoordSystem() /* Our coord system is counter-intuitive to users. Warn them in advance to * reduce the frequency with which they find this "bug" on their own and * we have to explain it on the genome list. */ { printf("<BR><I>Note: all start coordinates in our database are 0-based, not \n" "1-based. See explanation \n" "<A HREF=\"http%s://genome.ucsc.edu/FAQ/FAQtracks#tracks1\">" "here</A>.</I>", cgiAppendSForHttps()); } void printTableBrowserLink(struct trackDb *tdb, char* table) /* print link to table browser that opens this table */ { -printf("To download this table in various text formats, and intersect or correlate with other tables, use our " +printf("<br>\nTo download this table in different text formats or to intersect or correlate it with other tables, use the " "<a href='hgTables?db=%s&hgta_group=%s&hgta_track=%s&hgta_table=%s'>Table Browser</a>.<br>", database, tdb->grp, tdb->track, table); } static void printSampleRows(int sampleCount, struct sqlConnection *conn, char *table) /* Put up sample values. */ { char query[256]; struct sqlResult *sr; char **row; int i, columnCount = 0; int itemRgbCol = -1; boolean showItemRgb = FALSE; showItemRgb=bedItemRgb(findTdbForTable(database, curTrack, table, ctLookupName));