47a8767ba69ad593d45adb123c189cee3a0f5f85 markd Thu Aug 27 20:23:01 2020 -0700 added -partSize option to bedPartition to allow grouping multiple partitions into a range diff --git src/hg/utils/bedPartition/tests/makefile src/hg/utils/bedPartition/tests/makefile index 2ac6866..d153764 100644 --- src/hg/utils/bedPartition/tests/makefile +++ src/hg/utils/bedPartition/tests/makefile @@ -1,16 +1,22 @@ kentSrc = ../../../.. include ${kentSrc}/inc/common.mk BPART = ${DESTBINDIR}/bedPartition DIFF = diff -test: test1 +test: test1 test2 test1: @${MKDIR} -p output ${BPART} -parallel=2 input/mrna1.bed output/$@.ranges.bed ${DIFF} expected/$@.ranges.bed output/$@.ranges.bed +# merge partitions +test2: + @${MKDIR} -p output + ${BPART} -parallel=2 -partSize=2 input/mrna1.bed output/$@.ranges.bed + ${DIFF} expected/$@.ranges.bed output/$@.ranges.bed + clean: rm -rf output