a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/genoLay.c src/hg/lib/genoLay.c index e7a1d96..dbeba97 100644 --- src/hg/lib/genoLay.c +++ src/hg/lib/genoLay.c @@ -1,27 +1,26 @@ /* genoLay - genome layout. Arranges chromosomes so that they * tend to fit together nicely on a single page. */ #include "common.h" #include "hash.h" #include "jksql.h" #include "vGfx.h" #include "cytoBand.h" #include "hCytoBand.h" #include "genoLay.h" -static char const rcsid[] = "$Id: genoLay.c,v 1.12 2009/04/06 05:40:29 galt Exp $"; void genoLayDump(struct genoLay *gl) /* Print out info on genoLay */ { struct genoLayChrom *chrom; struct slRef *left, *right, *ref; int total; printf("gl: lineCount %d, leftLabelWidth %d, rightLabelWidth %d, basesPerPixel %f<BR>\n", gl->lineCount, gl->leftLabelWidth, gl->rightLabelWidth, gl->basesPerPixel); for (left = gl->leftList, right = gl->rightList; left != NULL || right != NULL;) { total=0; if (left != NULL) { chrom = left->val;