src/utils/qa/dbUpdateTimes.csh 1.4
1.4 2009/03/24 19:10:44 rhead
Reverting to -h hgwbeta.
Index: src/utils/qa/dbUpdateTimes.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/dbUpdateTimes.csh,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 4 -r1.3 -r1.4
--- src/utils/qa/dbUpdateTimes.csh 21 Mar 2009 00:29:25 -0000 1.3
+++ src/utils/qa/dbUpdateTimes.csh 24 Mar 2009 19:10:44 -0000 1.4
@@ -33,13 +33,13 @@
echo $databases > dbs
if ($databases == assemblies) then
- hgsql -N -h hgofbeta -e "SELECT name FROM dbDb" hgcentralbeta > dbs
+ hgsql -N -h hgwbeta -e "SELECT name FROM dbDb" hgcentralbeta > dbs
endif
if ($databases == all) then
- hgsql -N -h hgofbeta -e "SHOW DATABASES" hgcentralbeta > dbs
+ hgsql -N -h hgwbeta -e "SHOW DATABASES" hgcentralbeta > dbs
endif
echo
echo "these tables from beta do not match on dev:"
@@ -85,9 +85,9 @@
# add genbank list to chrN_strip list and sort
cat $db.strip genbank.local | sort > $db.genbankPlus
# get list of tables from beta, remove trackDb*
- hgsql -N -h hgofbeta -e "SHOW TABLES" $db | sort | grep -v "trackDb" \
+ hgsql -N -h hgwbeta -e "SHOW TABLES" $db | sort | grep -v "trackDb" \
> $db.tables.beta
rm -f $db.remove
foreach table ($ignore `cat $db.notChrN.exclude`)
@@ -117,9 +117,9 @@
rm -f $db.outOfSync
foreach table (`cat $db.tables`)
set dev=`hgsql -N -e 'SHOW TABLE STATUS LIKE "'$table'"' $db \
| awk '{print $13, $14}'`
- set beta=`hgsql -h hgofbeta -N -e 'SHOW TABLE STATUS LIKE "'$table'"' $db \
+ set beta=`hgsql -h hgwbeta -N -e 'SHOW TABLE STATUS LIKE "'$table'"' $db \
| awk '{print $13, $14}'`
if ("$beta" != "$dev") then
echo $table >> $db.outOfSync