52984160ca9b0b6759a6592407ecaa9ab624c9a9 ann Fri Oct 11 16:15:01 2013 -0700 removing this script. it is a holdout from when each rr node had its own MySQL server. diff --git src/utils/qa/tableDumpDates.csh src/utils/qa/tableDumpDates.csh deleted file mode 100755 index baa4163..0000000 --- src/utils/qa/tableDumpDates.csh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/tcsh -source `which qaConfig.csh` - -############################################### -# -# 09-16-2008 -# Ann Zweig -# -# Checks to see if the tables are being dumped -# from the RR machines in a timely manner. -# -############################################### - -set counter=( 1 2 3 4 5 6 7 8 ) - -if ($#argv != 1 ) then - echo - echo " get date of latest table dumps from rr machines." - echo - echo " usage: go" - echo - exit -endif - -# run only from hgwdev -if ( "$HOST" != "hgwdev" ) then - echo "\nERROR: you must run this script on hgwdev!\n" - exit 1 -endif - -foreach i ( $counter ) - ls -lt /cluster/data/genbank/var/tblstats/hgw[$i] | head -n2 | egrep -v total \ - | awk '{print $9}' -end - -