I need to generate a random walk based on the DNA sequence of a virus, given its base pair sequence of 2k base pairs. The sequence looks like "ATGCGTCGTAACGT". The path should turn right for an A, left for a T, go upwards for a G and downwards for a C. How can I use either Matlab, Mathematica or SPSS for this purpose?
|
|
I did not previously know of Mark McClure's blog about Chaos Game representation of gene sequences, but it reminded me of an article by Jose Manuel Gutiérrez (The Mathematica Journal Vol 9 Issue 2), which also gives a chaos game algorithm for an IFS using (the four bases of) DNA sequences. A detailed description may be found here (the original article). The method may be used to produce plots such as the following. Just for the hell of it, I've included (in the RHS panels) the plots generated with the corresponding complementary DNA strand (cDNA).
These plots were generated from GenBank Identifier gi|342520. The sequence contains 16295 bases. (One of the examples used by Jose Manuel Gutiérrez. If anyone is interested, plots for the human equivalent may be generated from gi|1262342).
Generated from gi|455025| (the example used my Mark McClure). The sequence contains 73308 bases There are pretty interesting plots! The (sometimes) fractal nature of such plots is known, but the symmetry obvious in the LHS vs RHS (cDNA) versions was very surprising (at least to me). The nice thing is that such plots for any DNA sequence may be very easily generated by directly importing the sequence (from, say, Genbank), and then using the power of Mma. The Original Implimenation (slightly modified) (by Jose Manuel Gutiérrez) Important Update On the advise of Mark McClure, I have changed This speeds things up very considerably. See Mark's comment below.
This gives a blue plot. For green, change Hue[] to Hue[{1/3,1,1,.5}] The following code now generates the first plot (for mouse mitochondrial DNA)
To get a cDNA plot I used the follow transformation rules (and also changed the Hue setting)
Thanks to Sjoerd C. de Vries and telefunkenvf14 for help in directly importing sequences from the NCBI site. Splitting things up a bit, for the sake of clarity. Import a Sequence
The method given for importing sequences in the original Mathematica J. article is dated. A nice check
Output:
Generation of the list of bases
Some more checks
Output:
The second set of plots was generated in a similar manner from gi|455025. Note that the sequence is long!
One final example (containing 265922 bp), also showing fascinating 'fractal' symmetry. (These were generated with The first line of the fasta file: {>gi|328530803|gb|AFBL01000008.1| Actinomyces sp. oral taxon 170 str. F0386 A_spOraltaxon170F0386-1.0_Cont9.1, whole genome shotgun sequence}
The corresponding cDNA plot is again shown in blue on RHS Finally, Mark's method also gives very beautiful plots (for example with gi|328530803), and may be downloaded as a notebook. |
|||||||||
|
|
Not that I really understand the "graph" you want, but here is one literal interpretation. None of the following code in necessarily in a final form. I want to know if this is right before I try to refine anything.
3D Options
Now that I know what you want, here is a packaged version of the first function:
Use it like this:
|
|||||||||||
|
|
It sounds like you are talking about CGR, or the so called Chaos Game Representation of a gene sequence. I blogged about this a few months ago: http://facstaff.unca.edu/mcmcclur/blog/GeneCGR.html |
|||||||
|
|
You might also try something like this...
|
||||
|
|
|
Assuming that the sequence
*) You need to elaborate more on the actual sequence. Is it represented as single string, or perhaps as cell array, or something else?
And to plot it:
where |
|||||
|






