Combing through the haystack

Finding the same interval of DNA in the genomes of two different organisms (often taken from different species) is highly suggestive that the interval has the same function in both organisms.

We define a motif as such a commonly shared interval of DNA. A common task in molecular biology is to search an organism's genome for a known motif.

The situation is complicated by the fact that genomes are riddled with intervals of DNA that occur multiple times (possibly with slight modifications), called repeats. These repeats occur far more often than would be dictated by random chance, indicating that genomes are anything but random and in fact illustrate that the language of DNA must be very powerful (compare with the frequent reuse of common words in any human language).

Alu elements
The human chromosomes stained with a probe for Alu elements, shown in green.

The most common repeat in humans is the Alu repeat, which is approximately 300 bp long and recurs around a million times throughout every human genome (see above figure). However, Alu has not been found to serve a positive purpose, and appears in fact to be parasitic: when a new Alu repeat is inserted into a genome, it frequently causes genetic disorders.

Assignment

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

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 $$i$$ of $$s$$ is denoted by $$s[i]$$.

A substring of $$s$$ can be represented as $$s[j:k]$$, where $$j$$ and $$k$$ represent the starting and ending positions of the substring in $$s$$. For example, if $$s$$ = AUGCUUCAGAAAGGUCUUACG, then $$s[2:5]$$ = UGCU.

The location of a substring $$s[j:k]$$ is its beginning position $$j$$. Note that $$t$$ will have multiple locations in $$s$$ if it occurs more than once as a substring of $$s$$ (see the example below).

Write a function locations that takes two DNA strings $$s$$ and $$t$$. The function must return a list containing all locations of $$t$$ as a substring of $$s$$, with locations sorted in increasing order.

Example

In the following interactive session, we assume the FASTA file data.fna1 to be located in the current directory.

>>> locations('GATATATGCATATACTT', 'ATAT')
[2, 4, 10]

>>> from Bio import SeqIO
>>> locations(*SeqIO.parse('data.fna', 'fasta'), 'CGTA')
[53, 310, 456, 605, 695]