src/utils/qa/chain.csh 1.26

1.26 2010/02/25 20:10:54 kuhn
removed a print of a variable not used
Index: src/utils/qa/chain.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/chain.csh,v
retrieving revision 1.25
retrieving revision 1.26
diff -b -B -U 4 -r1.25 -r1.26
--- src/utils/qa/chain.csh	23 Sep 2009 18:07:56 -0000	1.25
+++ src/utils/qa/chain.csh	25 Feb 2010 20:10:54 -0000	1.26
@@ -264,17 +264,18 @@
   else
     echo 'all qStrands are either "+" or "-"'
     echo
   endif
+  # header
   echo "posStrand negStrand" \
     | gawk '{ printf("%8s %8s \n", $1, $2) }'
   echo "--------- ---------" \
     | gawk '{ printf("%8s %8s \n", $1, $2) }'
   set posStrands = `hgsql -N -e "SELECT COUNT(*) \
     FROM chain${Org} WHERE qStrand LIKE '+'" $db`
   set negStrands = `hgsql -N -e "SELECT COUNT(*) \
     FROM chain${Org} WHERE qStrand LIKE '-'" $db`
-  echo $chrom $posStrands $negStrands \
+  echo $posStrands $negStrands \
     | gawk '{ printf("%8s %8s \n", $1, $2) }'
 else
   echo "chrom posStrand negStrand" \
       | gawk '{ printf("%-'${length}'s %8s %8s \n", $1, $2, $3) }'