a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/dnautil.c src/lib/dnautil.c
index 7a6e5f0..fcd8619 100644
--- src/lib/dnautil.c
+++ src/lib/dnautil.c
@@ -3,31 +3,30 @@
  *
  * Assumes that DNA is stored as a character.
  * The DNA it generates will include the bases 
  * as lowercase tcag.  It will generally accept
  * uppercase as well, and also 'n' or 'N' or '-'
  * for unknown bases. 
  *
  * Amino acids are stored as single character upper case. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "dnautil.h"
 
-static char const rcsid[] = "$Id: dnautil.c,v 1.51 2008/10/24 18:20:17 kent Exp $";
 
 struct codonTable
 /* The dread codon table. */
     {
     DNA *codon;		/* Lower case. */
     AA protCode;	/* Upper case. The "Standard" code */
     AA mitoCode;	/* Upper case. Vertebrate Mitochondrial translations */
     };
 
 struct codonTable codonTable[] = 
 /* The master codon/protein table. */
 {
     {"ttt", 'F', 'F',},
     {"ttc", 'F', 'F',},
     {"tta", 'L', 'L',},