5adcf6bc2904690de7b7b30a83ec8a7a0996abe9
galt
  Tue Aug 21 00:01:25 2018 -0700
changing cse subdomain to soe

diff --git src/utils/qa/compareWholeTable.csh src/utils/qa/compareWholeTable.csh
index b7f0ae4..0c545e8 100755
--- src/utils/qa/compareWholeTable.csh
+++ src/utils/qa/compareWholeTable.csh
@@ -65,32 +65,32 @@
   set host2="-h $sqlbeta"
 endif
  
 # set flags for RR queries
 if ( $mach1 != "hgwdev" &&  $mach1 != "hgwbeta" ) then
   set rr1="true"
 endif
 
 if ( $mach2 != "hgwdev" &&  $mach2 != "hgwbeta" ) then
   set rr2="true"
 endif
 
 set outfile1=$db.$table.$mach1
 set outfile2=$db.$table.$mach2
 if ( $rr1 == "true" ) then
-  nice mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A \
+  nice mysql --user=genome --host=genome-mysql.soe.ucsc.edu -A \
     -N -e "SELECT * FROM $table" $db | sort > $outfile1
 else
   nice hgsql $host1 -N -e "SELECT * FROM $table" $db | sort > $outfile1
 endif
 
 if ( $rr2 == "true" ) then
-  nice mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A \
+  nice mysql --user=genome --host=genome-mysql.soe.ucsc.edu -A \
     -N -e "SELECT * FROM $table" $db | sort > $outfile2
 else
   nice hgsql $host2 -N -e "SELECT * FROM $table" $db | sort > $outfile2
 endif
 
 commTrio.csh $outfile1 $outfile2 | grep -v "output files" \
   | sed -e "s/$outfile1.$outfile2.Only/$outfile1.$mach2.Only/"
 mv $outfile1.$outfile2.Only $outfile1.$mach2.Only