a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/affyTransciptome/pickCassettePcrPrimers.c src/hg/affyTransciptome/pickCassettePcrPrimers.c
index 19f6089..41f4c8e 100644
--- src/hg/affyTransciptome/pickCassettePcrPrimers.c
+++ src/hg/affyTransciptome/pickCassettePcrPrimers.c
@@ -1,26 +1,25 @@
 /* pickCassettePcrPrimers - Takes a bedFile with three exons and for each bed calls primer3 to pick primers that will detect the inclusion or exclusion of the exon.. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "dnaseq.h"
 #include "hdb.h"
 #include "dnautil.h"
 #include "bed.h"
 
-static char const rcsid[] = "$Id: pickCassettePcrPrimers.c,v 1.2 2003/05/06 07:22:13 kate Exp $";
 
 struct cassetteSeq 
 /* Info necessary to make pcr primers for a cassette exon. */
 {
     struct cassetteSeq *next;   /* Next in list. */
     struct bed *bed;            /* Bed that this sequence represents. */
     struct dnaSeq *seq;         /* Genomic sequence of exon concatenated together. 5'-> 3' coding*/
     int targetStart;            /* Start of cassette exon in sequence. */
     int targetEnd;              /* End of cassette exon in sequence. */
     char strand[3];             /* Strand associated with cassette exon. */
     char *name;                 /* Name of cassetteSeq. */
     char *rightPrimer;          /* Sequence of right hand primer. */
     char *leftPrimer;           /* Sequence of left hand primer. */
     int rpStart;                /* Start of right hand primer in sequence. */
     int lpStart;                /* Start of left hand primer in sequence. */