0306db6d76e3a164039b23b9b48a0677e5df03e6
braney
  Thu Mar 9 08:25:41 2017 -0800
first cut at adding support for pslSnake's

diff --git src/hg/lib/trackHub.c src/hg/lib/trackHub.c
index 17893ba..ed363c7 100644
--- src/hg/lib/trackHub.c
+++ src/hg/lib/trackHub.c
@@ -760,30 +760,31 @@
 
     if (!(trackDbSetting(tdb, "compositeTrack") ||
           trackDbSetting(tdb, "container") || 
 	  isSuper))
         {
 	errAbort("Parent track %s is not compositeTrack, container, or superTrack in hub %s genome %s", 
 		tdb->track, hub->url, genome->name);
 	}
     }
 else
     {
     /* Check type field. */
     char *type = requiredSetting(hub, genome, tdb, "type");
     if (!(startsWithWord("bigWig", type) ||
           startsWithWord("bigBed", type) ||
+          startsWithWord("pslSnake", type) ||
 #ifdef USE_HAL
           startsWithWord("halSnake", type) ||
 #endif
           startsWithWord("vcfTabix", type) ||
           startsWithWord("bigPsl", type) ||
           startsWithWord("bigMaf", type) ||
           startsWithWord("longTabix", type) ||
           startsWithWord("bigGenePred", type) ||
           startsWithWord("bigChain", type) ||
           startsWithWord("bam", type)))
 	{
 	errAbort("Unsupported type '%s' in hub %s genome %s track %s", type,
 	    hub->url, genome->name, tdb->track);
 	}