-
Notifications
You must be signed in to change notification settings - Fork 11
/
bed_clean.py
executable file
·53 lines (43 loc) · 1.62 KB
/
bed_clean.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
#!/usr/bin/env python
from optparse import OptionParser
################################################################################
# bed_clean.py
#
# Detect and correct BED regions extending beyond chromosome ends
################################################################################
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] <csizes_file> <bed_file>'
parser = OptionParser(usage)
parser.add_option('-d', dest='delete', default=False, action='store_true', help='Delete entries beyond boundaries [Default: %default]')
(options,args) = parser.parse_args()
if len(args) != 2:
parser.error('Must provide BED file and chrom sizes file')
else:
csizes_file = args[0]
bed_file = args[1]
# read in chromosome sizes
chrom_sizes = {}
for line in open(csizes_file):
a = line.split()
chrom_sizes[a[0]] = int(a[1])
# clean BED file
for line in open(bed_file):
a = line.split()
chrom = a[0]
start = int(a[1])
end = int(a[2])
if end <= chrom_sizes[chrom]:
print line,
else:
if not options.delete:
end = chrom_sizes[chrom]
a[2] = str(end)
print '\t'.join(a)
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()