e2ec5ef77645a662ba31c7cfbd7499794975275a
angie
  Fri Mar 23 16:44:07 2012 -0700
Feature #6152 (Variant Annotation Tool): Initial work, squashed infrom origin/annoGrator branch.  Superclasses annoColumn, annoFilter,
annoRow, annoStreamer, annoGrator, and annoFormatter define the core
interfaces for passing data and configuration to and from components.
The annoGrator superclass can join annoRows on position and pass
forward all rows of secondary source.  The annoGratorQuery module
orchestrates the passing of annoRows between the primary source,
annoGrator(s) and annoFormatter(s).  The subclasses annoStreamDb and
annoFormatTab, together with hg/lib/tests/annoGratorTester.c, can join
columns of two database tables such as hg19's pgNA12878 and knownGene
into tab-separated output.

diff --git src/inc/annoFormatTab.h src/inc/annoFormatTab.h
new file mode 100644
index 0000000..2cab5d4
--- /dev/null
+++ src/inc/annoFormatTab.h
@@ -0,0 +1,11 @@
+/* annoFormatTab -- collect fields from all inputs and print them out, tab-separated. */
+
+#ifndef ANNOFORMATTAB_H
+#define ANNOFORMATTAB_H
+
+#include "annoFormatter.h"
+
+struct annoFormatter *annoFormatTabNew(char *fileName);
+/* Return a formatter that will write its tab-separated output to fileName. */
+
+#endif//ndef ANNOFORMATTAB_H