0e59a61d79e9b70108a03d37270dc58cdad5d324
galt
  Thu Mar 17 14:08:53 2022 -0700
oops this parameter is needed for cirm for full text indexing

diff --git src/hg/cirm/cdw/cdwUpdateIx/cdwUpdateIx src/hg/cirm/cdw/cdwUpdateIx/cdwUpdateIx
index cbd2c67..f3545fb 100755
--- src/hg/cirm/cdw/cdwUpdateIx/cdwUpdateIx
+++ src/hg/cirm/cdw/cdwUpdateIx/cdwUpdateIx
@@ -1,22 +1,22 @@
 #!/bin/tcsh
 if ("$1" != "now") then
     echo "Usage:"
     echo "cdwUpdateIx now"
     exit 1
 endif
 
 set outname = "cdw"
 
 cd /gbdb/cdw/
 cdwTextForIndex ${outname}
 if ($status) then
     echo "Error running cdwTextForIndex."
     exit 1
 endif
-ixIxx ${outname} ${outname}.ix ${outname}.ixx
+ixIxx -maxWordLength=132 ${outname} ${outname}.ix ${outname}.ixx
 if ($status) then
     echo "Error running ixIxx."
     exit 1
 endif
 
 echo "/gbdb/cdw/${outname} created and indexed."