src/utils/qa/getChainLines.csh 1.2

1.2 2009/09/23 18:01:57 ann
we do not need the dollar-sign before the variable
Index: src/utils/qa/getChainLines.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/getChainLines.csh,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 4 -r1.1 -r1.2
--- src/utils/qa/getChainLines.csh	23 Sep 2009 17:55:29 -0000	1.1
+++ src/utils/qa/getChainLines.csh	23 Sep 2009 18:01:57 -0000	1.2
@@ -61,12 +61,12 @@
 if ( "$fullLine" != "" ) then
   # extract the chainMinScore value
   set minScore=`echo $fullLine | sed -e "s/Chain minimum score: //" \
   | awk '{print $1}' | sed -e "s/,//"`
-  echo '$chainMinScore '$minScore
+  echo "chainMinScore $minScore"
   
   # extract the chainLinearGap method
   set linearGap=`echo $fullLine | awk '{print $9}' | sed "s/://" \
   | sed "s/(//" | sed "s/)//"`
-  echo '$chainLinearGap '$linearGap
+  echo "chainLinearGap $linearGap"
 
 exit