-
Notifications
You must be signed in to change notification settings - Fork 11
/
bam_plus_minus.py
executable file
·51 lines (40 loc) · 1.44 KB
/
bam_plus_minus.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
#!/usr/bin/env python
from optparse import OptionParser
import pdb, os
import pysam
################################################################################
# bam_plus_minus.py
#
# Separate the alignments in a BAM file into two BAM files of the plus and
# minus strand reads.
################################################################################
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] <bam file>'
parser = OptionParser(usage)
(options,args) = parser.parse_args()
if len(args) != 1:
parser.error('Must provide bam file')
else:
bam_file = args[0]
chr_starts = {}
bam_pre = os.path.splitext(bam_file)[0]
bam_in = pysam.Samfile(bam_file, 'rb')
bamp_out = pysam.Samfile('%s_p.bam'%bam_pre, 'wb', header=bam_in.header)
bamm_out = pysam.Samfile('%s_m.bam'%bam_pre, 'wb', header=bam_in.header)
for read in bam_in:
if read.is_reverse:
bamm_out.write(read)
else:
bamp_out.write(read)
bam_in.close()
bamp_out.close()
bamm_out.close()
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()
#pdb.runcall(main)