a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/qaSeq.c src/hg/lib/qaSeq.c
index a661013..b30810b 100644
--- src/hg/lib/qaSeq.c
+++ src/hg/lib/qaSeq.c
@@ -1,28 +1,27 @@
 /* qaSeq.c - read and write quality scores. */
 
 
 #include "common.h"
 #include "portable.h"
 #include "linefile.h"
 #include "hash.h"
 #include "fa.h"
 #include "rle.h"
 #include "qaSeq.h"
 #include "sig.h"
 
-static char const rcsid[] = "$Id: qaSeq.c,v 1.5 2006/03/09 18:26:58 angie Exp $";
 
 void qaSeqFree(struct qaSeq **pQa)
 /* Free up qaSeq. */
 {
 struct qaSeq *qa;
 if ((qa = *pQa) == NULL)
     return;
 freeMem(qa->name);
 freeMem(qa->dna);
 freeMem(qa->qa);
 freez(pQa);
 }
 
 void qaSeqFreeList(struct qaSeq **pList)
 /* Free a list of QA seq's. */