a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/chromInserts.c src/hg/lib/chromInserts.c index de13ef9..cae6768 100644 --- src/hg/lib/chromInserts.c +++ src/hg/lib/chromInserts.c @@ -1,24 +1,23 @@ /* chromInserts - this module helps handle centromeres, heterochromatic regions * and other large gaps in chromosomes. */ #include "common.h" #include "hash.h" #include "linefile.h" #include "chromInserts.h" -static char const rcsid[] = "$Id: chromInserts.c,v 1.5 2003/05/06 07:22:21 kate Exp $"; static char *dashIsNull(char *s) /* Return cloned copy of string, or NULL if it's just a dash. */ { if (sameString(s, "-")) return NULL; else return cloneString(s); } struct chromInserts *chromInsertsRead(char *fileName, struct hash *insertsHash) /* Read in inserts file and process it. */ { struct chromInserts *chromInsertsList = NULL, *chromInserts; struct bigInsert *insert;