a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/hgMaf.c src/hg/lib/hgMaf.c index f29b972..0b11a09 100644 --- src/hg/lib/hgMaf.c +++ src/hg/lib/hgMaf.c @@ -1,31 +1,30 @@ /* hgMaf.c - Stuff to load up mafs from the browser database. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "dystring.h" #include "options.h" #include "jksql.h" #include "dnautil.h" #include "dnaseq.h" #include "maf.h" #include "hdb.h" #include "scoredRef.h" #include "hgMaf.h" -static char const rcsid[] = "$Id: hgMaf.c,v 1.15 2010/05/11 01:43:30 kent Exp $"; int mafCmp(const void *va, const void *vb) /* Compare to sort based on start of first component. */ { const struct mafAli *a = *((struct mafAli **)va); const struct mafAli *b = *((struct mafAli **)vb); return a->components->start - b->components->start; } struct mafAli *mafLoadInRegion2(struct sqlConnection *conn, struct sqlConnection *conn2, char *table, char *chrom, int start, int end, char *file) /* Return list of alignments in region. */ {