-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJazz.py
executable file
·374 lines (199 loc) · 10.7 KB
/
Jazz.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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
import os
import sys
from optparse import OptionParser
import logging
from Jazzlib.FRegion import *
from Jazzlib.localmax import *
from Jazzlib.normalize_ratio import *
from Jazzlib.countreads import *
from Jazzlib.Peak import *
from Jazzlib.sta import *
from Jazzlib.jazzio import *
from Jazzlib.randombg import *
from Jazzlib.hotspotsscan import *
from Jazzlib.Hotspot import *
from Jazzlib.peaksscan import *
def main():
opt = opt_check(get_optparser())
if opt.controlfile == "no":
nocontrol(opt)
else:
withcontrol(opt)
def withcontrol(opt):
try:
datafile = opt.datafile
inputfile = opt.controlfile
jobtype = opt.jobtype
count_chr = opt.countchr
maxinsert = opt.maxinsert
nthreads = opt.nthreads
bayesfactorthreshold = opt.threshold
# bayesfactorthreshold = 10
samplename = opt.samplename
fdr = opt.fdr
chipfregion = FRegion(bamfile=datafile, jobtype=jobtype, countchr=count_chr, nthreads=nthreads, maxinsert=maxinsert)
inputfregion = FRegion(bamfile=inputfile, jobtype=jobtype, countchr=count_chr, nthreads=nthreads, maxinsert=maxinsert)
ratio = normalize_ratio_input2(fregegion_input=inputfregion, fregion_chip=chipfregion)
if opt.genomesize:
print("###chipfregion.adjreads * chipfregion.readlengthmean/chipfregion.countgenomelength,",
chipfregion.adjreads, chipfregion.readlengthmean, opt.genomesize)
gloablumbda = chipfregion.adjreads * chipfregion.readlengthmean / opt.genomesize
else:
print("###inputfregion.adjreads,inputfregion.readlengthmean,inputfregion.countgenomelength",
inputfregion.adjreads , inputfregion.readlengthmean,inputfregion.countgenomelength)
gloablumbda = inputfregion.adjreads * inputfregion.readlengthmean/inputfregion.countgenomelength
windowscare=100000
hotspots = hotspotsscan_withcontrol(chipfile=datafile,maxinsert=maxinsert, windowscare=windowscare,
countchr=count_chr, inputgloablumbda=gloablumbda,
bayesfactorthreshold=bayesfactorthreshold, nthreads=nthreads,
chipfregion=chipfregion, jobtype=jobtype, ratio=ratio, inputfile=inputfile,
inputfregion=inputfregion)
peaks = peakscan_control(datafile=datafile,maxinsert=maxinsert, bayesfactorthreshold=bayesfactorthreshold,
nthreads=nthreads,chipfregion=chipfregion, jobtype=jobtype, hotspots=hotspots,
gloablumbda=gloablumbda,inputfile=inputfile,ratio=ratio,inputfregion=inputfregion)
if opt.hotonly:
hotspotsbedswriter(hotspots=hotspots, samplename=samplename)
else:
hotspotsenrich = hotspotsfilter(hotspots=hotspots, peaks=peaks)
hotspotsbedswriter(hotspots=hotspotsenrich, samplename=samplename)
peakbedswriter(samplename=samplename,peaks=peaks)
jazzgffout(samplename=samplename, hotspots=hotspotsenrich, peaks=peaks, fregion=chipfregion)
except KeyboardInterrupt:
sys.stderr.write("User interrupt\n")
sys.exit(0)
def nocontrol(opt):
try:
datafile = opt.datafile
jobtype = opt.jobtype
count_chr = opt.countchr
maxinsert = opt.maxinsert
print ("maxinsert",maxinsert)
nthreads = opt.nthreads
bayesfactorthreshold = opt.threshold
samplename = opt.samplename
chipfregion = FRegion(bamfile=datafile, jobtype=jobtype, countchr=count_chr, nthreads=nthreads,
maxinsert=maxinsert)
if opt.genomesize:
print("###chipfregion.adjreads * chipfregion.readlengthmean/chipfregion.countgenomelength,", chipfregion.adjreads, chipfregion.readlengthmean,opt.genomesize)
gloablumbda = chipfregion.adjreads * chipfregion.readlengthmean / opt.genomesize
else:
print("###chipfregion.adjreads * chipfregion.readlengthmean/chipfregion.countgenomelength,", chipfregion.adjreads, chipfregion.readlengthmean,chipfregion.countgenomelength)
gloablumbda = chipfregion.adjreads * chipfregion.readlengthmean/chipfregion.countgenomelength
windowscare=100000
for fregions in chipfregion.filted_region:
print (fregions)
hotspots = hotspotsscan_withoutcontrol(file=datafile, maxinsert=maxinsert, windowscare=windowscare, countchr=count_chr,
bayesfactorthreshold=bayesfactorthreshold, nthreads=nthreads,
fregion=chipfregion, jobtype=jobtype, gloablumbda=gloablumbda)
peaks = peakscan_without_control(datafile=datafile,maxinsert=maxinsert,
bayesfactorthreshold=bayesfactorthreshold, nthreads=nthreads,
fregion=chipfregion,jobtype=jobtype,
hotspots=hotspots, gloablumbda=gloablumbda)
if opt.hotonly:
hotspotsbedswriter(hotspots=hotspots, samplename=samplename)
else:
hotspotsenrich = hotspotsfilter(hotspots=hotspots, peaks=peaks)
hotspotsbedswriter(hotspots=hotspotsenrich, samplename=samplename)
peakbedswriter(samplename=samplename,peaks=peaks)
jazzgffout(samplename=samplename, hotspots=hotspotsenrich, peaks=peaks, fregion=chipfregion)
except KeyboardInterrupt:
sys.stderr.write("User interrupt\n")
sys.exit(0)
def get_optparser():
usage = """usage: %prog <-d datafile> [-n name] [options]
Example %prog -i nh_sample1.bam -n sample1
"""
description = "%prog Non-Histone protein banding site identification"
jazzopt = OptionParser(version="%prog 0.1 20140521", description=description, usage=usage, add_help_option=False)
jazzopt.add_option("-h", "--help", action="help", help="show this help message and exit.")
jazzopt.add_option("-d", "--data", dest="datafile", type="string", help='data file, should be sorted bam format')
jazzopt.add_option("-c", "--control", dest="controlfile", type="string", help='control(input) file, should be sorted bam format', default="no")
jazzopt.add_option("-n", "--name", dest="samplename", help="NH sample name default=NH_sample", type="string" , default="DH_sample")
jazzopt.add_option("-t", "--threshold", dest="threshold", type="float", help="peak threshold, default=6.0", default=6.0)
jazzopt.add_option("--threads", dest="nthreads", type="int", help="threads number or cpu number, default=4", default=4)
jazzopt.add_option("-w", "--wig", action="store_true", help="whether out put wiggle file, default=False", default=False)
jazzopt.add_option("-f","--fdr", dest="fdr", type="float",help="using FDR as threshold", default=0.1)
jazzopt.add_option("-x", "--excludechr", dest="excludechr", help="Don't count those chromosome, strongly suggest skip mitochondrion and chloroplast, example='-x ChrM,ChrC'")
jazzopt.add_option("-g", "--gff", action="store_true", help="whether out put gff file, default=False", default=False)
jazzopt.add_option("-j","--jobtype",dest="jobtype",type="string",help="job type, such as nhpaired or nhsingle")
jazzopt.add_option("-m","--maxinsert",dest="maxinsert",type="int",help="when you use paired library, please set the maxinsert size",default=130)
jazzopt.add_option("--pe", dest="pe", action="store_true", help="paired-end reads or single-end reads, default=False (single end)", default=False)
jazzopt.add_option("--genomesize", dest="genomesize", type="int",
help="Set genome size", default=False)
jazzopt.add_option("--hotonly", dest="hotonly", action="store_true", default=False, help="calculate hotsports only.")
return jazzopt
def opt_check(jazzopt):
(opt, args) = jazzopt.parse_args()
if not opt.datafile:
logging.error("you need input a bam file, '-d nh_sample1.bam -j nhsingle'")
jazzopt.print_help()
sys.exit(1)
if not os.path.isfile (opt.datafile):
logging.error("No such file: %s" % opt.datafile)
sys.exit(1)
dataindexfile1 = opt.datafile + '.bai'
dataindexfile2 = opt.datafile + '.csi'
if not (os.path.isfile(dataindexfile1) or os.path.isfile(dataindexfile2)):
logging.error("Missing bam index file: %s or %s" % (dataindexfile1, dataindexfile2))
sys.exit(1)
if not opt.controlfile == "no":
if not os.path.isfile (opt.controlfile):
logging.error("No such file: %s" % opt.controlfile)
sys.exit(1)
controlindexfile1 = opt.controlfile + '.bai'
controlindexfile2 = opt.controlfile + '.csi'
if not (os.path.isfile(controlindexfile1) or os.path.isfile(controlindexfile2)):
logging.error("Missing bam index file: %s or %s" % (controlindexfile1, controlindexfile2))
sys.exit(1)
else:
opt.controlfile = "no"
if not (opt.nthreads > 0):
logging.error("threads number should >=1")
jazzopt.print_help()
sys.exit(1)
if (opt.jobtype):
if opt.jobtype == 'nhsingle':
if (opt.maxinsert < 0):
logging.error("maxinsert size error")
jazzopt.print_help()
sys.exit(1)
elif opt.jobtype == 'nhpaired':
if (opt.maxinsert < 0):
logging.error("maxinsert size error")
jazzopt.print_help()
sys.exit(1)
else:
logging.error("missing or wrong jobtype")
jazzopt.print_help()
sys.exit(1)
else:
logging.error("missing or wrong jobtype")
jazzopt.print_help()
sys.exit(1)
opt.countchr = list()
samfile = pysam.Samfile(opt.datafile)
sam_ref = samfile.references
for i in sam_ref:
opt.countchr.append(i)
if (opt.excludechr):
excludchr = opt.excludechr.split(',')
for chri in excludchr:
if not chri in sam_ref:
print (chri,'not in the %s file' % opt.datafile)
print ("try to selcet exclude Chr from", end =" : ")
print (sam_ref, sep=",")
jazzopt.print_help()
sys.exit(1)
else:
j = 0
for n in opt.countchr:
if chri == n:
del opt.countchr[j]
j = j + 1
return opt
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
sys.stderr.write("User interrupt\n")
sys.exit(0)