772a117bb6e4769f4c3c1b6eca99cf9c78e31d19
galt
  Mon Aug 27 15:24:50 2018 -0700
changing the last dregs of cse to soe

diff --git src/utils/qa/checkGbdbDiffs.csh src/utils/qa/checkGbdbDiffs.csh
index fd868b5..db3f2ca 100755
--- src/utils/qa/checkGbdbDiffs.csh
+++ src/utils/qa/checkGbdbDiffs.csh
@@ -26,31 +26,31 @@
   exit
 endif
 
 set mode=$argv[1]
 
 if ($mode != "go" && $mode != "override") then
   echo '\n  the only way to run this is to use "go" or "override" \
        on the command line.'
   echo "\n${0}:"
   $0
   exit 0
 endif
 
 set todayDate=`date +%Y%m%d`
 set outpath="/usr/local/apache/htdocs-genecats/qa/test-results/gbdb"
-set urlpath="http://genecats.cse.ucsc.edu/qa/test-results/gbdb"
+set urlpath="http://genecats.soe.ucsc.edu/qa/test-results/gbdb"
 
 # get the two files to compare or create if none for today
 if ($mode == "override" ) then
   rm -f $outpath/gbdb.all.$todayDate
 endif
 
 if (! -e $outpath/gbdb.all.$todayDate) then
   ssh hgwbeta find /gbdb -type f -print | sort > $outpath/gbdb.all.$todayDate
 endif
 
 set twoFiles=`ls -ltr $outpath | grep all | tail -2 | awk '{print $NF}'`
 set file1=`echo $twoFiles | awk '{print $1}'`
 set file2=`echo $twoFiles | awk '{print $2}'`
 echo "files: $file1 $file2\n" > $outpath/gbdbDiff.$todayDate
 diff $outpath/$file1 $outpath/$file2 >> $outpath/gbdbDiff.$todayDate