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/annoGrateWig.h src/hg/inc/annoGrateWig.h
new file mode 100644
index 0000000..22ad17c
--- /dev/null
+++ src/hg/inc/annoGrateWig.h
@@ -0,0 +1,11 @@
+/* annoGrateWig -- subclass of annoGrator for wiggle data */
+
+#ifndef ANNOGRATEWIG_H
+#define ANNOGRATEWIG_H
+
+#include "annoGrator.h"
+
+struct annoGrator *annoGrateWigDbNew(char *db, char *table, int maxOutput);
+/* Create an annoGrator subclass for wiggle data from db.table (and the file it points to). */
+
+#endif//ndef ANNOGRATEWIG_H