-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flag to keep zero length intervals when converting bed -> interva…
…l_list (#1928) * Add flag to keep zero length intervals when converting bed -> interval_list
- Loading branch information
1 parent
98c86c4
commit 5e2c94a
Showing
4 changed files
with
62 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
testdata/picard/util/BedToIntervalListTest/zero_length_test.bed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
chr1 1000 1000 | ||
chr2 1000 2000 | ||
chr3 1000 1000 | ||
chr4 1000 2000 |
11 changes: 11 additions & 0 deletions
11
testdata/picard/util/BedToIntervalListTest/zero_length_test.bed.interval_list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@HD VN:1.6 SO:coordinate | ||
@SQ SN:chr1 LN:1000000 | ||
@SQ SN:chr2 LN:1000000 | ||
@SQ SN:chr3 LN:1000000 | ||
@SQ SN:chr4 LN:1000000 | ||
@SQ SN:chr5 LN:1000000 | ||
@SQ SN:chr6 LN:1000000 | ||
@SQ SN:chr7 LN:1000000 | ||
@SQ SN:chr8 LN:1000000 | ||
chr2 1001 2000 + . | ||
chr4 1001 2000 + . |