码迷,mamicode.com
首页 > 其他好文 > 详细

002 生信基础题

时间:2017-07-28 13:32:24      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:for   int   else   lam   基础题   initial   nbsp   app   cti   

01  ‘GATCCAGATCCCCATAC‘, 计算这串数列中两个出现最高的频率。

t = ‘GATCCAGATCCCCATAC‘
L = [ ]

for i in range(len(t)-1):
    L.append(t[i:i+2])

x = reduce(lambda x,y: x if L.count(x)>L.count(y) else y, L)

# reduce(function, iterable[, initializer])

print x, ‘appeared‘, L.count(x), ‘times! It is the most frequent 2-mer.‘

  

002 生信基础题

标签:for   int   else   lam   基础题   initial   nbsp   app   cti   

原文地址:http://www.cnblogs.com/think-and-do/p/7249648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!