()
| 44 | |
| 45 | |
| 46 | def test_remove_overlap(): |
| 47 | t = IntervalTree.from_tuples(data.ivs1.data) |
| 48 | assert t[1] |
| 49 | t.remove_overlap(1) |
| 50 | assert not t[1] |
| 51 | t.verify() |
| 52 | |
| 53 | assert t[8] |
| 54 | t.remove_overlap(8) |
| 55 | assert not t[8] |
| 56 | t.verify() |
| 57 | |
| 58 | |
| 59 | # ----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected
searching dependent graphs…