a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/dnaseq.c src/lib/dnaseq.c index 42ed8a1..11a007c 100644 --- src/lib/dnaseq.c +++ src/lib/dnaseq.c @@ -1,27 +1,26 @@ /* dnaSeq.c - stuff to manage DNA sequences. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "dnaseq.h" #include "bits.h" #include "hash.h" #include "obscure.h" -static char const rcsid[] = "$Id: dnaseq.c,v 1.20 2008/10/30 09:27:59 kent Exp $"; struct dnaSeq *newDnaSeq(DNA *dna, int size, char *name) /* Create a new DNA seq. */ { struct dnaSeq *seq; seq = needMem(sizeof(*seq)); if (name != NULL) seq->name = cloneString(name); seq->dna = dna; seq->size = size; seq->mask = NULL; return seq; }