06d5e84beb82bba46586825f5f9447d5b570c132
hiram
  Thu Jul 28 12:38:23 2022 -0700
invertebrate genbank assembly can have as few as 11 tracks refs #29545

diff --git src/hg/makeDb/doc/asmHubs/verifyOnDownload.sh src/hg/makeDb/doc/asmHubs/verifyOnDownload.sh
index 50eab40..d338c4c 100755
--- src/hg/makeDb/doc/asmHubs/verifyOnDownload.sh
+++ src/hg/makeDb/doc/asmHubs/verifyOnDownload.sh
@@ -10,31 +10,33 @@
   exit 255
 fi
 
 #  printf "usage: ./verifyOnDownload.sh <GCF/012/345/678/GCF_012345678.nn>\n" 1>&2
 #	${toolsDir}/mkSendList.pl ${orderList} | while read F; do \
 #	  ${toolsDir}/verifyOnDownload.sh $$F < /dev/null; done
 
 export host=$1
 export orderList=$2
 export successCount=0
 export doneCount=0
 export fileName=`basename $orderList`
 export subset=${fileName%.orderList.tsv}
 
 export minTrackCount=12
-if [ "${subset}" == "viral" ]; then
+if [ "${subset}" == "invertebrate" ]; then
+  minTrackCount=10
+elif [ "${subset}" == "viral" ]; then
   minTrackCount=7
 fi
 
 # printf "# DBG subset '%s' min: %d\n" "${subset}" "${minTrackCount}" 1>&2
 
 export dbHost="localhost"
 export hubSource="hgdownload-test.gi.ucsc.edu"
 if [ "${host}" = "apibeta.soe.ucsc.edu" ]; then
   hubSource="hgdownload.soe.ucsc.edu"
 fi
 
 export totalTrackCount=0
 
 for dirPath in `~/kent/src/hg/makeDb/doc/asmHubs/mkSendList.pl "${orderList}"`
 do