-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfasta_upper.py
executable file
·36 lines (28 loc) · 988 Bytes
/
fasta_upper.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
#!/usr/bin/env python
from optparse import OptionParser
'''
Name
Description...
'''
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] <in_fasta_file> <out_fasta_file>'
parser = OptionParser(usage)
#parser.add_option()
(options,args) = parser.parse_args()
in_fasta_file = args[0]
out_fasta_file = args[1]
out_fasta_open = open(out_fasta_file, 'w')
for line in open(in_fasta_file):
if line[0] == '>':
print(line, end='', file=out_fasta_open)
else:
print(line.upper(), end='', file=out_fasta_open)
out_fasta_open.close()
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()