src/utils/qa/findLevel.csh 1.18

1.18 2010/01/29 00:24:43 ann
added a -alpha flag to the tdbQuery call to get tracks that are restricted to alpha. added release to the output, so we can see if they are restricted to one machine or the other.
Index: src/utils/qa/findLevel.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/findLevel.csh,v
retrieving revision 1.17
retrieving revision 1.18
diff -b -B -U 4 -r1.17 -r1.18
--- src/utils/qa/findLevel.csh	6 Jan 2010 23:20:13 -0000	1.17
+++ src/utils/qa/findLevel.csh	29 Jan 2010 00:24:43 -0000	1.18
@@ -98,8 +98,10 @@
 ###########################################
 # find the trackDb.ra entry (using tdbQuery)
 
 echo " * trackDb:"
-tdbQuery "select track,priority,visibility,filePos from $db" \
- | grep -w -A3 "$tableName"
+tdbQuery -alpha "select track,priority,visibility,release,filePos from $db" \
+ | grep -w -A4 "$tableName"
+tdbQuery "select track,priority,visibility,release,filePos from $db" \
+ | grep -w -A4 "$tableName"
 
 exit 0