/usr/share/bedtools/test/merge/test-merge.sh is in bedtools-test 2.25.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 | #!/bin/bash
BT=${BT-../../bin/bedtools}
check()
{
if diff $1 $2; then
echo ok
return 1
else
echo fail
return 0
fi
}
# cat a.bed
# chr1 10 20
# chr1 30 40
# chr1 40 50
# chr1 45 100
###########################################################
# Test a basic merge; one interval should be un-merged,
# the other two should be merged.
###########################################################
echo " merge.t1...\c"
echo \
"chr1 10 20
chr1 30 100" > exp
$BT merge -i a.bed > obs
check obs exp
rm obs exp
###########################################################
# Test that -n option is shown as deperecated
###########################################################
echo " merge.t2...\c"
echo "***** ERROR: -n option is deprecated. Please see the documentation for the -c and -o column operation options. *****" > exp
$BT merge -i a.bed -n 2>&1 > /dev/null | head -2 | tail -1 > obs
check obs exp
rm obs exp
###########################################################
# Test the counting of merged intervals. (-n)
###########################################################
echo " merge.t3...\c"
echo \
"chr1 10 20 1
chr1 30 100 3" > exp
$BT merge -i a.bed -c 1 -o count > obs
check obs exp
rm obs exp
###########################################################
# Test that -nms option is deprecated
###########################################################
echo " merge.t4...\c"
echo "***** ERROR: -nms option is deprecated. Please see the documentation for the -c and -o column operation options. *****" > exp
$BT merge -i a.bed -nms 2>&1 > /dev/null | head -2 | tail -1 > obs
check obs exp
rm obs exp
###########################################################
# Test the listing of names from merged intervals.
###########################################################
echo " merge.t5...\c"
echo \
"chr1 10 20 a1
chr1 30 100 a2,a3,a4" > exp
$BT merge -i a.names.bed -c 4 -o collapse > obs
check obs exp
rm obs exp
###########################################################
# collapsed list of the names, and sum of the scores
###########################################################
echo " merge.t6...\c"
echo \
"chr1 10 20 a1 1
chr1 30 100 a2,a3,a4 9
chr2 10 20 a1 5
chr2 30 40 a2 6
chr2 42 100 a3,a4 15" > exp
$BT merge -i a.full.bed -c 4,5 -o collapse,sum > obs
check obs exp
rm obs exp
###########################################################
# count intervals and sum of scores
###########################################################
echo " merge.t7...\c"
echo \
"chr1 10 20 1 1
chr1 30 100 3 9
chr2 10 20 1 5
chr2 30 40 1 6
chr2 42 100 2 15" > exp
$BT merge -i a.full.bed -c 5 -o count,sum> obs
check obs exp
rm obs exp
###########################################################
# count, collapsed names, and sum of scores
###########################################################
echo " merge.t8...\c"
echo \
"chr1 10 20 a1 1 1
chr1 30 100 a2,a3,a4 9 3
chr2 10 20 a1 5 1
chr2 30 40 a2 6 1
chr2 42 100 a3,a4 15 2" > exp
$BT merge -i a.full.bed -c 4,5,4 -o collapse,sum,count > obs
check obs exp
rm obs exp
###########################################################
# stranded merge, show sign, collapsed names, sum of
# scores, and count
###########################################################
echo " merge.t9...\c"
echo \
"chr1 10 20 + a1 1 1
chr1 30 40 + a2 2 1
chr1 40 50 - a3 3 1
chr1 45 100 + a4 4 1
chr2 10 20 + a1 5 1
chr2 30 40 + a2 6 1
chr2 42 50 + a3 7 1
chr2 45 100 - a4 8 1" > exp
$BT merge -i a.full.bed -s -c 4,5,6 -o collapse,sum,count > obs
check obs exp
rm obs exp
###########################################################
# Test the use of a custom delimiter for -delim option
###########################################################
echo " merge.t10...\c"
echo \
"chr1 10 20 a1
chr1 30 100 a2|a3|a4" > exp
$BT merge -i a.names.bed -delim "|" -c 4 -o collapse > obs
check obs exp
rm obs exp
###########################################################
# Test that stranded merge not allowed with VCF
###########################################################
echo " merge.t11...\c"
echo "***** ERROR: stranded merge not supported for VCF files. *****" >exp
$BT merge -i testA.vcf -s 2>&1 > /dev/null | head -2 | tail -1 > obs
check exp obs
rm obs exp
###########################################################
# Test that column ops not allowed with BAM if col greater
# than 11.
#
# EDIT: This test has been moved to test #35, after the
# other bam column tests.
###########################################################
echo " merge.t12...\c"
#echo "***** ERROR: Requested column 12, but database file fullFields.bam only has fields 1 - 11." > exp
#$BT merge -i fullFields.bam -c 12 -o sum 2>&1 > /dev/null | head -3 | tail -1 > obs
#check exp obs
#rm obs exp
echo ok
###########################################################
# Test that VCF input gives BED3 output
###########################################################
echo " merge.t13...\c"
echo \
"chr1 30859 30860
chr1 69269 69270
chr1 69510 69511
chr1 874815 874816
chr1 879675 879676
chr1 935491 935492
chr1 1334051 1334057
chr1 31896607 31896608" > exp
$BT merge -i testA.vcf > obs
check exp obs
rm obs exp
###########################################################
# Test that GFF input gives BED3 output
###########################################################
echo " merge.t14...\c"
echo \
"chr22 9999999 10001000
chr22 10009999 10010100
chr22 10019999 10025000" > exp
$BT merge -i a.gff > obs
check exp obs
rm obs exp
###########################################################
# Test that stranded merge where some records have
# unknown strand works correctly
###########################################################
echo " merge.t15...\c"
echo \
"chr1 10 80 +
chr1 20 90 -
chr2 20 60 +
chr2 25 80 -" > exp
$BT merge -i mixedStrands.bed -s > obs
check exp obs
rm obs exp
###########################################################
# Test that stranded merge with unknown records works
# correctly, forward strand only
###########################################################
echo " merge.t16...\c"
echo \
"chr1 10 80 +
chr2 20 60 +" > exp
$BT merge -i mixedStrands.bed -S + > obs
check exp obs
rm obs exp
###########################################################
# Test that stranded merge with unknown records works
# correctly, reverse strand only
###########################################################
echo " merge.t17...\c"
echo \
"chr1 20 90 -
chr2 25 80 -" > exp
$BT merge -i mixedStrands.bed -S - > obs
check exp obs
rm obs exp
###########################################################
# Test that merge with specified strand does not allowed
# other characters besides + or -.
###########################################################
echo " merge.t18...\c"
echo "***** ERROR: -S option must be followed by + or -. *****" > exp
$BT merge -i mixedStrands.bed -S . -c 6 -o distinct 2>&1 > /dev/null | head -2 | tail -1 >obs
check exp obs
rm obs exp
###########################################################
# Test that sort order is enforced
###########################################################
echo " merge.t19...\c"
echo \
"Error: Sorted input specified, but the file unsorted.bed has the following out of order record
chr1 9 30 2" > exp
$BT merge -i unsorted.bed 2>&1 > /dev/null | head -2 >obs
check exp obs
rm obs exp
###########################################################
# Test that chrom change is handled correctly
###########################################################
echo " merge.t20...\c"
echo \
"chr1 9 30
chr1 100 110
chr2 11 20" > exp
$BT merge -i b.bed > obs
check exp obs
rm exp obs
###########################################################
# Test that a merged BAM file only gives BED3 output
###########################################################
echo " merge.t21...\c"
echo \
"chr1 10 20
chr1 30 100
chr2 10 20
chr2 30 40
chr2 42 100" > exp
$BT merge -i a.full.bed > obs
check exp obs
rm exp obs
###########################################################
# Test that precision is correct
###########################################################
echo " merge.t22...\c"
echo \
"chr2L 1 54 0.05
chr2L 65 128 0.33
chr2L 129 180 0.04
chr2L 193 317 -0.125
chr2L 321 375 -0.07
chr2L 385 448 -0.11
chr2L 449 502 0.4
chr2L 513 570 0.48
chr2L 577 635 -0.24" > exp
$BT merge -i precisionTest.bed -c 5 -o mean > obs
check obs exp
rm obs exp
###########################################################
# Test that numeric ops on non-numeric columns
# are allowed, but produce a warning and null
# value result.
###########################################################
echo " merge.t23a...\c"
echo \
"chr1 10 20 .
chr1 30 100 ." > expOut
$BT merge -i a.names.bed -c 4 -o sum 2>&1 > obsOut | cat - > obsErr
check obsOut expOut
rm expOut obsOut
###########################################################
# Just check that the warning message from the previous
# test was correct.
###########################################################
echo " merge.t23b...\c"
echo \
" ***** WARNING: Non numeric value a1 in 4.
***** WARNING: Non numeric value a4 in 4." > expErr
check obsErr expErr
rm obsErr expErr
###########################################################
#
# Test that we can get fields from a BAM file
#
###########################################################
###########################################################
# Test bam column 1
###########################################################
echo " merge.t24...\c"
$BT merge -i fullFields.bam -c 1 -o collapse > obs
check obs bamCol1Collapse.txt
rm obs
###########################################################
# Test bam column 2 gives an error
###########################################################
echo " merge.t25...\c"
echo \
"***** ERROR: Requested column 2 of a BAM file, which is the Flags field." > exp
$BT merge -i fullFields.bam -c 2 -o collapse 2>&1 > /dev/null | head -3 | tail -1 > obs
check exp obs
rm obs exp
###########################################################
# Test bam column 3
###########################################################
echo " merge.t26...\c"
$BT merge -i fullFields.bam -c 3 -o collapse > obs
check obs bamCol3Collapse.txt
rm obs
###########################################################
# Test bam column 4
###########################################################
echo " merge.t27...\c"
$BT merge -i fullFields.bam -c 4 -o mean > obs
check obs bamCol4Mean.txt
rm obs
###########################################################
# Test bam column 5
###########################################################
echo " merge.t28...\c"
$BT merge -i fullFields.bam -c 5 -o mean > obs
check obs bamCol5Mean.txt
rm obs
###########################################################
# Test bam column 6
###########################################################
echo " merge.t29...\c"
$BT merge -i fullFields.bam -c 6 -o collapse > obs
check obs bamCol6Collapse.txt
rm obs
###########################################################
# Test bam column 7
###########################################################
echo " merge.t30...\c"
$BT merge -i fullFields.bam -c 7 -o collapse > obs
check obs bamCol7Collapse.txt
rm obs
###########################################################
# Test bam column 8
###########################################################
echo " merge.t31...\c"
$BT merge -i fullFields.bam -c 8 -o mean > obs
check obs bamCol8Mean.txt
rm obs
###########################################################
# Test bam column 9
###########################################################
echo " merge.t32...\c"
$BT merge -i fullFields.bam -c 9 -o mean > obs
check obs bamCol9Mean.txt
rm obs
###########################################################
# Test bam column 10
###########################################################
echo " merge.t33...\c"
$BT merge -i fullFields.bam -c 10 -o collapse > obs
check obs bamCol10Collapse.txt
rm obs
###########################################################
# Test bam column 11
###########################################################
echo " merge.t34...\c"
$BT merge -i fullFields.bam -c 11 -o collapse > obs
check obs bamCol11Collapse.txt
rm obs
###########################################################
# Test that column ops not allowed with BAM if col greater
# than 11.
###########################################################
echo " merge.t35...\c"
echo "***** ERROR: Requested column 12, but database file fullFields.bam only has fields 1 - 11." > exp
$BT merge -i fullFields.bam -c 12 -o sum 2>&1 > /dev/null | head -3 | tail -1 > obs
check exp obs
rm obs exp
###########################################################
# Test col ops behavior on bam file for missing values,
# i.e, getting the mate reference when there is no mate.
# Be sure null value is printed
###########################################################
echo " merge.t36...\c"
echo \
"chr1 10 20 .
chr1 30 100 .,.,.
chr2 10 20 .
chr2 30 40 .
chr2 42 100 .,." >exp
$BT merge -i a.full.bam -c 7 -o collapse > obs
check exp obs
rm obs exp
###########################################################
#
# Test new -iobuf option
#
###########################################################
###########################################################
# Test -iobuf expects an argument
###########################################################
echo " merge.t37...\c"
echo "***** ERROR: -iobuf option given, but size of input buffer not specified. *****" >exp
$BT merge -i a.bed -iobuf 2>&1 > /dev/null | head -2 | tail -1 > obs
check obs exp
rm obs exp
###########################################################
# Test -iobuf allows only suffixes K/M/G
###########################################################
echo " merge.t38...\c"
echo \
"***** ERROR: Unrecognized memory buffer size suffix 'L' given. *****" > exp
$BT merge -i a.bed -iobuf 20L 2>&1 > /dev/null | head -2 | tail -1 > obs
check obs exp
rm obs exp
###########################################################
# Test -iobuf doesn't allow a buffer size below 8 bytes.
###########################################################
echo " merge.t39...\c"
echo \
"***** ERROR: specified buffer size is too small. *****" > exp
$BT merge -i a.bed -iobuf 7 2>&1 > /dev/null | head -2 | tail -1 > obs
check exp obs
rm exp obs
###########################################################
# Test -iobuf doesn't allow non-numeric arguments
###########################################################
echo " merge.t40...\c"
echo \
"***** ERROR: argument passed to -iobuf is not numeric. *****" > exp
$BT merge -i a.bed -iobuf beerM 2>&1 > /dev/null | head -2 | tail -1 > obs
check exp obs
rm exp obs
###########################################################
# Test -iobuf allows correct argument with suffix
###########################################################
echo " merge.t41...\c"
echo \
"chr1 10 20
chr1 30 100" > exp
$BT merge -i a.bed -iobuf 128M > obs
check exp obs
rm exp obs
###########################################################
# Test -iobuf allows correct argument without suffix
###########################################################
echo " merge.t42...\c"
echo \
"chr1 10 20
chr1 30 100" > exp
$BT merge -i a.bed -iobuf 8192 > obs
check exp obs
rm exp obs
###########################################################
# Test that scientific notation is allowed for coordinates
###########################################################
echo " merge.t43...\c"
echo \
"chr1 800 830" > exp
$BT merge -i expFormat.bed > obs
check exp obs
rm obs exp
###########################################################
# Test that struct vars in VCF get correct length
###########################################################
echo " merge.t44...\c"
echo \
"19 252805 257416
19 260364 261044
19 265133 265691
19 265985 266386" > exp
$BT merge -i vcfSVtest.vcf > obs
check exp obs
rm obs exp
###########################################################
# Test that stdin is used by default
###########################################################
echo " merge.t45...\c"
echo \
"chr1 10 20
chr1 30 100" >exp
cat a.bed | $BT merge > obs
check exp obs
rm obs exp
###########################################################
# Test that precision default is high enough for
# formatting not to give scientific notation
###########################################################
echo " merge.t46...\c"
echo \
"chr1 5333587 5344172 5344172
chr1 5481008 5484749 16454247
chr1 6763278 6766882 6766882" > exp
$BT merge -i precisionTest2.bed -c 8 -o sum> obs
check exp obs
rm obs exp
###########################################################
# Test that user can specify a lower precision
###########################################################
echo " merge.t47...\c"
echo \
"chr1 5333587 5344172 5.3442e+06
chr1 5481008 5484749 1.6454e+07
chr1 6763278 6766882 6.7669e+06" > exp
$BT merge -i precisionTest2.bed -c 8 -o sum -prec 5 > obs
check exp obs
rm obs exp
###########################################################
# Test stranded merge with bedPlus files that have strand
###########################################################
echo " merge.t48...\c"
echo \
"chr1 10000 25000 -" > exp
$BT merge -i bug254_d.bed -s -d 200 > obs
check exp obs
rm obs exp
###########################################################
# Test stranded merge with bedPlus files that have strand
###########################################################
echo " merge.t49...\c"
echo \
"chr1 10000 20000 -
chr1 20100 25000 +" > exp
$BT merge -i bug254_e.bed -s -d 200 > obs
check exp obs
rm obs exp
|