-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbamToBedGraph.py
executable file
·174 lines (119 loc) · 4.76 KB
/
bamToBedGraph.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
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
#!/usr/bin/python
"""Generate a bedGraph file from a given indexed BAM file
Constraints: BAM file should be sorted by genomic coordinate and indexed
For a full list of options, run the script with the '--help' option
"""
__version__ = 2.0
import sys
import argparse
import re
import BedGraphTable as bgt
import hamrhein.genome.bam as bam
class BamfilterAction(argparse.Action):
bamfilter = 0
def __init__(self, **kwargs):
super(BamfilterAction, self).__init__(**kwargs)
self.dest = "bamfilter"
self.nargs = 0
self.default = bam.BAMQ_ALL
def __call__(self, parser, namespace, values, option_string=None):
if option_string == "--all":
BamfilterAction.bamfilter |= bam.BAMQ_ALL
BamfilterAction.bamfilter ^= bam.BAMQ_UNMAPPED
if option_string == "--unique":
BamfilterAction.bamfilter |= bam.BAMQ_UNIQUES
if option_string == "--multi":
BamfilterAction.bamfilter |= bam.BAMQ_MULTIS
if option_string == "--match":
BamfilterAction.bamfilter |= bam.BAMQ_MATCHES
if option_string == "--splice":
BamfilterAction.bamfilter |= bam.BAMQ_SPLICES
BamfilterAction.bamfilter |= bam.BAMQ_MAPPED
setattr(namespace, self.dest, BamfilterAction.bamfilter)
def insertAlignment(tbl, generator, strand):
count = 0
for r in generator:
if strand == "+" and r.is_reverse:
continue
if strand == "-" and not r.is_reverse:
continue
if strand is None:
tbl.insertPysamAlignment(r, False, False)
else:
tbl.insertPysamAlignment(r, False, True)
count += 1
return count
def main(infile, outfile):
bamfilt = bam.BamFilter(args.bamfilter)
if args.normalize:
norm_factor = 1000000.0 / len(infile)
else:
norm_factor = 1.0
if args.region:
reg_split = re.split("[:-]", args.region)
ref = reg_split[0]
if len(reg_split) == 3:
length = int(reg_split[2]) - int(reg_split[1])
else:
ridx = infile.bam.references.index(ref)
length = infile.bam.lengths[ridx]
bgtable = bgt.BedGraphTable(ref, length, norm_factor)
alignments = infile.fetch(bamfilt, args.region)
count = insertAlignment(bgtable, alignments, args.strand)
for line in bgtable:
outfile.write("%s\n" % line)
if args.verbose:
print("\t%d alignments" % count)
else:
for ref, length in infile.references:
if args.chromonly and not ref.startswith("chr"):
continue
if args.verbose:
print("Processing %s" % ref)
bgtable = bgt.BedGraphTable(ref, length, norm_factor)
alignments = infile.fetch(bamfilt, reference=ref, start=1, end=length)
count = insertAlignment(bgtable, alignments, args.strand)
for line in bgtable:
outfile.write("%s\n" % line)
if args.verbose:
print("\t%d alignments" % count)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Generate a bedGraph file from a given indexed BAM file")
parser.add_argument("--all", "--unique", "--multi", "--match", "--splice",
action=BamfilterAction, type=int,
help="set various query constraints", default="--all")
parser.add_argument("--chromonly", action="store_true",
help="Only process references beginning with ``chr''")
parser.add_argument("--normalize", action="store_true",
help="Normalize results", default=False)
parser.add_argument("--region",
help="Report only reads within REGION", default=None)
parser.add_argument("--strand", metavar="STRAND",
help="Report only reads from STRAND", default=None)
parser.add_argument("--verbose", action="store_true",
help="Show progress", default=False)
parser.add_argument("--version", action="store_true",
help="Print version and exit", default=False)
parser.add_argument("infile")
parser.add_argument("outfile")
if len(sys.argv) < 3:
parser.print_help()
print("")
sys.exit(-1)
args = parser.parse_args()
if args.version:
print("bamToBed.py version %s" % __version__)
sys.exit(0)
try:
ifs = bam.Bam(args.infile)
except IOError, value:
print("BAM file error: %s" % value)
sys.exit(-1)
try:
ofs = open(args.outfile, "w")
except IOError, value:
print("bedGraph file error: %s" % value)
sys.exit(-1)
main(ifs, ofs)
ofs.close()
sys.exit(0)