src/hg/lib/hui.c 1.224
1.224 2009/07/17 15:03:31 sugnet
Handle bed filter ui in multi-view composites
Index: src/hg/lib/hui.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/hui.c,v
retrieving revision 1.223
retrieving revision 1.224
diff -b -B -U 4 -r1.223 -r1.224
--- src/hg/lib/hui.c 17 Jul 2009 06:24:57 -0000 1.223
+++ src/hg/lib/hui.c 17 Jul 2009 15:03:31 -0000 1.224
@@ -2896,9 +2896,11 @@
case cfgChain: chainCfgUi(db,cart,tdb,prefix,title,boxed, NULL);
break;
case cfgNetAlign: netAlignCfgUi(db,cart,tdb,prefix,title,boxed);
break;
- default: warn("Track type is not known to multi-view composites.");
+ case cfgBedFilt: bedUi(tdb,cart,title, boxed);
+ break;
+ default: warn("Track type is not known to multi-view composites. type is: %d ", cType);
break;
}
}
@@ -3444,9 +3446,8 @@
printf("<B>Combination Logic:</B> ");
radioButton(logicTypeVar, logicTypeVal, "and");
radioButton(logicTypeVar, logicTypeVal, "or");
printf("</br>");
-printf("<B>Pattern:</B> ");
/* List various fields you can filter on. */
cg = startControlGrid(4, NULL);
for (fil = mud->filterList; fil != NULL; fil = fil->next)
oneMrnaFilterUi(cg, fil->label, fil->key, cart);