110f5e12a634db49ea9aa1ea23ff4965f1c2befe galt Tue Aug 14 13:48:57 2018 -0700 changing cse to soe in domains, sometimes gi. ref #21876 diff --git src/hg/das/das.c src/hg/das/das.c index 8d0d138..f8b28d8 100644 --- src/hg/das/das.c +++ src/hg/das/das.c @@ -111,31 +111,31 @@ static void dasAbout() /* Print a little info when they just hit cgi-bin/das. */ { dasHead(DAS_OK, TRUE); dasHelp("UCSC DAS Server.\n" "See http://www.biodas.org for more info on DAS.\n" "Try http://genome.ucsc.edu/cgi-bin/das/dsn for a list of databases.\n" "See our DAS FAQ (http://genome.ucsc.edu/FAQ/FAQdownloads#download23)\n" "for more information. Alternatively, we also provide query capability\n" "through our MySQL server; please see our FAQ for details\n" "(http://genome.ucsc.edu/FAQ/FAQdownloads#download29).\n\n" "Note that DAS is an inefficient protocol which does not support\n" "all types of annotation in our database. We recommend you\n" "access the UCSC database by downloading the tab-separated files in\n" - "the downloads section (http://hgdownload.cse.ucsc.edu/downloads.html)\n" + "the downloads section (http://hgdownload.soe.ucsc.edu/downloads.html)\n" "or by using the Table Browser (http://genome.ucsc.edu/cgi-bin/hgTables)\n" "instead of DAS in most circumstances."); exit(0); } static void normalHeader() /* Write normal (non-error) header. */ { dasHeader(DAS_OK); } static void earlyError(int errCode) /* Return error in early processing (before writing header) */ { dasHeader(errCode); @@ -574,31 +574,31 @@ normalHeader(); printf( "<!DOCTYPE DASDSN SYSTEM \"http://www.biodas.org/dtd/dasdsn.dtd\">\n" "<DASDSN>\n"); for (db = dbList; db != NULL; db = db->next) { char *freeze = hFreezeFromDb(db->name); char *organism = hOrganism(db->name); if (! hDbIsActive(db->name)) continue; printf(" <DSN>\n"); printf(" <SOURCE id=\"%s\" version=\"%s\">%s at UCSC</SOURCE>\n", db->name, version, freeze); printf(" <DESCRIPTION>%s %s Genome at UCSC</DESCRIPTION>\n", organism, freeze); - printf(" <MAPMASTER>http://genome.cse.ucsc.edu:80/cgi-bin/das/%s</MAPMASTER>\n", + printf(" <MAPMASTER>http://genome.ucsc.edu:80/cgi-bin/das/%s</MAPMASTER>\n", db->name); printf(" </DSN>\n"); } printf("</DASDSN>\n"); } static int countFeatures(struct tableDef *td, struct segment *segmentList) /* Count all the features in a given segment. */ { struct segment *segment; int acc = 0; struct sqlConnection *conn = hAllocConn(database); char chrTable[256]; char query[512]; struct slName *n;