40b7e2a3e86f9633d0800d1ae5fed25c38a4e342 markd Mon Mar 25 06:36:58 2019 -0700 removed pslToBigPsl warning about missing CDS, as this is an expected occurance for non-coding genes which can generate tens of thousands of warnings diff --git src/hg/utils/pslToBigPsl/pslToBigPsl.c src/hg/utils/pslToBigPsl/pslToBigPsl.c index a6fc4f4..96fcd4f 100644 --- src/hg/utils/pslToBigPsl/pslToBigPsl.c +++ src/hg/utils/pslToBigPsl/pslToBigPsl.c @@ -112,32 +112,30 @@ if (cdsHash) { char *cds = hashFindVal(cdsHash, psl->qName); if (cds != NULL) { bigPsl.oCDS = cds; struct genbankCds mrnaCds; genbankCdsParse(cds, &mrnaCds); struct genbankCds genomeCds = genbankCdsToGenome(&mrnaCds, psl); bigPsl.thickStart = genomeCds.start; bigPsl.thickEnd = genomeCds.end; } - else - warn("CDS missing for %s\n", psl->qName); } bigPslOutput(&bigPsl, fp, '\t', '\n'); } void pslToBigPsl(char *pslFile, char *bigPslOutput, char *fastaFile, char *cdsFile) /* pslToBigPsl - converts psl to bigPsl. */ { struct psl *psl = pslLoadAll(pslFile); struct hash *fastHash = NULL; struct hash *cdsHash = NULL; if (fastaFile != NULL) {