f480811883df9c710d7199b42ccda4606a140d5c kate Thu Jan 14 14:54:58 2016 -0800 Minor style changes. diff --git src/hg/lib/gtexUi.c src/hg/lib/gtexUi.c index 327b3aa..d385542 100644 --- src/hg/lib/gtexUi.c +++ src/hg/lib/gtexUi.c @@ -146,31 +146,31 @@ hashAdd(checkHash, sel->name, sel->name); //puts(""); puts("\n
"); /* table header */ puts("\n"); puts("\n"); printf("\n\n", "gtexGene.sortOrder", "tissue=+ samples=+ organ=+ system=+"); puts(""); printf("", onClick); printf("", onClick); + "align='left' title='Sort on sample count'> Samples", onClick); printf("", onClick); printf("", onClick); puts("\n"); puts(""); /* table body */ puts(""); struct hash *tscHash = gtexGetTissueSampleCount(); struct gtexTissue *tis; boolean isChecked = FALSE; for (tis = tissues; tis != NULL; tis = tis->next) @@ -178,33 +178,33 @@ puts("\n"); // checkbox if (hashNumEntries(checkHash) == 0) isChecked = TRUE; else isChecked = (hashLookup(checkHash, tis->name) != NULL); printf("", name, tis->name, isChecked ? "checked" : ""); // color patch printf("\n%s", makeTissueColorPatch(tis)); // tissue name printf("\n", tis->description); // sample count int samples = hashIntValDefault(tscHash, tis->name, 0); - printf("\n", samples, samples); + printf("\n", samples, samples); // organ - printf("\n", tis->organ); + printf("\n", tis->organ); // system printf("\n", getSystem(tis)); puts("\n"); } puts(""); puts("
      Tissue Samples Organ System
 %s %d %d %s %s %s
"); char buf[512]; safef(buf, sizeof(buf), "%s%s", cgiMultListShadowPrefix(), name); cgiMakeHiddenVar(buf, "0"); } static void makeGroupedTissueCheckboxes(char *name, struct gtexTissue *tissues, struct slName *checked) { struct hash *checkHash = hashNew(0); struct slName *sel;