44f007c9ddb5379a7cb74cf44deb865a9fbf8c49 braney Mon Jul 24 14:34:59 2023 -0700 disabling the "Append to.." checkbox in hgPcr because the code is broken and Chris is on vacation diff --git src/hg/hgPcr/hgPcr.c src/hg/hgPcr/hgPcr.c index f37fc3c..31f6dbd 100644 --- src/hg/hgPcr/hgPcr.c +++ src/hg/hgPcr/hgPcr.c @@ -460,34 +460,36 @@ printf("%s", "</CENTER></TD>\n"); jsOnEventById("click", "Submit", "if ($('#wp_r').val()==='' || $('#wp_f').val()==='') "\ "{ alert('Please specify at least a forward and reverse primer. Both input boxes need to be filled out.'); event.preventDefault(); }"); printf("%s", "<TD><CENTER>\n"); printf(" Min Good Match: "); cgiMakeIntVar("wp_good", minGood, 2); printf("%s", "</CENTER></TD>\n"); printf("%s", "<TD><CENTER>\n"); printf(" Flip Reverse Primer: "); cgiMakeCheckBox("wp_flipReverse", flipReverse); printf("%s", "</CENTER></TD>\n"); +#ifdef NOTNOW // disabling until Chris gets back from vacation printf("%s", "<TD><CENTER>\n"); printf(" Append to existing PCR result: "); cgiMakeCheckBox("wp_append", appendToResults); printf("%s", "</CENTER></TD>\n"); +#endif printf("</TR></TABLE><BR>"); printf("</FORM>\n"); /* Put up a second form who's sole purpose is to preserve state * when the user flips the genome button. */ printf("<FORM ACTION=\"../cgi-bin/hgPcr\" METHOD=\"GET\" NAME=\"orgForm\">" "<input type=\"hidden\" name=\"wp_target\" value=\"\">\n" "<input type=\"hidden\" name=\"db\" value=\"\">\n" "<input type=\"hidden\" name=\"org\" value=\"\">\n" "<input type=\"hidden\" name=\"wp_f\" value=\"\">\n" "<input type=\"hidden\" name=\"wp_r\" value=\"\">\n" "<input type=\"hidden\" name=\"wp_size\" value=\"\">\n" "<input type=\"hidden\" name=\"wp_perfect\" value=\"\">\n"