合并基因组文件

将基因组fasta文件合并成一行:

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
import os
import time

start = time.time()

os.chdir('C:/Users/Administrator/Desktop/')
print(os.getcwd())

res_dict = {}

with open('YLG.sort.fasta','r') as pep:
for line in pep:
if line.startswith('>'):
name = line.strip().split()[0]
res_dict[name] = ''
else:
res_dict[name] += line.replace('\n','')

gen = ''
for cds_id, sequence in res_dict.items():
#print(sequence)
gen = gen + sequence

with open('genome.txt', 'a') as file:
file.write(gen)

end = time.time()
print(end - start)

💌lixiang117423@foxmail.com
💌lixiang117423@gmail.com


合并基因组文件
https://lixiang117423.github.io/article/6a3c6c2a/
作者
小蓝哥
发布于
2021年4月7日
许可协议