-
Notifications
You must be signed in to change notification settings - Fork 3
/
header-format.py
executable file
·56 lines (44 loc) · 1.31 KB
/
header-format.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
from collections import defaultdict
import re, os
import textwrap
import argparse
import sys
parser = argparse.ArgumentParser(
prog="fasta-reformat.py",
formatter_class=argparse.RawDescriptionHelpFormatter,
description=textwrap.dedent('''
Script for removing everything after the first space in a FASTA file
Developed by Arkadiy Garber: [email protected]
'''))
parser.add_argument('-file', help='input fasta file')
parser.add_argument('-out', help="output re-formatted fasta file")
if len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(0)
args = parser.parse_known_args()[0]
def fasta(fasta_file):
seq = ''
header = ''
Dict = defaultdict(lambda: defaultdict(lambda: 'EMPTY'))
for i in fasta_file:
i = i.rstrip()
if re.match(r'^>', i):
if len(seq) > 0:
Dict[header] = seq
header = i[1:]
header = header.split(" ")[0]
seq = ''
else:
header = i[1:]
header = header.split(" ")[0]
seq = ''
else:
seq += i
Dict[header] = seq
return Dict
file = open(args.file, "r")
file = fasta(file)
out = open(args.out, "w")
for i in file.keys():
out.write(">" + i + "\n")
out.write(file[i] + "\n")