33990deeb6214328424d9acf9bfaf667ae8f3f4f angie Wed Mar 28 15:34:14 2012 -0700 Feature #6152 (Variant Annotation Tool): Added annoStreamWig and annoGrateWig,which led to some significant changes: annoRow is now polymorphic (words[] vs. wig float[]), annoFilter has a new function to apply filter(s) to a single number, and annoFormatTab can print out per-base wiggle values or average wiggle values (hardcoded to do per-base until a real config option is added). One puny test case was verified against mysql & table browser output. diff --git src/hg/inc/annoStreamWig.h src/hg/inc/annoStreamWig.h new file mode 100644 index 0000000..8910ca5 --- /dev/null +++ src/hg/inc/annoStreamWig.h @@ -0,0 +1,11 @@ +/* annoStreamWig -- subclass of annoStreamer for wiggle database tables */ + +#ifndef ANNOSTREAMWIG_H +#define ANNOSTREAMWIG_H + +#include "annoStreamer.h" + +struct annoStreamer *annoStreamWigDbNew(char *db, char *table, int maxOutput); +/* Create an annoStreamer (subclass) object from a wiggle database table. */ + +#endif//ndef ANNOSTREAMWIG_H