a7ecad52c1043982f9fb7818f753fd419d587e51 hiram Mon Oct 27 12:46:14 2025 -0700 add the addQuickLift.py to the scripts directory refs #35575 diff --git src/hg/utils/automation/makefile src/hg/utils/automation/makefile index 9aec025b7d4..f92d867167b 100644 --- src/hg/utils/automation/makefile +++ src/hg/utils/automation/makefile @@ -1,110 +1,111 @@ 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 = \ + addQuickLift.py \ asmHubAllGaps.pl \ asmHubAssembly.pl \ asmHubAugustusGene.pl \ asmHubChainNetTrackDb.pl \ asmHubCpG.pl \ asmHubEnsGene.pl \ asmHubGap.pl \ asmHubGatewayPage.pl \ asmHubGc5Percent.pl \ asmHubHtml.pl \ asmHubRepeatMasker.sh \ asmHubRmsk.pl \ asmHubRmskJoinAlign.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 \ doRepeatModeler.pl \ doWindowMasker.pl \ doSimpleRepeat.pl \ doSameSpeciesLiftOver.pl \ ensVersions \ extractNestedRepeats.pl \ extractGtf.pl \ kmerPairs.pl \ kmerCollapsePairedEnds.pl \ kmerPrint.pl \ kmerPrint.py \ 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/