src/utils/qa/getOrderKey.csh 1.5
1.5 2009/04/11 00:37:04 rhead
Sourced new qaConfig file at the top. Changed -h hgwbeta lines to look for sql host stored in a variable, specified in the new qaConfig file.
Index: src/utils/qa/getOrderKey.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/getOrderKey.csh,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/qa/getOrderKey.csh 24 Mar 2009 19:10:44 -0000 1.4
+++ src/utils/qa/getOrderKey.csh 11 Apr 2009 00:37:04 -0000 1.5
@@ -1,76 +1,77 @@
#!/bin/tcsh
+source `which qaConfig.csh`
################################
#
# 06-26-07
# Robert Kuhn
#
# gets list of orderKeys from two machines between two limits
#
################################
set lowerLimit=0
set upperLimit=0
if ( $#argv != 2 ) then
echo
echo " gets list of orderKeys from all machines between two limits."
echo
echo " usage: lowerLimit upperLimit "
echo
exit
else
set lowerLimit=$argv[1]
set upperLimit=$argv[2]
endif
if ( "$HOST" != "hgwdev" ) then
echo "\n error: you must run this script on dev!\n"
exit 1
endif
# get list of all dbs in range at all three levels
set dev=`hgsql -N -e "SELECT name FROM dbDb \
WHERE orderKey >= $lowerLimit and orderKey <= $upperLimit" \
hgcentraltest`
-set beta=`hgsql -N -h hgwbeta -e "SELECT name FROM dbDb \
+set beta=`hgsql -N -h $sqlbeta -e "SELECT name FROM dbDb \
WHERE orderKey >= $lowerLimit and orderKey <= $upperLimit" \
hgcentralbeta`
set rr=`hgsql -N -h genome-centdb -e "SELECT name FROM dbDb \
WHERE orderKey >= $lowerLimit and orderKey <= $upperLimit" \
hgcentral`
set all=`echo $dev $beta $rr | sed -e "s/ /\n/g" | sort -u`
# get orderKey value at all three levels
rm -f orderKeyOutfile
echo
echo "db dev bet rr" | gawk '{ printf("%-8s %3s %3s %3s \n", \
$1, $2, $3, $4) }'
echo "------- --- --- ---" | gawk '{ printf("%-8s %3s %3s %3s \n", \
$1, $2, $3, $4) }'
foreach db ( $all )
set dev=0
set beta=0
set rr=0
set dev=`hgsql -N -e 'SELECT orderKey FROM dbDb \
WHERE name = "'$db'"' hgcentraltest`
- set beta=`hgsql -N -h hgwbeta -e 'SELECT orderKey FROM dbDb \
+ set beta=`hgsql -N -h $sqlbeta -e 'SELECT orderKey FROM dbDb \
WHERE name = "'$db'"' hgcentralbeta`
set rr=`hgsql -N -h genome-centdb -e 'SELECT orderKey FROM dbDb \
WHERE name = "'$db'"' hgcentral`
echo "$db $dev $beta $rr" | gawk '{ printf("%-8s %3s %3s %3s \n", \
$1, $2, $3, $4) }' >> orderKeyOutfile
end
if ( -e orderKeyOutfile ) then
sort -k2 -n orderKeyOutfile
else
echo "none found"
endif
echo
rm -f orderKeyOutfile