a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/utils/greedyPack/greedyPack.c src/utils/greedyPack/greedyPack.c index ff4ff13..41c2f76 100644 --- src/utils/greedyPack/greedyPack.c +++ src/utils/greedyPack/greedyPack.c @@ -1,25 +1,24 @@ /* greedyPack - Given a given size, and a list of chromosomes (or anything really) of * various sizes, figure out how to bundle together things into bundles of that size or * less, using relatively few bundles, using a very simple greedy algorithm. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "sqlNum.h" #include "options.h" -static char const rcsid[] = "$Id: greedyPack.c,v 1.1 2008/10/23 02:31:23 kent Exp $"; void usage() /* Explain usage and exit. */ { errAbort( "greedyPack - Given a given size, and a list of chromosomes (or anything really) of " "various sizes, figure out how to bundle together things into bundles of that size or " "less, using relatively few bundles, using a very simple greedy algorithm.\n" "usage:\n" " greedyPack bundleSize chrom.sizes bundleList\n" "options:\n" " -xxx=XXX\n" ); }