gpt4 book ai didi

python - 寻找互补 DNA 链的更 pythonic 方法

转载 作者:行者123 更新时间:2023-11-28 19:31:14 25 4
gpt4 key购买 nike

这是我所拥有的,但它似乎有点多余。也许更有 Python 经验的人知道清理它的方法?它的作用应该很明显。

def complementary_strand(self, strand):
''' Takes a DNA strand string and finds its opposite base pair match. '''
strand = strand.upper()
newstrand = ""
for i in range(0, len(strand)):
if strand[i] == "T":
newstrand += "A"

if strand[i] == "A":
newstrand += "T"

if strand[i] == "G":
newstrand += "C"

if strand[i] == "C":
newstrand += "G"

return newstrand

最佳答案

如果字符串足够长,这可能是最有效的方法:

import string

def complementary_strand(self, strand):
return strand.translate(string.maketrans('TAGCtagc', 'ATCGATCG'))

这是利用 translatemaketrans方法。您还可以将转换表创建移到函数之外:

import string
def __init__(self, ...):
self.trans = string.maketrans('TAGCtagc', 'ATCGATCG')

def complementary_strand(self, strand):
return strand.translate(self.trans)

关于python - 寻找互补 DNA 链的更 pythonic 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1738633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com