4bb9e8caea515342ba98d3871da76cd4ec69916f chmalee Fri May 1 14:10:00 2026 -0700 Initial myVariants implementation: a form on hgTracks where users can enter item details in one of three ways: hgvs/item search, simple bed form, advanced bed form where additional non-bed fields can dynamically created. Allows changing the color of items, writing descriptions, and editing the items after creation. Show overlaps with hardcoded tracks when hgc page is open (not in the hgc dialog). Next commit has implementation of sharing these tracks with other users diff --git src/hg/hgc/hgc.h src/hg/hgc/hgc.h index ab1236687dc..09c0015d7c8 100644 --- src/hg/hgc/hgc.h +++ src/hg/hgc/hgc.h @@ -468,31 +468,31 @@ void doVcfTabixDetails(struct trackDb *tdb, char *item); /* Show details of an alignment from a VCF file compressed and indexed by tabix. */ void doVcfTabixDetailsExt(struct trackDb *tdb, char *item, struct featureBits **pFbList, int start, int end); /* Show details of an alignment from a VCF file compressed and indexed by tabix. */ void doVcfDetails(struct trackDb *tdb, char *item); /* Show details of an alignment from an uncompressed VCF file. */ void doVcfDetailsExt(struct trackDb *tdb, char *item, struct featureBits **pFbList, int start, int end); /* Show details of an alignment from an uncompressed VCF file. */ void doBarChartDetails(struct trackDb *tdb, char *item); /* Details of barChart item */ -void doMakeItemsDetails(struct customTrack *ct, char *itemIdString); +void doMyVariantsDetails(struct customTrack *ct, char *itemIdString); /* Show details of a makeItems item. */ void doBedDetail(struct trackDb *tdb, struct customTrack *ct, char *itemName); /* generate the detail page for a custom track of bedDetail type */ void doPgSnp(struct trackDb *tdb, char *itemName, struct customTrack *ct); /* print detail page for personal genome track (pgSnp) */ void doGvf(struct trackDb *tdb, char *item); /* Show details for variants represented as GVF, stored in a bed8Attrs table */ void doGeneReviews(struct trackDb *tdb, char *itemName); /* generate the detail page for geneReviews */ void prGeneReviews(struct sqlConnection *conn, char *itemName);