src/utils/qa/qaEncodeTracks.csh 1.14

1.14 2010/06/04 22:22:59 katrina
changed max shortLabel to 17 characters
Index: src/utils/qa/qaEncodeTracks.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/qaEncodeTracks.csh,v
retrieving revision 1.13
retrieving revision 1.14
diff -b -B -U 4 -r1.13 -r1.14
--- src/utils/qa/qaEncodeTracks.csh	27 May 2010 00:25:18 -0000	1.13
+++ src/utils/qa/qaEncodeTracks.csh	4 Jun 2010 22:22:59 -0000	1.14
@@ -12,9 +12,9 @@
 ###############################################
 
 set db=''
 set tableList=''
-set maxShortLabel='16'
+set maxShortLabel='17'
 set maxLongLabel='80'
 
 if ($#argv != 2 ) then
   echo
@@ -103,10 +103,10 @@
 end
 
 # check the length of the shortLabel for each track
 echo "\n\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
-echo "*** MAX length of shortLabel should be 16 ***"
-echo "(Only prints if shortLabel is greater than 16 characters, or if"
+echo "*** MAX length of shortLabel should be 17 ***"
+echo "(Only prints if shortLabel is greater than 17 characters, or if"
 echo "it can't find a shortLabel at all)"
 foreach table ( $tables )
  set num=`tdbQuery "select shortLabel from $db where track = '$table'" \
   | sed -e 's/shortLabel //' | sed -e '/^[ ]*$/d' | awk '{print length}'`