75778c0fae9df5a460b36ab20cfafd639574534d
hiram
  Wed Feb 26 14:45:15 2020 -0800
need to deliver kmer functions for doTandenDups script refs #23891

diff --git src/hg/utils/automation/makefile src/hg/utils/automation/makefile
index 36a8c81..bd81a53 100644
--- src/hg/utils/automation/makefile
+++ src/hg/utils/automation/makefile
@@ -1,103 +1,106 @@
 kentSrc = ../../..
 # Build all directories in utils
 
 include ../../../inc/common.mk
 
 PIPE_LIB = \
 	Encode.pm \
 	HgAutomate.pm \
 	HgDb.pm \
 	RAFile.pm \
 	SafePipe.pm
 
 LIB_FILES = \
 	${PIPE_LIB} \
 	EnsGeneAutomate.pm \
 	HgRemoteScript.pm \
 	HgStepManager.pm \
 	AsmHub.pm
 
 SCRIPT_FILES = \
 	asmHubAllGaps.pl \
 	asmHubAssembly.pl \
 	asmHubAugustusGene.pl \
 	asmHubCpG.pl \
 	asmHubEnsGene.pl \
 	asmHubGap.pl \
 	asmHubGatewayPage.pl \
 	asmHubGc5Percent.pl \
 	asmHubHtml.pl \
 	asmHubRepeatMasker.sh \
 	asmHubRmsk.pl \
 	asmHubSimpleRepeat.pl \
 	asmHubTrackDb.sh \
 	asmHubWindowMasker.pl \
 	blastz-make-joblist \
 	blastz-normalizeLav \
 	blastz-run-ucsc \
 	doAssemblyHub.pl \
 	doAugustus.pl \
 	doBlastzChainNet.pl \
 	doCpgIslands.pl \
 	doEnsGeneUpdate.pl \
 	doGenscan.pl \
 	doHgNearBlastp.pl \
 	doIdKeys.pl \
 	ensemblInfo.pl \
 	synBlastp.csh \
 	doRecipBest.pl \
 	doRepeatMasker.pl \
 	doWindowMasker.pl \
 	doSimpleRepeat.pl \
 	doSameSpeciesLiftOver.pl \
 	ensVersions \
 	extractNestedRepeats.pl \
 	extractGtf.pl \
+	kmerPairs.pl \
+	kmerCollapsePairedEnds.pl \
+	kmerPrint.pl \
 	liftRMAlign.pl \
 	makeDownloads.pl \
 	makeGenomeDb.pl \
 	makePushQSql.pl \
 	monthlyUpdateIgtc.csh \
 	simplePartition.pl \
 	partitionSequence.pl \
 	updateIgtc.pl \
 	unigene.csh
 
 all: mkDir libFiles $(SCRIPT_FILES:%=%.all)
 
 %.all:
 	rm -f ${SCRIPTS}/$*
 	echo cp -p $* ${SCRIPTS}
 	cp -p $* ${SCRIPTS}
 	chmod +x ${SCRIPTS}/$*
 
 mkDir:
 	${MKDIR} ${SCRIPTS}
 
 libFiles: mkDir $(LIB_FILES:%=%.libFile)
 
 %.libFile:
 	rm -f ${SCRIPTS}/$*
 	echo cp -p $* ${SCRIPTS}
 	cp -p $* ${SCRIPTS}
 	chmod 664 ${SCRIPTS}/$*
 
 alpha: all
 
 development:
 	@${MAKE} --no-print-directory SCRIPTS=${PIPELINE_PATH}/encpipeline_${USER}/bin/scripts pipelibs
 
 beta:
 	@${MAKE} --no-print-directory SCRIPTS=${PIPELINE_PATH}/encpipeline_beta/bin/scripts pipelibs 
 
 prod:
 	@${MAKE} --no-print-directory SCRIPTS=${PIPELINE_PATH}/encpipeline_prod/bin/scripts pipelibs 
 
 pipelibs: ${PIPE_LIB:%=${SCRIPTS}/%}
 
 ${SCRIPTS}/% : %
 	perl -c $< 2>&1
 	cp -p $< $@.tmp
 	mv -f $@.tmp $@
 clean:
 	@echo nothing to clean in src/hg/utils/automation/