a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/fa.c src/lib/fa.c
index 5c2a1f0..930ff9a 100644
--- src/lib/fa.c
+++ src/lib/fa.c
@@ -1,30 +1,29 @@
 /* Routines for reading and writing fasta format sequence files.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "errabort.h"
 #include "hash.h"
 #include "portable.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "fa.h"
 #include "linefile.h"
 
-static char const rcsid[] = "$Id: fa.c,v 1.38 2009/09/23 18:42:28 angie Exp $";
 
 boolean faReadNext(FILE *f, char *defaultName, boolean mustStartWithComment,
                          char **retCommentLine, struct dnaSeq **retSeq) 
 /* Read next sequence from .fa file. Return sequence in retSeq.  
  * If retCommentLine is non-null
  * return the '>' line in retCommentLine.   
  * The whole thing returns FALSE at end of file.  
  * DNA chars are mapped to lower case.*/
 {
     return faReadMixedNext(f, 0, defaultName, mustStartWithComment,
                                         retCommentLine, retSeq);
 }
 
 boolean faReadMixedNext(FILE *f, boolean preserveCase, char *defaultName, 
     boolean mustStartWithComment, char **retCommentLine, struct dnaSeq **retSeq)