src/utils/qa/findNewTables.csh 1.9
1.9 2009/09/21 15:22:27 kuhn
reversed change to create_time and added GENBANK filter to grep to properly eliminate genbank tables
Index: src/utils/qa/findNewTables.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/findNewTables.csh,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 4 -r1.8 -r1.9
--- src/utils/qa/findNewTables.csh 20 Sep 2009 18:40:35 -0000 1.8
+++ src/utils/qa/findNewTables.csh 21 Sep 2009 15:22:27 -0000 1.9
@@ -40,10 +40,10 @@
echo
foreach db ( $dbs )
echo $db
- getTableStatus.csh $db hgwdev | awk -F"\t" '{print $1, $12}' | grep $yesterdate \
- | awk '{print $1}' | egrep -v "trackDb|hgFindSpec|tableDescriptions"
+ getTableStatus.csh $db hgwdev | awk -F"\t" '{print $1, $13}' | grep $yesterdate \
+ | awk '{print $1}' | egrep -v "trackDb|hgFindSpec|tableDescriptions|$GENBANK"
echo
end