b546eecd8adb64a42547ccd39ae436b09d0bd167
angie
  Fri Dec 9 15:44:46 2016 -0800
Use cgi-bin by default, not cgi-bin-angie!  Thanks Christopher Lee.  refs #12216

diff --git src/hg/utils/vai.pl src/hg/utils/vai.pl
index e9cb29c..cc83e85 100755
--- src/hg/utils/vai.pl
+++ src/hg/utils/vai.pl
@@ -4,31 +4,31 @@
 # edit ~/kent/src/hg/utils/vai.pl instead.
 
 # Copyright (C) 2016 The Regents of the University of California
 # See README in this or parent directory for licensing information.
 
 use Cwd;
 use File::Basename;
 use Getopt::Long;
 use warnings;
 use strict;
 
 # Constants
 my $doQueryParam = "hgva_startQuery";
 
 # Command line option variables with default values
-my $hgVai = '/usr/local/apache/cgi-bin-angie/hgVai';
+my $hgVai = '/usr/local/apache/cgi-bin/hgVai';
 my $position = '';
 my $rsId = 0;
 my $debug = '';
 
 # GetOpt option configuration for options that don't directly map to hgva_... CGI params,
 # and references to the corresponding global variables or handlers:
 my %optionConfig = ('hgVai=s' => \$hgVai,
                     'position=s' => \$position,
                     'rsId' => \$rsId,
                     'dry-run|n|debug' => \$debug,
                     'help|h' => sub { usage(0) },
                    );
 
 # Command line options that map directly to hgva_... CGI params, with their default values
 # and descriptions