85be21057a058a0bdb12caac2bae553376442f5a angie Mon Apr 15 10:56:28 2013 -0700 Refactoring to remove dependencies on annoGratorQuery from streamers,grators and formatters. Instead, provide basic assembly info and explicitly pass streamers(/grators) along with the rows that they produced into formatters. ref #6152 diff --git src/inc/annoGrateWig.h src/inc/annoGrateWig.h index 3a8c47a..2131681 100644 --- src/inc/annoGrateWig.h +++ src/inc/annoGrateWig.h @@ -1,14 +1,14 @@ /* annoGrateWig -- subclass of annoGrator for bigWig or wiggle data */ #ifndef ANNOGRATEWIG_H #define ANNOGRATEWIG_H #include "annoGrator.h" struct annoGrator *annoGrateWigNew(struct annoStreamer *wigSource); /* Create an annoGrator subclass for source with rowType == arWig. */ -struct annoGrator *annoGrateBigWigNew(char *fileOrUrl); +struct annoGrator *annoGrateBigWigNew(char *fileOrUrl, struct annoAssembly *aa); /* Create an annoGrator subclass for bigWig file or URL. */ #endif//ndef ANNOGRATEWIG_H