求GC含量
Posted Bio-Liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求GC含量相关的知识,希望对你有一定的参考价值。
代码如下:
from collections import OrderedDict ID_name = ‘‘ temp_dict = OrderedDict() with open(r‘D:\testpy\Rosalind\rosalind_gc.txt‘,‘r‘) as f: for line in f: if line.startswith(‘>‘): ID_name = line.strip() temp_dict[ID_name] = ‘‘ #之前一直不会将ID和seq存到序列中,这里给temp_dicr[ID_name]一个空值就是为了将ID存进字典里。 else: temp_dict[ID_name] += line for ID,seq in temp_dict.items():
GC_num = seq.count(‘G‘) + seq.count(‘C‘) GC_ration = GC_num/len(seq) print (ID + " ====> " +"%.8f"%GC_ration)
以上是关于求GC含量的主要内容,如果未能解决你的问题,请参考以下文章
生物信息学算法之Python实现|Rosalind刷题笔记:005 GC含量计算