f9d16c71532bbc7a8e1e873d194ae1c937315686
braney
  Thu Aug 12 12:50:58 2021 -0700
print out HTML and schema for Clinvar Submissions track

diff --git src/hg/hgc/clinvarSubLolly.c src/hg/hgc/clinvarSubLolly.c
index 59b07b7..a0b78b2 100644
--- src/hg/hgc/clinvarSubLolly.c
+++ src/hg/hgc/clinvarSubLolly.c
@@ -100,16 +100,17 @@
     char startBuf[16], endBuf[16];
     bigBedIntervalToRow(bb, chrom, startBuf, endBuf, fields, bbi->fieldCount);
     int numSubs = chopString(fields[12], ",", NULL, 0);
 
     printPos(chrom, bb->start, bb->end, NULL, FALSE, name);
     // print all the submissions that match the clinical significance of the
     // bead that the user clicked on.
     printSubmissions(tdb,  chrom, start, end, atoi(fields[4]), numSubs, FALSE);
 
     // no print the ones with a different clinical status
     printSubmissions(tdb,  chrom, start, end, atoi(fields[4]), numSubs, TRUE);
 
     // we found what we wanted
     break;
     }
+printTrackHtml(tdb);
 }