首页 > 其他 > 详细

09 Finding a Motif in DNA

时间:2017-08-02 11:44:24      阅读:361      评论:0      收藏:0      [点我收藏+]

Problem

Given two strings ss and tttt is a substring of ss if tt is contained as a contiguous collection of symbols in ss (as a result, tt must be no longer than ss).

The position of a symbol in a string is the total number of symbols found to its left, including itself (e.g., the positions of all occurrences of ‘U‘ in "AUGCUUCAGAAAGGUCUUACG" are 2, 5, 6, 15, 17, and 18). The symbol at position ii of ss is denoted by s[i]s[i].

A substring of ss can be represented as s[j:k]s[j:k], where jj and kk represent the starting and ending positions of the substring in ss; for example, if ss = "AUGCUUCAGAAAGGUCUUACG", then s[2:5]s[2:5] = "UGCU".

The location of a substring s[j:k]s[j:k] is its beginning position jj; note that tt will have multiple locations in ss if it occurs more than once as a substring of ss (see the Sample below).

Given: Two DNA strings ss and tt (each of length at most 1 kbp).

Return: All locations of tt as a substring of ss.

Sample Dataset

GATATATGCATATACTT
ATAT

Sample Output

2 4 10


#-*-coding:UTF-8-*-
### 9. Finding a Motif in DNA ###

# Method 1: Use Module regex.finditer
import regex
# 比re更强大的模块

matches = regex.finditer(‘ATAT‘, ‘GATATATGCATATACTT‘, overlapped=True)
# 返回所有匹配项,
for match in matches:
    print (match.start() + 1)



# Method 2: Brute Force Search
seq = ‘GATATATGCATATACTT‘
pattern = ‘ATAT‘


def find_motif(seq, pattern):
    position = []
    for i in range(len(seq) - len(pattern)):
        if seq[i:i + len(pattern)] == pattern:
            position.append(str(i + 1))

    print (‘\t‘.join(position))


find_motif(seq, pattern)




# methond 3
import re
seq=‘GATATATGCATATACTT‘
print [i.start()+1 for i in re.finditer(‘(?=ATAT)‘,seq)]
# ?= 之后字符串内容需要匹配表达式才能成功匹配。

  




09 Finding a Motif in DNA

原文:http://www.cnblogs.com/think-and-do/p/7272915.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!