8548a5903f6181e2912ce0e584a0f56240de1858
hiram
  Thu Oct 10 10:58:23 2019 -0700
extend supported types for schema display to bigBarChart bigInteract and bigLolly and correct indicate not supported VCF types refs #23589

diff --git src/hg/hubApi/apiUtils.c src/hg/hubApi/apiUtils.c
index cffcf1d..bb5f4bb 100644
--- src/hg/hubApi/apiUtils.c
+++ src/hg/hubApi/apiUtils.c
@@ -332,32 +332,35 @@
 		trackFound = subTrack;
 	    }
 	}
     if (sameOk(trackFound->track, track))
 	break;
     }
 
 return trackFound;
 }
 
 boolean allowedBigBedType(char *type)
 /* return TRUE if the big* bed-like type is to be supported
  * add to this list as the big* bed-like supported types are expanded
  */
 {
-if (startsWithWord("bigBed", type) ||
+if (startsWithWord("bigBarChart", type) ||
+    startsWithWord("bigBed", type) ||
     startsWithWord("bigGenePred", type) ||
+    startsWithWord("bigInteract", type) ||
+    startsWithWord("bigLolly", type) ||
     startsWithWord("bigPsl", type)
    )
     return TRUE;
 else
     return FALSE;
 }
 
 struct bbiFile *bigFileOpen(char *trackType, char *bigDataUrl)
 /* open bigDataUrl for correct trackType and error catch if failure */
 {
 struct bbiFile *bbi = NULL;
 struct errCatch *errCatch = errCatchNew();
 if (errCatchStart(errCatch))
     {
 if (allowedBigBedType(trackType))