a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/hgGene/altSplice.c src/hg/hgGene/altSplice.c index 7e021f4..0f0189e 100644 --- src/hg/hgGene/altSplice.c +++ src/hg/hgGene/altSplice.c @@ -1,29 +1,28 @@ /* altSplice - altSplicing diagram. */ #include "common.h" #include "hCommon.h" #include "hash.h" #include "linefile.h" #include "dystring.h" #include "hdb.h" #include "hvGfx.h" #include "portable.h" #include "altGraphX.h" #include "hgGene.h" -static char const rcsid[] = "$Id: altSplice.c,v 1.14 2010/06/05 19:29:37 braney Exp $"; static int gpBedBasesShared(struct genePred *gp, struct bed *bed) /* Return number of bases genePred and bed share. */ { int intersect = 0; int i, blockCount = bed->blockCount; int s,e; for (i=0; ichromStart + bed->chromStarts[i]; e = s + bed->blockSizes[i]; intersect += gpRangeIntersection(gp, s, e); } return intersect; }