a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/hgSeq.c src/hg/lib/hgSeq.c index c128a2b..a90e93e 100644 --- src/hg/lib/hgSeq.c +++ src/hg/lib/hgSeq.c @@ -1,30 +1,29 @@ /* hgSeq - Fetch and format DNA sequence data (to stdout) for gene records. */ #include "common.h" #include "dnautil.h" #include "dnaseq.h" #include "cart.h" #include "cheapcgi.h" #include "hdb.h" #include "web.h" #include "rmskOut.h" #include "fa.h" #include "genePred.h" #include "bed.h" #include "hgSeq.h" -static char const rcsid[] = "$Id: hgSeq.c,v 1.40 2009/08/27 00:10:52 galt Exp $"; int hgSeqChromSize(char *db, char *chromName) /* get chrom size if there's a database out there, * otherwise just return 0 */ { int thisSize = 0; if (hDbExists(db)) thisSize = hChromSize(db, chromName); return thisSize; } static void hgSeqFeatureRegionOptions(struct cart *cart, boolean canDoUTR, boolean canDoIntrons) /* Print out HTML FORM entries for feature region options. */ {