-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackbone2bed.py
executable file
·43 lines (37 loc) · 1.37 KB
/
backbone2bed.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
#!/usr/bin/env python
import argparse
import os
import sys
def parseArgs():
parser = argparse.ArgumentParser(description='extracts alignment '
'coordinates in a Mauve or Parsnp backbone file and saves as '
'a BED format', add_help=False, epilog='NOTE: unaligned sites '
'can be identified with bedtools complement')
req = parser.add_argument_group('Required')
req.add_argument('-i', '--infile', metavar='FILE',
required=True, help='input backbone file')
opt = parser.add_argument_group('Optional')
opt.add_argument('-c', '--col', type=int, default=1, metavar='INT',
help='start column for coordinate extraction [1]')
opt.add_argument('-h', '--help', action='help',
help='show this help message and exit')
opt.add_argument('-o', '--outfile', default=None, metavar='FILE',
help='output BED file [stdout]')
return parser.parse_args()
def main():
args = parseArgs()
infile = os.path.abspath(os.path.expanduser(args.infile))
col = args.col
if args.outfile is None:
out = sys.stdout
else:
out = open(os.path.abspath(os.path.expanduser(args.outfile)), 'w')
with open(infile) as ifh:
hdr = next(ifh).rstrip('\n').split('\t')
chrom = hdr[1-col].rstrip('_start').lstrip('>')
for ln in ifh:
l = ln.rstrip('\n').split('\t')
out.write('{}\t{}\t{}\n'.format(
chrom, int(l[1-col].lstrip('-')), int(l[col].lstrip('-'))))
if __name__ == '__main__':
main()