a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/dnaLoad.c src/lib/dnaLoad.c index c5d5ff7..f3a24d8 100644 --- src/lib/dnaLoad.c +++ src/lib/dnaLoad.c @@ -1,25 +1,24 @@ /* dnaLoad - Load dna from a variaty of file formats. */ #include "common.h" #include "dnaseq.h" #include "fa.h" #include "twoBit.h" #include "nib.h" #include "dnaLoad.h" -static char const rcsid[] = "$Id: dnaLoad.c,v 1.9 2008/05/20 04:33:02 markd Exp $"; struct dnaLoadStack /* Keep track of a single DNA containing file. */ { struct dnaLoadStack *next; /* Next in list. */ struct twoBitFile *twoBit; /* Two bit file if any. */ struct twoBitIndex *tbi; /* Next twoBit sequence. */ struct lineFile *textFile; /* Text file if any. */ boolean textIsFa; /* True if text is in fasta format. */ }; struct dnaLoad /* A structure to help us load DNA from files - mixed case * from either .fa, .nib, or .2bit files */ {