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
|
#!/usr/bin/env python
"""
test_oldindex.py
Used to run tests on the test files found in /samples/old_index2/
From root, execute using `python test/test.py`
First, ensure you have fully installed the pypairix package:
`pip install pypairix --user`
OR
`sudo python setup.py install`
If you're having trouble running this file, try installing
python-dev and zlib1g-dev.
Note: tests are run to anticipate either juicer-formatted pairs files or 4DN-
formatted pairs files.
The columns (given in form <attribute [col#]):
Juicer: chr1[1] pos1[2] chr2[5] pos2[6]
4DN: chr1[1] pos1[2] chr2[3] pos2[4]
"""
from __future__ import unicode_literals
import unittest
import gzip
import sys
import pypairix
import warnings
TEST_FILE_2D = 'samples/old_index2/merged_nodup.tab.chrblock_sorted.txt.gz'
TEST_FILE_2D_4DN = 'samples/old_index2/4dn.bsorted.chr21_22_only.pairs.gz'
TEST_FILE_2D_4DN_2 = 'samples/old_index2/test_4dn.pairs.gz'
TEST_FILE_2D_4DN_NOT_TRIANGLE = 'samples/old_index2/4dn.bsorted.chr21_22_only.nontriangle.pairs.gz'
TEST_FILE_1D = 'samples/old_index2/SRR1171591.variants.snp.vqsr.p.vcf.gz'
TEST_FILE_2D_SPACE = 'samples/old_index2/merged_nodups.space.chrblock_sorted.subsample1.txt.gz'
def get_header(filename, meta_char='#'):
"""Read gzipped file and retrieve lines beginning with '#'."""
retval = []
with gzip.open(filename) as f:
for line in f:
try:
line = line.decode('utf-8')
except AttributeError:
pass
if line.startswith(meta_char):
retval.append(line.rstrip())
return retval
def get_chromsize(filename):
"""Read gzipped file and retrieve chromsize."""
retval = []
with gzip.open(filename) as f:
for line in f:
try:
line = line.decode('utf-8')
except AttributeError:
pass
if line.startswith('#chromsize: '):
fields = line.rstrip().split('\s+')
chrname = fields[1]
chrsize = fields[2]
retval.append([chrname, chrsize])
return retval
def read_vcf(filename):
"""Read a VCF file and return a list of [chrom, start, end] items."""
retval = []
with gzip.open(filename) as f:
for line in f:
try:
line = line.decode('utf-8')
except AttributeError:
pass
fields = line.rstrip().split('\t')
chrom = fields[0]
start = fields[1]
end = fields[1]
retval.append([chrom, start, end])
return retval
def find_pairs_type(filename, delimiter='\t'):
"""Attempt to determine if input pairs file is of type: juicer, 4DN,
or undetermined. Do this by testing string values of """
is_juicer = False
is_4DN = False
with gzip.open(filename) as f:
for line in f:
try:
line = line.decode('utf-8')
except AttributeError:
pass
fields = line.rstrip().split(delimiter)
if len(fields)>=6 and is_str(fields[2]) and is_str(fields[6]):
is_juicer = True
if is_str(fields[2]) and is_str(fields[4]):
is_4DN = True
if not is_juicer and is_4DN:
return '4DN'
elif is_juicer:
return 'juicer'
return 'undetermined'
def is_str(s):
"""Helper function to see if a string is an int. Return True if so"""
try:
int(s)
return True
except ValueError:
return False
def read_pairs(filename, file_type='undetermined', delimiter='\t'):
"""Read a pairs file and return a list of [chrom1, start1, end1, chrom2, start2, end2] items."""
# handle this a different way?
if file_type == 'undetermined':
return []
retval = []
with gzip.open(filename) as f:
for line in f:
try:
line = line.decode('utf-8')
except AttributeError:
pass
if line.startswith('#'):
continue
fields = line.rstrip().split(delimiter)
if file_type == 'juicer':
chrom1 = fields[1]
start1 = fields[2]
chrom2 = fields[5]
start2 = fields[6]
elif file_type == '4DN':
chrom1 = fields[1]
start1 = fields[2]
chrom2 = fields[3]
start2 = fields[4]
retval.append([chrom1, start1, start1, chrom2, start2, start2])
return retval
def overlap1(a0, a1, b0, b1):
return int(a0) <= int(b1) and int(a1) >= int(b0)
def get_result(regions, chrom, start, end):
retval = []
for r in regions:
if r[0] == chrom and overlap1(r[1], r[2], start, end):
retval.append(r)
return retval
def get_result_2D(regions, chrom, start, end, chrom2, start2, end2):
retval = []
for reg in regions:
if reg[0] == chrom and overlap1(reg[1], reg[2], start, end) and reg[3] == chrom2 and overlap1(reg[4], reg[5], start2, end2):
retval.append(reg)
return retval
def get_result_1D_on_2D(regions, chrom, start, end, chrom2, start2, end2):
retval = []
for reg in regions:
if reg[0] == chrom and overlap1(reg[2], reg[2], start, end) and reg[3] == chrom2 and overlap1(reg[4], reg[4], start2, end2):
retval.append(reg)
return retval
def build_it_result(it, f_type):
"""Build results using the pairix iterator based on the filetype"""
if f_type == 'juicer':
pr_result = [[x[1], x[2], x[2], x[5], x[6], x[6]] for x in it]
elif f_type == '4DN':
pr_result = [[x[1], x[2], x[2], x[3], x[4], x[4]] for x in it]
elif f_type == 'undetermined':
pr_result = []
return pr_result
## 1D query on 1D indexed file
class PairixTest(unittest.TestCase):
regions = read_vcf(TEST_FILE_1D)
chrom = 'chr10'
start = 25944
end = 27000000
result = get_result(regions, chrom, start, end)
pr = pypairix.open(TEST_FILE_1D)
def test_query(self):
it = self.pr.query(self.chrom, self.start, self.end)
pr_result = [[x[0], x[1], x[1]] for x in it]
self.assertEqual(self.result, pr_result)
def test_querys(self):
query = '{}:{}-{}'.format(self.chrom, self.start, self.end)
it = self.pr.querys(query)
pr_result = [[x[0], x[1], x[1]] for x in it]
self.assertEqual(self.result, pr_result)
## semi-2D query on 2D indexed file
class PairixTest_2(unittest.TestCase):
f_type = find_pairs_type(TEST_FILE_2D)
regions = read_pairs(TEST_FILE_2D, f_type)
chrom = '10'
start = 25944
end = 27000000
chrom2 = '20'
result = get_result_2D(regions, chrom, start, end, chrom2, 0, sys.maxsize)
pr = pypairix.open(TEST_FILE_2D)
def test_querys(self):
query = '{}:{}-{}|{}'.format(self.chrom, self.start, self.end, self.chrom2)
it = self.pr.querys2D(query)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
## 2D query on 2D indexed file
class PairixTest2D(unittest.TestCase):
f_type = find_pairs_type(TEST_FILE_2D)
regions = read_pairs(TEST_FILE_2D, f_type)
chrom = '10'
start = 1
end = 1000000
chrom2 = '20'
start2 = 50000000
end2 = 60000000
result = get_result_2D(regions, chrom, start, end, chrom2, start2, end2)
pr = pypairix.open(TEST_FILE_2D)
def test_query2(self):
it = self.pr.query2D(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_querys_2(self):
query = '{}:{}-{}|{}:{}-{}'.format(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
it = self.pr.querys2D(query)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_querys_2_bad_order(self):
# build the query with coordinates in the wrong order
query = '{}:{}-{}|{}:{}-{}'.format(self.chrom, self.end, self.start, self.chrom2, self.start2, self.end2)
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
# trigger a warning
self.pr.querys2D(query)
# verify some things about the warning
self.assertEqual(len(w), 1)
self.assertTrue(issubclass(w[-1].category, pypairix.PairixWarning))
## 2D query on 2D indexed file with chromosomes input in reverse order
class PairixTest2D_reverse(unittest.TestCase):
f_type = find_pairs_type(TEST_FILE_2D)
regions = read_pairs(TEST_FILE_2D, f_type)
chrom2 = '10'
start2 = 1
end2 = 1000000
chrom = '20'
start = 50000000
end = 60000000
# reverse reversed results to get them in the required order here
result = get_result_2D(regions, chrom2, start2, end2, chrom, start, end)
pr = pypairix.open(TEST_FILE_2D)
def test_query2_rev(self):
# 1 is included as last argument to test flipping chromosome order
it = self.pr.query2D(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2, 1)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_querys_2_rev(self):
query = '{}:{}-{}|{}:{}-{}'.format(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
# 1 is included as last argument to test flipping chromosome order
it = self.pr.querys2D(query, 1)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_query2_rev_fail(self):
# do not include 1 to test flipped order of chrs; expect this to hit a PairixWarning
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
# trigger a warning
self.pr.query2D(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
# verify some things about the warning
self.assertEqual(len(w), 1)
self.assertTrue(issubclass(w[-1].category, pypairix.PairixWarning))
## 2D query on 2D indexed file with chromosomes using a 4DN pairs file
class PairixTest2D_4DN(unittest.TestCase):
f_type = find_pairs_type(TEST_FILE_2D_4DN)
regions = read_pairs(TEST_FILE_2D_4DN, f_type)
chrom = 'chr21'
start = 1
end = 48129895
chrom2 = 'chr22'
start2 = 1
end2 = 51304566
# 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_2D_4DN)
def test_query2_4dn(self):
it = self.pr.query2D(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_querys_2_4dn(self):
query = '{}:{}-{}|{}:{}-{}'.format(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
it = self.pr.querys2D(query)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
## 2D query on 2D indexed space-delimited file
class PairixTest2DSpace(unittest.TestCase):
f_type = find_pairs_type(TEST_FILE_2D_SPACE, ' ')
regions = read_pairs(TEST_FILE_2D_SPACE, f_type, ' ')
chrom = '10'
start = 1
end = 1000000
chrom2 = '20'
start2 = 50000000
end2 = 60000000
result = get_result_2D(regions, chrom, start, end, chrom2, start2, end2)
pr = pypairix.open(TEST_FILE_2D_SPACE)
def test_query2(self):
it = self.pr.query2D(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
def test_querys_2(self):
query = '{}:{}-{}|{}:{}-{}'.format(self.chrom, self.start, self.end, self.chrom2, self.start2, self.end2)
it = self.pr.querys2D(query)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
## 1D query on 2D indexed file
class PairixTest_1_on_2(unittest.TestCase):
f_type='4DN'
regions = read_pairs(TEST_FILE_2D_4DN_2, f_type)
chrom = 'chrY'
start = 1
end = 2000000
chrom2 = chrom
start2 = start
end2 = end
result = get_result_1D_on_2D(regions, chrom, start, end, chrom2, start2, end2)
pr = pypairix.open(TEST_FILE_2D_4DN_2)
def test_querys(self):
query = '{}:{}-{}'.format(self.chrom, self.start, self.end)
it = self.pr.querys2D(query)
pr_result = build_it_result(it, self.f_type)
self.assertEqual(self.result, pr_result)
class PairixTestBlocknames(unittest.TestCase):
def test_blocknames(self):
# block list obtained from get_blocknames()
pr = pypairix.open(TEST_FILE_2D)
retrieved_blocklist = pr.get_blocknames()
retrieved_blocklist.sort()
# true block list
blocklist=[]
f_type = find_pairs_type(TEST_FILE_2D)
regions = read_pairs(TEST_FILE_2D, f_type)
for a in regions:
blocklist.append(a[0] + '|' + a[3])
blocklist_uniq = list(set(blocklist))
blocklist_uniq.sort()
self.assertEqual(retrieved_blocklist, blocklist_uniq)
class PairixTestGetColumnIndex(unittest.TestCase):
def test_columnindex(self):
pr = pypairix.open(TEST_FILE_2D)
pr2 = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.get_chr1_col(),1)
self.assertEqual(pr.get_chr2_col(),5)
self.assertEqual(pr.get_startpos1_col(),2)
self.assertEqual(pr.get_startpos2_col(),6)
self.assertEqual(pr.get_endpos1_col(),2)
self.assertEqual(pr.get_endpos2_col(),6)
self.assertEqual(pr2.get_chr1_col(),1)
self.assertEqual(pr2.get_chr2_col(),3)
self.assertEqual(pr2.get_startpos1_col(),2)
self.assertEqual(pr2.get_startpos2_col(),4)
self.assertEqual(pr2.get_endpos1_col(),2)
self.assertEqual(pr2.get_endpos2_col(),4)
class PairixTestExists(unittest.TestCase):
def test_exists(self):
pr = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.exists("chr21|chr21"),1)
self.assertEqual(pr.exists("chr21|chr22"),1)
self.assertEqual(pr.exists("chr22|chr22"),1)
self.assertEqual(pr.exists("chr22|chr21"),0)
self.assertEqual(pr.exists("chr1|chr2"),0)
self.assertEqual(pr.exists("chr21"),0)
self.assertEqual(pr.exists("1|2"),0)
class PairixTestExists2(unittest.TestCase):
def test_exists2(self):
pr = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.exists2("chr21","chr21"),1)
self.assertEqual(pr.exists2("chr21","chr22"),1)
self.assertEqual(pr.exists2("chr22","chr22"),1)
self.assertEqual(pr.exists2("chr22","chr21"),0)
self.assertEqual(pr.exists2("chr1","chr2"),0)
self.assertEqual(pr.exists2("1","2"),0)
class PairixTestBgzfBlockCounts(unittest.TestCase):
def test_bgzf_block_count(self):
pr = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.bgzf_block_count("chr21","chr21"),8)
self.assertEqual(pr.bgzf_block_count("chr21","chr22"),1)
self.assertEqual(pr.bgzf_block_count("chr22","chr22"),12)
self.assertEqual(pr.bgzf_block_count("chr22","chr21"),0)
self.assertEqual(pr.bgzf_block_count("chr21","chrY"),0)
self.assertEqual(pr.bgzf_block_count("chr1","chr2"),0)
self.assertEqual(pr.bgzf_block_count("1","2"),0)
class PairixTestGetHeader(unittest.TestCase):
def tet_get_header(self):
pr = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.get_header(), get_header(TEST_FILE_2D_4DN))
pr = pypairix.open(TEST_FILE_2D_4DN_2)
self.assertEqual(pr.get_header(), get_header(TEST_FILE_2D_4DN_2))
class PairixTestGetChromsize(unittest.TestCase):
def tet_get_header(self):
pr = pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.get_chromsize(), get_chromsize(TEST_FILE_2D_4DN))
pr = pypairix.open(TEST_FILE_2D_4DN_2)
self.assertEqual(pr.get_chromsize(), get_chromsize(TEST_FILE_2D_4DN_2))
class PairixTestGetLineCount(unittest.TestCase):
def test_linecount(self):
pr= pypairix.open(TEST_FILE_2D_4DN_2)
self.assertEqual(pr.get_linecount(), 60204)
class PairixTestCheckTriangle(unittest.TestCase):
def test_check_triangle(self):
pr= pypairix.open(TEST_FILE_2D_4DN)
self.assertEqual(pr.check_triangle(), 1)
def test_check_triangle2(self):
pr= pypairix.open(TEST_FILE_2D_4DN_2)
self.assertEqual(pr.check_triangle(), 1)
def test_check_triangle_false(self):
pr= pypairix.open(TEST_FILE_2D_4DN_NOT_TRIANGLE)
self.assertEqual(pr.check_triangle(), 0)
class PairixVersionCheck(unittest.TestCase):
def test_linecount(self):
# version defined by PACKAGE_VERSION in src/pairix.h
pkg_version = pypairix.__version__
# setup.py version defined in root VERSION file
py_version = open("VERSION.txt").readlines()[-1].split()[-1].strip("\"'")
self.assertEqual(pkg_version, py_version)
if __name__ == '__main__':
unittest.main()
|