a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/utils/wigAsciiToBinary/wigAsciiToBinary.c src/utils/wigAsciiToBinary/wigAsciiToBinary.c index 6eda4bf..cc2fc41 100644 --- src/utils/wigAsciiToBinary/wigAsciiToBinary.c +++ src/utils/wigAsciiToBinary/wigAsciiToBinary.c @@ -29,31 +29,30 @@ * should be maintained in a single table row entry. This can be * controlled by command line argument. Holes in the input data * will be filled with 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. * The "bin" size is under control with a command line argument. */ #include "common.h" #include "options.h" #include "linefile.h" #define WIG_NO_DATA 128 #define MAX_BYTE_VALUE 127 -static char const rcsid[] = "$Id: wigAsciiToBinary.c,v 1.27 2005/03/04 20:49:31 galt Exp $"; /* command line option specifications */ static struct optionSpec optionSpecs[] = { {"offset", OPTION_LONG_LONG}, {"binsize", OPTION_LONG_LONG}, {"dataSpan", OPTION_LONG_LONG}, {"chrom", OPTION_STRING}, {"wibFile", OPTION_STRING}, {"name", OPTION_STRING}, {"minVal", OPTION_FLOAT}, {"maxVal", OPTION_FLOAT}, {"obsolete", OPTION_BOOLEAN}, {NULL, 0} };