18d303bb4f14e1edff401c8a85276ff1344f0f37 angie Tue Apr 3 10:18:14 2012 -0700 Feature #6152 (Variant Annotation Tool): Added annoStreamVcf, whichled to yet more significant changes to annoRow: instead of every row declaring its type and annoRow{Free,Clone} taking a numCols argument that is meaningless for wig, now annoRow{Free,Clone} take the row's source annoStreamer as an argument. The annoStreamer now has public members (rowType and numCols) that provide all information needed about the row. annoStreamer constructors need to set rowType. diff --git src/lib/annoStreamer.c src/lib/annoStreamer.c index dca975b..b909e12 100644 --- src/lib/annoStreamer.c +++ src/lib/annoStreamer.c @@ -68,29 +68,30 @@ * default filters and columns based on asObj. * In general, subclasses' constructors will call this first; override nextRow, close, * and probably setRegion and setQuery; and then initialize their private data. */ { self->getAutoSqlObject = annoStreamerGetAutoSqlObject; self->setRegion = annoStreamerSetRegion; self->getFilters = annoStreamerGetFilters; self->setFilters = annoStreamerSetFilters; self->getColumns = annoStreamerGetColumns; self->setColumns = annoStreamerSetColumns; self->setQuery = annoStreamerSetQuery; self->positionIsGenome = TRUE; self->asObj = asObj; self->filters = annoFiltersFromAsObject(asObj); self->columns = annoColumnsFromAsObject(asObj); +self->numCols = slCount(asObj->columnList); } void annoStreamerFree(struct annoStreamer **pSelf) /* Free self. This should be called at the end of subclass close methods, after * subclass-specific connections are closed and resources are freed. */ { if (pSelf == NULL) return; struct annoStreamer *self = *pSelf; freez(&(self->chrom)); annoFilterFreeList(&(self->filters)); annoColumnFreeList(&(self->columns)); freez(pSelf); }