a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/affyTransciptome/mergeAffyFiles.c src/hg/affyTransciptome/mergeAffyFiles.c index c5d8111..599f855 100644 --- src/hg/affyTransciptome/mergeAffyFiles.c +++ src/hg/affyTransciptome/mergeAffyFiles.c @@ -2,31 +2,30 @@ #include "bed.h" #include "cheapcgi.h" #include "hash.h" #include "linefile.h" #include "dnautil.h" void usage() { errAbort("mergeAffyFiles - Combines an Affy 1lq file describing a chip layout, a\n" "nmer file from nmerAlign aligning the oligos in the genome, and a series\n" "of .cel files for given experiments. The output is either a .sample file\n" "suitable for the browser or the file used by affyTransLiftedToSample.c\n" "usage:\n\t" "mergeAffyFiles <1lq file> \n"); } -static char const rcsid[] = "$Id: mergeAffyFiles.c,v 1.2 2003/05/06 07:22:13 kate Exp $"; struct lqRecord /* Row from an affymetrix 1lq file. */ { struct lqRecord *next; /* Next in list. */ char **cols; /* Array of the columns on a line, 0,1 are coordinates, 2 is sequence, and 5 is name. */ struct nmerAlign *nmerList; /* Places that this oligo aligns to genome. */ }; struct nmerAlign /* Alignment of a Nmer in the genome. */ { struct nmerAlign *next; /* Next in list. */ char *chrom; /* Chromosome. */ int chromStart; /* Chromosome start. */