-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_genome_info.py
executable file
·68 lines (51 loc) · 1.84 KB
/
get_genome_info.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
57
58
59
60
61
62
63
64
65
66
67
68
'''
Copyright © 2018 Anton Tsukanov. Contacts: [email protected]
License: http://www.gnu.org/licenses/gpl.txt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
'''
import sys
import argparse
import numpy as np
import pandas as pd
def statistic(fasta_path):
stat = dict()
with open(fasta_path, 'r') as fasta:
for line in fasta:
if line.startswith('>'):
chr_ = line[1:].strip().split()[0]
stat[chr_] = 0
continue
else:
stat[chr_] += len(line.strip())
fasta.close()
return(stat)
def write_table(stat, out_path):
with open(out_path, 'w') as tsv:
for chr, length in stat.items():
tsv.write(str(chr) + '\t' + str(length) + '\n')
tsv.close()
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('-i', '--fasta', action='store', dest='fasta',
required=True, help='path to genome in fasta format')
parser.add_argument('-o', '--output', action='store', dest='tsv',
required=True, help='path to read tsv file')
if len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(1)
return(parser.parse_args())
def main():
args = parse_args()
fasta_path = args.fasta
out_path = args.tsv
stat = statistic(fasta_path)
write_table(stat, out_path)
if __name__ == '__main__':
main()