a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/jkOwnLib/xensmall.c src/jkOwnLib/xensmall.c index 74c7ee8..595b772 100644 --- src/jkOwnLib/xensmall.c +++ src/jkOwnLib/xensmall.c @@ -1,26 +1,25 @@ /* xensmall.c - align using dynamic programming. */ /* Copyright 2000-2003 Jim Kent. All rights reserved. */ #include "common.h" #include "memalloc.h" #include "cheapcgi.h" #include "dnautil.h" #include "xenalign.h" #include "pairHmm.h" -static char const rcsid[] = "$Id: xensmall.c,v 1.11 2006/03/15 18:36:16 angie Exp $"; static double calcGcRatio(DNA *a, int aSize, DNA *b, int bSize) /* Figure out percentage of g/c in a and b. */ { int counts[4]; int i; int total = 4; DNA base; int val; int gcCount; for (i=0; i<ArraySize(counts); ++i) counts[i] = 1; for (i=0; i<aSize; ++i) {