01 ACounting DNA Nucleotides

Posted thinkanddo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了01 ACounting DNA Nucleotides相关的知识,希望对你有一定的参考价值。

Problem

string is simply an ordered collection of symbols selected from some alphabet and formed into a word; the length of a string is the number of symbols that it contains.

An example of a length 21 DNA string (whose alphabet contains the symbols ‘A‘, ‘C‘, ‘G‘, and ‘T‘) is "ATGCTTCAGAAAGGTCTTACG."

Given: A DNA string ss of length at most 1000 nt.

Return: Four integers (separated by spaces) counting the respective number of times that the symbols ‘A‘, ‘C‘, ‘G‘, and ‘T‘ occur in ss.

Sample Dataset

AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC

Sample Output

20 12 17 21

方法一:
f = ‘AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC‘
for i in f:
    b = list(f)    # 把‘AAA’变成 [‘A‘,‘A‘‘,A‘]
    c = {}          
    for i in b:
        c[i] = b.count(i)   # 把key 和value 写入字典,如 A:1
print (c.values())  # 最后的结果为 [20,12,21,17]

  方法二:

f = ‘AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC‘
counts = []
for i in [‘A‘,‘C‘,‘G‘,‘T‘]:          # 把输出的顺序定好
    counts.append(f.count(i))
print (‘\t‘.join(map(str, counts)))  #map() 这里的意思是吧输出的[20,12,17,21]变为 20 12 17 21

  






以上是关于01 ACounting DNA Nucleotides的主要内容,如果未能解决你的问题,请参考以下文章

DNA甲基化研究概述

返回五行随机 DNA 而不是一

如何在 Python 中将 DNA 序列列表转录为 RNA

将二进制代码转换为 DNA 代码 [关闭]

A计划--POJ1007 DNA Sorting

noi 2.6_9270&poj 2440DNA(DP)