-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbam_12.py
executable file
·49 lines (39 loc) · 1.4 KB
/
bam_12.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
#!/usr/bin/env python
from optparse import OptionParser
import pdb, os
import pysam
################################################################################
# bam_12.py
#
# Separate the alignments in a BAM file into two BAM files of the first and
# second 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]
bam_pre = os.path.splitext(bam_file)[0]
bam_in = pysam.Samfile(bam_file, 'rb')
bam1_out = pysam.Samfile('%s_1.bam'%bam_pre, 'wb', header=bam_in.header)
bam2_out = pysam.Samfile('%s_2.bam'%bam_pre, 'wb', header=bam_in.header)
for read in bam_in:
if read.is_read1:
bam1_out.write(read)
else:
bam2_out.write(read)
bam_in.close()
bam1_out.close()
bam2_out.close()
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()
#pdb.runcall(main)