forked from brianpenghe/bamsam-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMergeBAMPerChr.py
58 lines (51 loc) · 1.44 KB
/
MergeBAMPerChr.py
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
##################################
# #
# Last modified 12/14/2013 #
# #
# Georgi Marinov #
# #
##################################
import sys
import string
import math
import os
import subprocess
def main(argv):
if len(argv) < 5:
print 'usage: python %s samtools BAM1 chromosome1 BAM2 chromosome2'
print '\tchromosomes should be comma-separated'
print '\tthe script will print to stdout by default'
sys.exit(1)
samtools = argv[1]
BAM1 = argv[2]
chrDict1 = {}
for chr in argv[3].split(','):
chrDict1[chr]=1
BAM2 = argv[4]
chrDict2 = {}
for chr in argv[5].split(','):
chrDict2[chr]=1
cmd1 = samtools + ' view ' + BAM1
p1 = os.popen(cmd1, "r")
line = 'line1'
while line != '':
line = p1.readline().strip()
if line == '':
continue
fields = line.strip().split('\t')
chr = fields[2]
if chrDict1.has_key(chr):
print line.strip()
cmd2 = samtools + ' view ' + BAM2
p2 = os.popen(cmd2, "r")
line = 'line2'
while line != '':
line = p2.readline().strip()
if line == '':
continue
fields = line.strip().split('\t')
chr = fields[2]
if chrDict2.has_key(chr):
print line.strip()
if __name__ == '__main__':
main(sys.argv)