9b033f6d0e8b14a79908339c61c7153e7004f19b markd Thu Sep 8 12:27:11 2022 -0700 change bedToBigBed to actually describe the use of chromAlias diff --git src/utils/bedToBigBed/tests/makefile src/utils/bedToBigBed/tests/makefile index 2384bc4..8747f8f 100644 --- src/utils/bedToBigBed/tests/makefile +++ src/utils/bedToBigBed/tests/makefile @@ -1,35 +1,35 @@ kentSrc = ../../.. A = bedToBigBed include ../../../inc/common.mk test: testRgb testNotSorted testMultiInsAtEnd itemsRgb tabSep testBadChrom1 testBbSize1 testBbSize2 testBadChrom1: outputDir -${BINDIR}/${A} input/colored.genbank.bed input/human.chrom.sizes.txt output/noFile.chromAlias.bb -tab -type=bed12+13 -as=input/bigGenePred.as 2> output/testBadChrom1.err diff expected/testBadChrom1.err output/testBadChrom1.err output/human.chromAlias.bb: outputDir ${BINDIR}/${A} input/human.chromAlias.bed input/human.chrom.sizes.txt output/human.chromAlias.bb -tab -type=bed3+4 -as=input/chromAliasIndex.as -extraIndex=genbank,ensembl,ncbi,ucsc testBbSize1: outputDir output/human.chromAlias.bb - ${BINDIR}/${A} input/colored.genbank.bed output/human.chromAlias.bb output/colored.genbank.bb -sizesIsBb -tab -type=bed12+13 -as=input/bigGenePred.as + ${BINDIR}/${A} input/colored.genbank.bed output/human.chromAlias.bb output/colored.genbank.bb -sizesIsChromAliasBb -tab -type=bed12+13 -as=input/bigGenePred.as bigBedToBed output/colored.genbank.bb output/colored.genbank.bed diff input/colored.genbank.bed output/colored.genbank.bed testBbSize2: outputDir output/human.chromAlias.bb - -${BINDIR}/${A} input/mixed.bed output/human.chromAlias.bb output/noFile.chromAlias.bb -sizesIsBb -tab -type=bed12+13 -as=input/bigGenePred.as 2> output/mixed.err + -${BINDIR}/${A} input/mixed.bed output/human.chromAlias.bb output/noFile.chromAlias.bb -sizesIsChromAliasBb -tab -type=bed12+13 -as=input/bigGenePred.as 2> output/mixed.err diff expected/mixed.err output/mixed.err testRgb: outputDir ${BINDIR}/${A} -type=bed9 -as=input/itemRgb.as input/itemRgb.bed input/chrom.sizes output/itemRgb.bb 2> /dev/null bigBedToBed output/itemRgb.bb output/test_itemRgb.bed diff input/itemRgb.bed output/test_itemRgb.bed testNotSorted: outputDir -${BINDIR}/${A} -type=bed12 input/notSorted.bed input/notSorted.chrom.sizes /dev/null 2> output/notSorted.err || true diff expected/notSorted.err output/notSorted.err testMultiInsAtEnd: outputDir ${BINDIR}/${A} input/multiInsAtEnd.bed input/chrom.sizes output/multiInsAtEnd.bb 2> /dev/null bigBedToBed output/multiInsAtEnd.bb output/test_multiInsAtEnd.bed diff -w input/multiInsAtEnd.bed output/test_multiInsAtEnd.bed