src/hg/hgGene/mrnaDescriptions.c 1.9
1.9 2009/06/26 21:28:23 hiram
Talk to the all_mrna table after testing for its existence, not the chr*_mrna table.
Index: src/hg/hgGene/mrnaDescriptions.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgGene/mrnaDescriptions.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 4 -r1.8 -r1.9
--- src/hg/hgGene/mrnaDescriptions.c 3 Sep 2008 19:18:50 -0000 1.8
+++ src/hg/hgGene/mrnaDescriptions.c 26 Jun 2009 21:28:23 -0000 1.9
@@ -24,9 +24,9 @@
struct psl *psl;
int rowOffset;
char extra[64];
safef(extra, sizeof(extra), "strand='%c'", curGenePred->strand[0]);
- sr = hRangeQuery(conn, "mrna", curGeneChrom, curGeneStart, curGeneEnd,
+ sr = hRangeQuery(conn, "all_mrna", curGeneChrom, curGeneStart, curGeneEnd,
extra, &rowOffset);
while ((row = sqlNextRow(sr)) != NULL)
{
psl = pslLoad(row+rowOffset);