ce643cc1161083650af9b97edc09d647a829b865 jnavarr5 Fri Jun 27 15:13:25 2025 -0700 Removing the ExonPrimer links from hgGene since the tool returns a 404 error (for hg19, hg38, mm10, mm39, mm9), refs #35989 diff --git src/hg/hgGene/primers.c src/hg/hgGene/primers.c index 9b1d8c827ba..71438833254 100644 --- src/hg/hgGene/primers.c +++ src/hg/hgGene/primers.c @@ -1,50 +1,50 @@ /* primers - do primers section. */ /* Copyright (C) 2013 The Regents of the University of California * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "hash.h" #include "linefile.h" #include "dystring.h" #include "cheapcgi.h" #include "spDb.h" #include "hgGene.h" #include "hdb.h" #include "net.h" static boolean primersExist(struct section *section, struct sqlConnection *conn, char *geneId) /* Return TRUE */ { return(TRUE); } static void primersPrint(struct section *section, struct sqlConnection *conn, char *geneId) /* Print out primers section. */ { puts("
Primer3Plus can design qPCR Primers that straddle exon-exon-junctions, which amplify only cDNA, not genomic DNA.
");
printPrimer3Anchor(globalTdb->table, curGeneId, curGeneChrom, curGeneStart, curGeneEnd);
puts("Click here to load the transcript sequence and exon structure into Primer3Plus
Exonprimer can design one pair of Sanger sequencing primers around every exon, located in non-genic sequence.
");
-printf("Click here to open Exonprimer with this transcript
Exonprimer can design one pair of Sanger sequencing primers around every exon, located in non-genic sequence.
");
+//printf("Click here to open Exonprimer with this transcript
To design primers for a non-coding sequence, zoom to a region of interest and select from the drop-down menu: View > In External Tools > Primer3
"); } struct section *primersSection(struct sqlConnection *conn, struct hash *sectionRa) /* Create primers section. */ { struct section *section = sectionNew(sectionRa, "primers"); if (!section) return NULL; section->exists = primersExist; section->print = primersPrint; return section; }