a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/wigAsciiToBinary.c src/hg/lib/wigAsciiToBinary.c index 9f08478..78aa15e 100644 --- src/hg/lib/wigAsciiToBinary.c +++ src/hg/lib/wigAsciiToBinary.c @@ -27,31 +27,30 @@ * should be maintained in a single table row entry. Holes in the input * data will be filled with WIG_NO_DATA values up to the size of the * current "bin". If the missing data continues past the next "bin" size * number of data points, that table row will be skipped. Thus, it * is only necessary to have table rows which contain valid data. * binsize is currently 1024, however it will need to be an input * parameter for the command line version of this function. * (there are several parameters that need to come in from the * command line version -- to be done). */ #include "common.h" #include "options.h" #include "linefile.h" #include "wiggle.h" -static char const rcsid[] = "$Id: wigAsciiToBinary.c,v 1.35 2010/06/05 00:47:47 kent Exp $"; /* This list of static variables is here because the several * subroutines in this source file need access to all this business * and since there are so many it is not convenient to pass them * around in a structure. Just make sure they are initialized * properly upon entry to this function. This used to be a static * command line program and thus these did not need to be set * except for this declaration, now they are all re-initialized * upon entry to the function. * Functions in this source file: * static void output_row(); * static void setDataSpan(char *spec); * static void setStepSize(char *spec); * static void setFixedStart(char *spec); * static void setChromName(char *spec);