6b9b7637b977bdc62cb2d447e3a6c2766cac414c galt Thu Mar 18 14:45:26 2021 -0700 Make dynamic blat explanation very minimal. refs #26658 diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c index cfae2bb..d30f017 100644 --- src/hg/hgBlat/hgBlat.c +++ src/hg/hgBlat/hgBlat.c @@ -1753,31 +1753,31 @@ "document.mainForm.submit();"; char *userSeq = NULL; char *type = NULL; printf( "
\n" "

BLAT Search Genome

\n"); cartSaveSession(cart); puts("\n"); puts("\n"); puts("\n"); printf("\n"); printf(""); // clicking on the Search ALL text clicks the checkbox. jsOnEventById("click", "searchAllText", "document.mainForm.allGenomes.click();" "return false;" // cancel the default ); printf(""); printf(""); printf(""); printf(""); printf(""); printf("\n"); printf("\n"); @@ -1836,33 +1836,31 @@ puts("
File Upload: "); puts("Rather than pasting a sequence, you can choose to upload a text file containing " "the sequence.
"); puts("Upload sequence: "); puts("

\n"); printf("%s", "

Only DNA sequences of 25,000 or fewer bases and protein or translated \n" "sequence of 10000 or fewer letters will be processed. Up to 25 sequences\n" "can be submitted at the same time. The total limit for multiple sequence\n" "submissions is 50,000 bases or 25,000 letters.
A valid example " "is GTCCTCGGAACCAGGACCTCGGCGTGGCCTAGCG (human SOD1).\n

\n"); printf("%s", "

The Search all checkbox allows you to search all genomes at the same time. " "Search all is only available for default assemblies and attached hubs with dedicated BLAT servers." -"The new dynamic BLAT servers enable searching on unlimited numbers of genomes " -"using a fixed amount of memory. However, because of the time required to swap, assemblies on dynamic servers are not searched, " -"but are noted as skipped in the output.\n"); +"The new dynamic BLAT servers are not supported, and they are noted as skipped in the output.\n"); printf("

The All Results checkbox disables minimum matches filtering so all results are seen." " For example, with a human dna search, 20 is minimum matches required, based on the genome size, to filter out lower-quality results.\n" "This checkbox can be useful with short queries and with the tiny genomes of microorganisms. \n" ); if (hgPcrOk(db)) printf("

For locating PCR primers, use In-Silico PCR" " for best results instead of BLAT.

", db); puts("
Genome:"); printf(" "); -printf(" Search all genomes on dedicated BLAT servers."); +printf(" Search all"); printf("Assembly:Query type:Sort output:Output type: 
\n"); printf("
\n"); @@ -2294,38 +2292,31 @@ "return false;" // cancel the default link url , gH->genome, gH->db ); idCount++; } printf("\n"); } printf("
\n"); if (debuggingGfResults) printDebugging(); if (hubDynamicBlatServerCount > 0 || nonHubDynamicBlatServerCount > 0) { - printf("Dedicated static BLAT servers are fast but require lots of memory, processors and machines.
\n" - "Dynamic BLAT servers only require disk space, and can support an unlimited numbers of genomes,
\n" - "however they take time to swap indexes into memory and have limited parallelism.
\n" - "The BLAT All Genomes feature does not currently support dynamic BLAT servers.
\n"); - if (nonHubDynamicBlatServerCount > 0) - printf( "Number of dynamic BLAT genomes at this site: %d
\n", nonHubDynamicBlatServerCount); - if (hubDynamicBlatServerCount > 0) - printf( "Number of dynamic BLAT genomes on attached hubs: %d
\n", hubDynamicBlatServerCount); + printf("The BLAT All Genomes feature does not currently support dynamic BLAT servers.
\n"); } printf( "
\n"); fakeAskForSeqForm(organism, db); } else { printf("No input sequences provided.

\n"); } cartWebEnd(); } else blatSeq(skipLeadingSpaces(userSeq), organism, db, 0); }