forked from brianpenghe/bamsam-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbedRPKMfromBAM.py
337 lines (307 loc) · 11.3 KB
/
bedRPKMfromBAM.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
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
##################################
# #
# Last modified 06/09/2014 #
# #
# Georgi Marinov #
# #
##################################
import sys
import string
import pysam
import math
from sets import Set
import os
def FLAG(FLAG):
Numbers = [0,1,2,4,8,16,32,64,128,256,512,1024]
FLAGList=[]
MaxNumberList=[]
for i in Numbers:
if i <= FLAG:
MaxNumberList.append(i)
Residual=FLAG
maxPos = len(MaxNumberList)-1
while Residual > 0:
if MaxNumberList[maxPos] <= Residual:
Residual = Residual - MaxNumberList[maxPos]
FLAGList.append(MaxNumberList[maxPos])
maxPos-=1
else:
maxPos-=1
return FLAGList
def main(argv):
if len(argv) < 5:
print 'usage: python %s bedfilename chrField BAMfilename chrom.sizes outputfilename [-nomulti] [-RPM] [-stranded +|-] [-readLength min max] [-printSum] [-uniqueBAM] [-mappabilityNormalize mappability.wig readLength] [-noNH samtools]' % argv[0]
print 'Note: the script will divide multireads by their multiplicity'
print '\t-printSum option only working together with the RPM option'
print '\tuse the uniqueBAM option if the BAM file contains only unique alignments; this will save a lot of memory'
print '\tuse the -mappabilityNormalize option to get mappability normalized RPKMs (it will not do anything to the RPMs; not that a mappability track that goes from 0 to the read length is assumed'
print '\tuse the -noNH option and supply a path to samtools in order to have the file converted to one that has NH tags'
print '\tthe stranded option will normalized against all reads, not just reads on the indicated strand'
sys.exit(1)
bed = argv[1]
fieldID = int(argv[2])
SAM = argv[3]
chromSize = argv[4]
outfilename = argv[5]
chromInfoList=[]
linelist=open(chromSize)
for line in linelist:
fields=line.strip().split('\t')
chr=fields[0]
start=0
end=int(fields[1])
chromInfoList.append((chr,start,end))
noMulti=False
if '-nomulti' in argv:
noMulti=True
print 'will discard multi-read alignments'
doReadLength=False
if '-readLength' in argv:
doReadLength=True
minRL = int(argv[argv.index('-readLength')+1])
maxRL = int(argv[argv.index('-readLength')+2])
print 'will only consider reads between', minRL, 'and', maxRL, 'bp length'
ORLL = 0
doPrintSum=False
doStranded=False
if '-stranded' in argv:
doStranded=True
thestrand = argv[argv.index('-stranded')+1]
print 'will only consider', thestrand, 'strand reads'
doRPM=False
if '-RPM' in argv:
doRPM=True
print 'will output RPMs'
if '-printSum' in argv:
doPrintSum=True
RPMSum=0
doUniqueBAM = False
if '-uniqueBAM' in argv:
print 'will treat all alignments as unique'
doUniqueBAM = True
TotalReads = 0
pass
samfile = pysam.Samfile(SAM, "rb" )
try:
print 'testing for NH tags presence'
for alignedread in samfile.fetch():
multiplicity = alignedread.opt('NH')
print 'file has NH tags'
break
except:
if '-noNH' in argv:
print 'no NH: tags in BAM file, will replace with a new BAM file with NH tags'
samtools = argv[argv.index('-noNH')+1]
BAMpreporcessingScript = argv[0].rpartition('/')[0] + '/bamPreprocessing.py'
cmd = 'python ' + BAMpreporcessingScript + ' ' + SAM + ' ' + SAM + '.NH'
os.system(cmd)
cmd = 'rm ' + SAM
os.system(cmd)
cmd = 'mv ' + SAM + '.NH' + ' ' + SAM
os.system(cmd)
cmd = samtools + ' index ' + SAM
os.system(cmd)
else:
if doUniqueBAM:
pass
else:
print 'no NH: tags in BAM file, exiting'
sys.exit(1)
doMappabilityCorrection = False
if not doRPM and '-mappabilityNormalize' in argv:
doMappabilityCorrection = True
print 'will correct for mappability'
mappability = argv[argv.index('-mappabilityNormalize')+1]
readLength = int(argv[argv.index('-mappabilityNormalize')+2])
WantedDict = {}
MappabilityRegionDict = {}
lineslist = open(bed)
i=0
print 'inputting regions'
for line in lineslist:
if line[0]=='#':
continue
i+=1
if i % 1000 == 0:
print i, 'regions inputted'
fields = line.strip().split('\t')
if len(fields) < fieldID+2:
continue
chr = fields[fieldID]
try:
left = int(fields[fieldID+1])
right = int(fields[fieldID+2])
except:
print 'problem with region, skipping:', line.strip()
if left >= right:
print 'problem with region, skipping:', chr, left, right
continue
if MappabilityRegionDict.has_key(chr):
pass
else:
MappabilityRegionDict[chr]={}
WantedDict[chr]={}
MappabilityRegionDict[chr][(left,right)]=0
for j in range(left,right):
WantedDict[chr][j]=0
lineslist = open(mappability)
print 'inputting mappability'
i=0
for line in lineslist:
if line.startswith('#'):
continue
i+=1
if i % 1000000 == 0:
print str(i/1000000) + 'M lines processed'
fields = line.strip().split('\t')
if len(fields) == 1:
fields = line.strip().split(' ')
chr = fields[0]
left = int(fields[1])
right = int(fields[2])
score = float(fields[3])
if WantedDict.has_key(chr):
pass
else:
continue
for j in range(left,right):
if WantedDict[chr].has_key(j):
WantedDict[chr][j] = score
print 'calculating mappable fractions'
for chr in MappabilityRegionDict.keys():
for (left,right) in MappabilityRegionDict[chr].keys():
TotalScore = 0.0
for j in range(left,right):
TotalScore += WantedDict[chr][j]
Score = TotalScore / (right-left)
MappabilityRegionDict[chr][(left,right)] = Score/readLength
WantedDict = {}
regionDict={}
Unique=0
UniqueSplices=0
Multi=0
MultiSplices=0
if doUniqueBAM and not doReadLength:
TotalReads = 0
for chrStats in pysam.idxstats(SAM):
fields = chrStats.strip().split('\t')
chr = fields[0]
reads = int(fields[2])
if chr != '*':
TotalReads += reads
UniqueReads = TotalReads
else:
MultiplicityDict={}
UniqueReads = 0
i=0
samfile = pysam.Samfile(SAM, "rb" )
for (chr,start,end) in chromInfoList:
try:
for alignedread in samfile.fetch(chr, start, end):
i+=1
if i % 5000000 == 0:
print str(i/1000000) + 'M alignments processed', chr,start,end
fields=str(alignedread).split('\t')
if doReadLength:
if len(alignedread.seq) > maxRL or len(alignedread.seq) < minRL:
ORLL += 1
continue
if doUniqueBAM:
TotalReads+=1
continue
if alignedread.opt('NH') == 1:
UniqueReads += 1
continue
ID=fields[0]
if alignedread.is_read1:
ID = ID + '/1'
if alignedread.is_read2:
ID = ID + '/2'
if MultiplicityDict.has_key(ID):
MultiplicityDict[ID]+=1
else:
MultiplicityDict[ID]=1
except:
print 'problem with region:', chr, start, end, 'skipping'
if doReadLength:
print ORLL, 'alignments outside of read length limits'
if doUniqueBAM:
pass
else:
TotalReads = UniqueReads + len(MultiplicityDict.keys())
print TotalReads, UniqueReads
normalizeBy = TotalReads/1000000.
outfile = open(outfilename, 'w')
lineslist = open(bed)
i=0
for line in lineslist:
i+=1
if i % 10000 == 0:
print i, 'regions processed'
if line[0]=='#':
continue
fields = line.strip().split('\t')
if len(fields) < fieldID+2:
continue
chr = fields[fieldID]
try:
left = int(fields[fieldID+1])
right = int(fields[fieldID+2])
except:
print 'problem with region, skipping:', line.strip()
if left >= right:
print 'problem with region, skipping:', chr, left, right
continue
reads=0
try:
for alignedread in samfile.fetch(chr, left, right):
fields2=str(alignedread).split('\t')
if doReadLength:
if len(alignedread.seq) > maxRL or len(alignedread.seq) < minRL:
continue
ID=fields2[0]
if doStranded:
if alignedread.is_reverse:
s = '-'
else:
s = '+'
if s != thestrand:
continue
if alignedread.is_read1:
ID = ID + '/1'
if alignedread.is_read2:
ID = ID + '/2'
if doUniqueBAM:
reads += 1
else:
if noMulti and alignedread.opt('NH') > 1:
continue
reads += 1./alignedread.opt('NH')
# print 'NH, weight:', alignedread.opt('NH'), 1./alignedread.opt('NH')
except:
print 'problem with region:', chr, left, right, 'assigning 0 value'
reads=0
if doRPM:
score = reads / normalizeBy
# print chr, right - left, normalizeBy
else:
try:
score = reads / (((right-left)/1000.)*normalizeBy)
except:
print 'region of size 0, skipping:', line.strip()
continue
if doPrintSum:
RPMSum+=score
outline = line.strip() +'\t' + str(score)
if doMappabilityCorrection:
outline = outline + '\t' + str(MappabilityRegionDict[chr][(left,right)])
if MappabilityRegionDict[chr][(left,right)] == 0:
outline = outline + '\t0'
else:
outline = outline + '\t' + str(score/MappabilityRegionDict[chr][(left,right)])
outfile.write(outline + '\n')
if doPrintSum:
outfile.write('#Total RPM:' + str(RPMSum) + '\n')
outfile.close()
if __name__ == '__main__':
main(sys.argv)