Skip to content

Commit

Permalink
tighter test for large chromosome for pypairix
Browse files Browse the repository at this point in the history
  • Loading branch information
SooLee committed Mar 15, 2018
1 parent 2fc3bbc commit 74e17b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,10 @@ class PairixTest2D_LargeChr(unittest.TestCase):
regions = read_pairs(TEST_FILE_LARGE_CHR, f_type)
chrom = 'chr21'
start = 1
end = 107129895
end = 1073741824
chrom2 = 'chr22'
start2 = 1
end2 = 107304566
end2 = 1073741824
# reverse reversed results to get them in the required order here
result = get_result_2D(regions, chrom, start, end, chrom2, start2, end2)
pr = pypairix.open(TEST_FILE_LARGE_CHR)
Expand Down

0 comments on commit 74e17b9

Please sign in to comment.