summaryrefslogtreecommitdiff
path: root/network/wwwblast/Src/wblast2.c
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2007-09-05 15:33:43 +0000
committerAaron M. Ucko <ucko@debian.org>2007-09-05 15:33:43 +0000
commit7647e504b18f91edcedba85e7a6ef772b2a0f48b (patch)
tree6152f91efe8f30174ce9d51525a458b85335f12b /network/wwwblast/Src/wblast2.c
parentb0629a94e882461a9d6cab18807c5f96501cf38f (diff)
[svn-upgrade] Integrating new upstream version, ncbi-tools6 (6.1.20070822)
Diffstat (limited to 'network/wwwblast/Src/wblast2.c')
-rw-r--r--network/wwwblast/Src/wblast2.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/network/wwwblast/Src/wblast2.c b/network/wwwblast/Src/wblast2.c
index e3183a9c..c952cf84 100644
--- a/network/wwwblast/Src/wblast2.c
+++ b/network/wwwblast/Src/wblast2.c
@@ -1,4 +1,4 @@
-/* $Id: wblast2.c,v 1.39 2006/07/05 15:59:21 jianye Exp $
+/* $Id: wblast2.c,v 1.40 2007/03/30 14:53:07 madden Exp $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
@@ -27,12 +27,15 @@
*
* Initial Creation Date: 10/23/2000
*
-* $Revision: 1.39 $
+* $Revision: 1.40 $
*
* File Description:
* BLAST 2 Sequences CGI program
*
* $Log: wblast2.c,v $
+* Revision 1.40 2007/03/30 14:53:07 madden
+* Select top strand by default
+*
* Revision 1.39 2006/07/05 15:59:21 jianye
* limit the defline length to 512
*
@@ -352,6 +355,7 @@ static void JavaScriptFun()
printf(" document.bl2.strand.options[0] = new Option('Both strands');\n");
printf(" document.bl2.strand.options[0].text='Both strands';\n");
printf(" document.bl2.strand.options[0].value=3;\n");
+ printf(" document.bl2.strand.options[0].selected=true;\n");
printf(" document.bl2.strand.options[1].text='Top strand';\n");
printf(" document.bl2.strand.options[1].value=1;\n");
printf(" document.bl2.strand.options[2].text='Reverse strand';\n");
@@ -773,7 +777,7 @@ static void Blast2SeqMainPage(CharPtr warning, CharPtr seq1, CharPtr seq2, CharP
">Mega BLAST</a>&nbsp;&nbsp;&nbsp;");
printf("Strand option <select name=\"strand\">\n");
printf("<option value=3 SELECTED> Both strands\n");
- printf("<option value=1> Forward strand\n");
+ printf("<option value=1> Top strand\n");
printf("<option value=2> Reverse strand\n");
printf("</select>&nbsp;&nbsp;&nbsp;");
#ifdef NCBI_INTERNAL_NEW_FORMATTER