0f62f220d9099e6db7b4f3423caf5e0595831f4c
braney
  Wed Jul 16 16:43:36 2025 -0700
add table browser support for bedMethyl

diff --git src/hg/hgTables/joining.c src/hg/hgTables/joining.c
index 5b867cef0ed..a9314e444ac 100644
--- src/hg/hgTables/joining.c
+++ src/hg/hgTables/joining.c
@@ -290,30 +290,31 @@
 }
 
 static void makeCtOrderedCommaFieldList(struct joinerDtf *dtfList, 
 	struct dyString *dy)
 /* Make comma-separated field list in same order as fields are in
  * custom track. */
 {
 char *track = dtfList->table;
 struct customTrack *ct = ctLookupName(track);
 char *type = ct->dbTrackType;
 struct slName *fieldList = NULL;
 if (startsWithWord("makeItems", type) || 
         sameWord("bedDetail", type) || 
         sameWord("barChart", type) || 
         sameWord("interact", type) || 
+        sameWord("bedMethyl", type) || 
         sameWord("pgSnp", type))
     {
     struct sqlConnection *conn = hAllocConn(CUSTOM_TRASH);
     fieldList = sqlListFields(conn, ct->dbTableName);
     hFreeConn(&conn);
     }
 else
     {
     fieldList = getBedFields(15);
     }
 makeOrderedCommaFieldList(fieldList, dtfList, dy);
 slFreeList(&fieldList);
 }
 
 static void makeBigBedOrderedCommaFieldList(struct joinerDtf *dtfList,