a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/hgTables/maf.c src/hg/hgTables/maf.c index d412bf5..74ff56d 100644 --- src/hg/hgTables/maf.c +++ src/hg/hgTables/maf.c @@ -3,31 +3,30 @@ #include "common.h" #include "hash.h" #include "linefile.h" #include "dystring.h" #include "portable.h" #include "obscure.h" #include "jksql.h" #include "cheapcgi.h" #include "cart.h" #include "web.h" #include "trackDb.h" #include "maf.h" #include "hgMaf.h" #include "hgTables.h" -static char const rcsid[] = "$Id: maf.c,v 1.20 2010/05/11 01:43:25 kent Exp $"; boolean isMafTable(char *database, struct trackDb *track, char *table) /* Return TRUE if table is maf. */ { if (track == NULL) return FALSE; if (isEmpty(track->type)) return FALSE; if (sameString(track->table, table)) { if (startsWithWord("maf",track->type) || startsWithWord("wigMaf",track->type)) return TRUE; } else