Computational Complexity Of Creating A Dotplot
2
0
Entering edit mode
12.4 years ago
User 5037 ▴ 290

hi could someone please tell me what is the computational complexity of creating a dotplot ?

• 1.9k views
ADD COMMENT
3
Entering edit mode
12.4 years ago
Farhat ★ 2.9k

It will be quadratic in the length of the sequence. You are comparing every base to every other base. There are n(n-1)/2 comparisons to be made.

ADD COMMENT
2
Entering edit mode
12.4 years ago
Fabian Bull ★ 1.3k

The naive way is quadratic in the length of both length:

O(m * n)

where m is the length of sequence 1 and n is the length of sequence 2.

I would not be suprised if there is a fancy datastructure which could do the job in linear time.

ADD COMMENT
0
Entering edit mode

You can't escape comparing nucleotide of one sequence against all of the other in order to find interesting changes occurring between the two genomes/chromosomes .

ADD REPLY
0
Entering edit mode

Long time ago: A very wise man stated that a linear algorithm for LCS would be impossible yet it exists.

ADD REPLY

Login before adding your answer.

Traffic: 2817 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6