-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfasta2bed.py
32 lines (26 loc) · 886 Bytes
/
fasta2bed.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
#!/usr/bin/env python
import os
import sys
from argparse import ArgumentParser
from Bio import SeqIO
def parseArgs():
parser = ArgumentParser(description='Converts a FastA file into a BED '
'file, which is a tab-delimited list of sequence record names and '
'their boundaries')
parser.add_argument('-i', '--infile', required=True,
help='input FastA Format file')
parser.add_argument('-o', '--outfile', required=False, default=None,
help='output BED Format file [stdout]')
return parser.parse_args()
def main():
opt = parseArgs()
ifh = os.path.abspath(os.path.expanduser(opt.infile))
if opt.outfile is not None:
ofh = open(os.path.abspath(os.path.expanduser(opt.outfile)), 'w')
else:
ofh = sys.stdout
with open(ifh) as infasta:
for rec in SeqIO.parse(infasta, 'fasta'):
ofh.write('{}\t0\t{}\n'.format(rec.id, len(rec)))
if __name__ == '__main__':
main()