fd4c4cba6e831a48ab3334c4700bb6c50d71f83a angie Wed Mar 9 16:09:08 2011 -0800 Track #34 (dbVar for human): new track type gvf needs to be made packable in trackDbCustom.c. I forget this every time I make a new track type. diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index 0367dbe..5d6fcf3 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -199,31 +199,31 @@ } } static boolean packableType(char *type) /* Return TRUE if we can pack this type. */ { char *t = cloneString(type); char *s = firstWordInLine(t); boolean canPack = (sameString("psl", s) || sameString("chain", s) || sameString("bed", s) || sameString("genePred", s) || sameString("bigBed", s) || sameString("makeItems", s) || sameString("expRatio", s) || sameString("wigMaf", s) || sameString("factorSource", s) || sameString("bed5FloatScore", s) || sameString("bed6FloatScore", s) || sameString("altGraphX", s) || sameString("bam", s) || sameString("bedDetail", s) || - sameString("bed8Attrs", s)); + sameString("bed8Attrs", s) || sameString("gvf", s)); freeMem(t); return canPack; } void trackDbPolish(struct trackDb *bt) /* Fill in missing values with defaults. */ { if (bt->shortLabel == NULL) bt->shortLabel = cloneString(bt->track); if (bt->longLabel == NULL) bt->longLabel = cloneString(bt->shortLabel); if (bt->altColorR == 0 && bt->altColorG == 0 && bt->altColorB == 0) {