f6ef041a6fa43e86f7b0c17f79371cb0fdeeaf8f kent Fri Dec 18 16:28:29 2020 -0800 Adding utility to help pull out genes positions from a bunch of transcripts and a gene/transcript table. diff --git src/hg/txGraph/makefile src/hg/txGraph/makefile index be860af..8dbb7f7 100644 --- src/hg/txGraph/makefile +++ src/hg/txGraph/makefile @@ -15,30 +15,31 @@ DIRS = \ agxToTxg \ bedToTxEdges \ txAbFragFind \ txBedToGraph \ txOrtho \ txPslFilter \ txPslToBed \ txReadRa \ txWalk \ txgAddEvidence \ txgAnalyze \ txgGoodEdges \ txgToAgx \ + txgToGeneBed \ txgToXml \ txgTrim clean: @for D in ${DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} clean ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done compile: @for D in ${DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} compile ) ;\