a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/gdf.c src/lib/gdf.c index d662af8..df8e767 100644 --- src/lib/gdf.c +++ src/lib/gdf.c @@ -1,24 +1,23 @@ /* gdf - Intronerator Gene Description File. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "gdf.h" -static char const rcsid[] = "$Id: gdf.c,v 1.4 2003/05/06 07:33:42 kate Exp $"; struct gdfGene *newGdfGene(char *name, int nameSize, int exonCount, char strand, UBYTE chromIx) /* Return a new gene. */ { struct gdfGene *gene = needMem(sizeof *gene); gene->name = cloneStringZ(name, nameSize); gene->dataCount = exonCount*2; if (exonCount > 0) { gene->dataPoints = needMem(gene->dataCount * sizeof(gene->dataPoints[0])); } gene->strand = strand; gene->chromIx = chromIx; return gene;