Longest Biased Interval

home1 home2
 Bib
 Algorithms
 Bioinfo
 FP
 Logic
 MML
 Prog.Lang
and the
 Book

Algorithms
 1D
  L'B'I'
   rational
   general

  *in Java

1. Rational Bias

Problem: Given a data sequence, e.g. ACGTAGCAGATAGACAGGTTAGACAATAGAG, and a "bias" criterion, e.g. "at least 2/3 AT-rich", find the longest contiguous interval (substring) that satisfies this criterion.

In the HTML-form below, the fraction is p/q where p and q are small integers which (for given p and q) yields a simple, special-case, linear-time algorithm (but the multiplier depends on p and q).

data=
choice= p= q=
trace:

key: `choice' -- acceptable characters. `p' and `q' -- p/q is the required fraction of acceptable characters.


2. General Bias

Give elements of the sequence a +ve value for "good" and a -ve value for "bad". Compute the cumulative sums from the start of the sequence. The sum of a "good enough" interval is non-negative, i.e. the cumulative sum is flat or increasing across the interval:

c. sum
e.g. required ratio = 1/2
cum' sum: (solid black) the cumulative sum
first below: tracks the 1st point where the cum' sum falls to certain value
last above: tracks the last point at which the cum' sum holds a certain value
(can be computed in a reverse scan of cum' sum)
candidates: (dashed) indicate some possible ``longest biased intervals''
(All) Longest Biased Intervals:
(I.e. find every biased interval that is not strictly contained in any other biased interval.)
If the required minimum fraction (bias) is `x', where 0<=x<=1, give "good" elements a weight of +(1-x) and "bad" elements a weight of -x. (NB. x need not be rational.)
Step along `last-above' from top-left to bottom-right (thus R.H. end of interval always advances) while
looking back at first-below.
The longest biased interval of all will be discovered by this process.
ratio = 2/3
e.g. required ratio = 2/3 (good = +1/3, bad = -2/3)

The following HTML-form implements a general algorithm for biases that are not necessarily rational. Its time-complexity is almost always O(n), but can be O(n2) in the worst case for ``pathalogical'' sequences.

data=
choice= ratio=
trace:

Note that some numbers, including some common rational numbers, cannot be represented exactly in floating-point. Therefore one might need to give `ratio' a (very, very,) very little ``slack''.


3. Notes

Using binary-search to search (track) the array of cumulative-sum minima would give an O(n.log(n))-time, O(n)-space algorithm.

So of course, one could run both algorithms in parallel and take the result from the first to finish (also halting the other one): O(n)-time usually and O(n.log(n))-time worst case [11 April 2003].


4. Reference

L. Allison, Longest Biased Interval and Longest Non-Negative Sum Interval, J. Bioinformatics, 19(10), pp.1294-1295, 1 July 2003.


© 3/2002, 3/2003, 4/2003.
Coding Ockham's Razor, L. Allison, Springer

A Practical Introduction to Denotational Semantics, L. Allison, CUP

Linux
 Ubuntu
free op. sys.
OpenOffice
free office suite
The GIMP
~ free photoshop
Firefox
web browser

© L. Allison   http://www.allisons.org/ll/   (or as otherwise indicated),
Faculty of Information Technology (Clayton), Monash University, Australia 3800 (6/'05 was School of Computer Science and Software Engineering, Fac. Info. Tech., Monash University,
was Department of Computer Science, Fac. Comp. & Info. Tech., '89 was Department of Computer Science, Fac. Sci., '68-'71 was Department of Information Science, Fac. Sci.)
Created with "vi (Linux + Solaris)",  charset=iso-8859-1,  fetched Wednesday, 24-Apr-2024 09:42:22 AEST.