a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/flydna.c src/lib/flydna.c index 26a14fe..d2423d9 100644 --- src/lib/flydna.c +++ src/lib/flydna.c @@ -1,30 +1,29 @@ /* flydna.c - routines for accessing fly genome and cDNA sequences. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "snof.h" #include "dnautil.h" #include "dnaseq.h" #include "fa.h" #include "nt4.h" #include "cda.h" #include "wormdna.h" #include "flydna.h" -static char const rcsid[] = "$Id: flydna.c,v 1.4 2003/05/06 07:33:42 kate Exp $"; static char *chromNames[] = {"adh"}; static char *ntFileNames[] = {"c:/biodata/fly/chrom/adh.nt"}; void flyLoadNt4Genome(struct nt4Seq ***retNt4Seq, int *retNt4Count) /* Load up entire packed fly genome into memory. */ { struct nt4Seq **pSeq; int i; pSeq = needMem(ArraySize(ntFileNames) * sizeof(pSeq[0]) ); for (i=0; i<ArraySize(ntFileNames); ++i) { pSeq[i] = loadNt4(ntFileNames[i], chromNames[i]); }