2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.List;
28 * A simple way of bijectively mapping a non-contiguous linear range to another
29 * non-contiguous linear range.
31 * Use at your own risk!
33 * TODO: efficient implementation of private posMap method
35 * TODO: test/ensure that sense of from and to ratio start position is conserved
36 * (codon start position recovery)
42 * Subregions (base 1) described as { [start1, end1], [start2, end2], ...}
44 private List<int[]> fromShifts;
47 * Same format as fromShifts, for the 'mapped to' sequence
49 private List<int[]> toShifts;
52 * number of steps in fromShifts to one toRatio unit
54 private int fromRatio;
57 * number of steps in toShifts to one fromRatio
62 * lowest and highest value in the from Map
64 private int fromLowest;
66 private int fromHighest;
69 * lowest and highest value in the to Map
73 private int toHighest;
80 fromShifts = new ArrayList<int[]>();
81 toShifts = new ArrayList<int[]>();
85 * Two MapList objects are equal if they are the same object, or they both
86 * have populated shift ranges and all values are the same.
89 public boolean equals(Object o)
91 if (o == null || !(o instanceof MapList))
96 MapList obj = (MapList) o;
101 if (obj.fromRatio != fromRatio || obj.toRatio != toRatio
102 || obj.fromShifts == null || obj.toShifts == null)
107 .deepEquals(fromShifts.toArray(), obj.fromShifts.toArray())
109 .deepEquals(toShifts.toArray(), obj.toShifts.toArray());
113 * Returns a hashcode made from the fromRatio, toRatio, and from/to ranges
116 public int hashCode()
118 int hashCode = 31 * fromRatio;
119 hashCode = 31 * hashCode + toRatio;
120 hashCode = 31 * hashCode + fromShifts.toArray().hashCode();
121 hashCode = 31 * hashCode + toShifts.toArray().hashCode();
126 * Returns the 'from' ranges as {[start1, end1], [start2, end2], ...}
130 public List<int[]> getFromRanges()
136 * Returns the 'to' ranges as {[start1, end1], [start2, end2], ...}
140 public List<int[]> getToRanges()
146 * Flattens a list of [start, end] into a single [start1, end1, start2,
152 protected static int[] getRanges(List<int[]> shifts)
154 int[] rnges = new int[2 * shifts.size()];
156 for (int[] r : shifts)
166 * @return length of mapped phrase in from
168 public int getFromRatio()
175 * @return length of mapped phrase in to
177 public int getToRatio()
182 public int getFromLowest()
187 public int getFromHighest()
192 public int getToLowest()
197 public int getToHighest()
203 * Constructor given from and to ranges as [start1, end1, start2, end2,...].
204 * If any end is equal to the next start, the ranges will be merged. There is
205 * no validation check that the ranges do not overlap each other.
208 * contiguous regions as [start1, end1, start2, end2, ...]
210 * same format as 'from'
212 * phrase length in 'from' (e.g. 3 for dna)
214 * phrase length in 'to' (e.g. 1 for protein)
216 public MapList(int from[], int to[], int fromRatio, int toRatio)
219 this.fromRatio = fromRatio;
220 this.toRatio = toRatio;
221 fromLowest = Integer.MAX_VALUE;
222 fromHighest = Integer.MIN_VALUE;
225 for (int i = 0; i < from.length; i += 2)
228 * note lowest and highest values - bearing in mind the
229 * direction may be reversed
231 fromLowest = Math.min(fromLowest, Math.min(from[i], from[i + 1]));
232 fromHighest = Math.max(fromHighest, Math.max(from[i], from[i + 1]));
233 if (added > 0 && from[i] == fromShifts.get(added - 1)[1])
236 * this range starts where the last ended - just extend it
238 fromShifts.get(added - 1)[1] = from[i + 1];
242 fromShifts.add(new int[] { from[i], from[i + 1] });
247 toLowest = Integer.MAX_VALUE;
248 toHighest = Integer.MIN_VALUE;
250 for (int i = 0; i < to.length; i += 2)
252 toLowest = Math.min(toLowest, Math.min(to[i], to[i + 1]));
253 toHighest = Math.max(toHighest, Math.max(to[i], to[i + 1]));
254 if (added > 0 && to[i] == toShifts.get(added - 1)[1])
256 toShifts.get(added - 1)[1] = to[i + 1];
260 toShifts.add(new int[] { to[i], to[i + 1] });
267 * Copy constructor. Creates an identical mapping.
271 public MapList(MapList map)
274 // TODO not used - remove?
275 this.fromLowest = map.fromLowest;
276 this.fromHighest = map.fromHighest;
277 this.toLowest = map.toLowest;
278 this.toHighest = map.toHighest;
280 this.fromRatio = map.fromRatio;
281 this.toRatio = map.toRatio;
282 if (map.fromShifts != null)
284 for (int[] r : map.fromShifts)
286 fromShifts.add(new int[] { r[0], r[1] });
289 if (map.toShifts != null)
291 for (int[] r : map.toShifts)
293 toShifts.add(new int[] { r[0], r[1] });
299 * Constructor given ranges as lists of [start, end] positions. There is no
300 * validation check that the ranges do not overlap each other.
307 public MapList(List<int[]> fromRange, List<int[]> toRange, int fromRatio,
311 fromRange = coalesceRanges(fromRange);
312 toRange = coalesceRanges(toRange);
313 this.fromShifts = fromRange;
314 this.toShifts = toRange;
315 this.fromRatio = fromRatio;
316 this.toRatio = toRatio;
318 fromLowest = Integer.MAX_VALUE;
319 fromHighest = Integer.MIN_VALUE;
320 for (int[] range : fromRange)
322 fromLowest = Math.min(fromLowest, Math.min(range[0], range[1]));
323 fromHighest = Math.max(fromHighest, Math.max(range[0], range[1]));
326 toLowest = Integer.MAX_VALUE;
327 toHighest = Integer.MIN_VALUE;
328 for (int[] range : toRange)
330 toLowest = Math.min(toLowest, Math.min(range[0], range[1]));
331 toHighest = Math.max(toHighest, Math.max(range[0], range[1]));
336 * Consolidates a list of ranges so that any contiguous ranges are merged.
337 * This assumes the ranges are already in start order (does not sort them).
340 * @return the same list (if unchanged), else a new merged list, leaving the
341 * input list unchanged
343 public static List<int[]> coalesceRanges(final List<int[]> ranges)
345 if (ranges == null || ranges.size() < 2)
350 boolean changed = false;
351 List<int[]> merged = new ArrayList<int[]>();
352 int[] lastRange = ranges.get(0);
353 int lastDirection = lastRange[1] >= lastRange[0] ? 1 : -1;
354 lastRange = new int[] { lastRange[0], lastRange[1] };
355 merged.add(lastRange);
356 boolean first = true;
358 for (final int[] range : ranges)
365 if (range[0] == lastRange[0] && range[1] == lastRange[1])
367 // drop duplicate range
373 * drop this range if it lies within the last range
375 if ((lastDirection == 1 && range[0] >= lastRange[0]
376 && range[0] <= lastRange[1] && range[1] >= lastRange[0] && range[1] <= lastRange[1])
377 || (lastDirection == -1 && range[0] <= lastRange[0]
378 && range[0] >= lastRange[1]
379 && range[1] <= lastRange[0] && range[1] >= lastRange[1]))
385 int direction = range[1] >= range[0] ? 1 : -1;
388 * if next range is in the same direction as last and contiguous,
389 * just update the end position of the last range
391 boolean sameDirection = range[1] == range[0]
392 || direction == lastDirection;
393 boolean extending = range[0] == lastRange[1] + lastDirection;
394 boolean overlapping = (lastDirection == 1 && range[0] >= lastRange[0] && range[0] <= lastRange[1])
395 || (lastDirection == -1 && range[0] <= lastRange[0] && range[0] >= lastRange[1]);
396 if (sameDirection && (overlapping || extending))
398 lastRange[1] = range[1];
403 lastRange = new int[] { range[0], range[1] };
404 merged.add(lastRange);
405 // careful: merging [5, 5] after [7, 6] should keep negative direction
406 lastDirection = (range[1] == range[0]) ? lastDirection : direction;
410 return changed ? merged : ranges;
414 * get all mapped positions from 'from' to 'to'
416 * @return int[][] { int[] { fromStart, fromFinish, toStart, toFinish }, int
417 * [fromFinish-fromStart+2] { toStart..toFinish mappings}}
419 protected int[][] makeFromMap()
421 // TODO not used - remove??
422 return posMap(fromShifts, fromRatio, toShifts, toRatio);
426 * get all mapped positions from 'to' to 'from'
428 * @return int[to position]=position mapped in from
430 protected int[][] makeToMap()
432 // TODO not used - remove??
433 return posMap(toShifts, toRatio, fromShifts, fromRatio);
437 * construct an int map for intervals in intVals
440 * @return int[] { from, to pos in range }, int[range.to-range.from+1]
441 * returning mapped position
443 private int[][] posMap(List<int[]> shiftTo, int ratio,
444 List<int[]> shiftFrom, int toRatio)
446 // TODO not used - remove??
447 int iv = 0, ivSize = shiftTo.size();
452 int[] intv = shiftTo.get(iv++);
453 int from = intv[0], to = intv[1];
461 intv = shiftTo.get(iv++);
480 int mp[][] = new int[to - from + 2][];
481 for (int i = 0; i < mp.length; i++)
483 int[] m = shift(i + from, shiftTo, ratio, shiftFrom, toRatio);
504 int[][] map = new int[][] { new int[] { from, to, tF, tT },
505 new int[to - from + 2] };
510 for (int i = 0; i < mp.length; i++)
514 map[1][i] = mp[i][0] - tF;
518 map[1][i] = -1; // indicates an out of range mapping
528 * start position for shift (in original reference frame)
532 * public void addShift(int pos, int shift) { int sidx = 0; int[]
533 * rshift=null; while (sidx<shifts.size() && (rshift=(int[])
534 * shifts.elementAt(sidx))[0]<pos) sidx++; if (sidx==shifts.size())
535 * shifts.insertElementAt(new int[] { pos, shift}, sidx); else
536 * rshift[1]+=shift; }
540 * shift from pos to To(pos)
544 * @return int shifted position in To, frameshift in From, direction of mapped
547 public int[] shiftFrom(int pos)
549 return shift(pos, fromShifts, fromRatio, toShifts, toRatio);
553 * inverse of shiftFrom - maps pos in To to a position in From
557 * @return shifted position in From, frameshift in To, direction of mapped
560 public int[] shiftTo(int pos)
562 return shift(pos, toShifts, toRatio, fromShifts, fromRatio);
573 protected static int[] shift(int pos, List<int[]> shiftTo, int fromRatio,
574 List<int[]> shiftFrom, int toRatio)
576 // TODO: javadoc; tests
577 int[] fromCount = countPos(shiftTo, pos);
578 if (fromCount == null)
582 int fromRemainder = (fromCount[0] - 1) % fromRatio;
583 int toCount = 1 + (((fromCount[0] - 1) / fromRatio) * toRatio);
584 int[] toPos = countToPos(shiftFrom, toCount);
587 return null; // throw new Error("Bad Mapping!");
589 // System.out.println(fromCount[0]+" "+fromCount[1]+" "+toCount);
590 return new int[] { toPos[0], fromRemainder, toPos[1] };
594 * count how many positions pos is along the series of intervals.
598 * @return number of positions or null if pos is not within intervals
600 protected static int[] countPos(List<int[]> shiftTo, int pos)
602 int count = 0, intv[], iv = 0, ivSize = shiftTo.size();
605 intv = shiftTo.get(iv++);
606 if (intv[0] <= intv[1])
608 if (pos >= intv[0] && pos <= intv[1])
610 return new int[] { count + pos - intv[0] + 1, +1 };
614 count += intv[1] - intv[0] + 1;
619 if (pos >= intv[1] && pos <= intv[0])
621 return new int[] { count + intv[0] - pos + 1, -1 };
625 count += intv[0] - intv[1] + 1;
633 * count out pos positions into a series of intervals and return the position
637 * @return position pos in interval set
639 protected static int[] countToPos(List<int[]> shiftFrom, int pos)
641 int count = 0, diff = 0, iv = 0, ivSize = shiftFrom.size();
642 int[] intv = { 0, 0 };
645 intv = shiftFrom.get(iv++);
646 diff = intv[1] - intv[0];
649 if (pos <= count + 1 + diff)
651 return new int[] { pos - count - 1 + intv[0], +1 };
660 if (pos <= count + 1 - diff)
662 return new int[] { intv[0] - (pos - count - 1), -1 };
670 return null;// (diff<0) ? (intv[1]-1) : (intv[0]+1);
674 * find series of intervals mapping from start-end in the From map.
677 * position mapped 'to'
679 * position mapped 'to'
680 * @return series of [start, end] ranges in sequence mapped 'from'
682 public int[] locateInFrom(int start, int end)
684 // inefficient implementation
685 int fromStart[] = shiftTo(start);
686 // needs to be inclusive of end of symbol position
687 int fromEnd[] = shiftTo(end);
689 return getIntervals(fromShifts, fromStart, fromEnd, fromRatio);
693 * find series of intervals mapping from start-end in the to map.
696 * position mapped 'from'
698 * position mapped 'from'
699 * @return series of [start, end] ranges in sequence mapped 'to'
701 public int[] locateInTo(int start, int end)
703 int toStart[] = shiftFrom(start);
704 int toEnd[] = shiftFrom(end);
705 return getIntervals(toShifts, toStart, toEnd, toRatio);
709 * like shift - except returns the intervals in the given vector of shifts
710 * which were spanned in traversing fromStart to fromEnd
716 * @return series of from,to intervals from from first position of starting
717 * region to final position of ending region inclusive
719 protected static int[] getIntervals(List<int[]> shiftFrom,
720 int[] fromStart, int[] fromEnd, int fromRatio2)
722 if (fromStart == null || fromEnd == null)
726 int startpos, endpos;
727 startpos = fromStart[0]; // first position in fromStart
728 endpos = fromEnd[0]; // last position in fromEnd
729 int endindx = (fromRatio2 - 1); // additional positions to get to last
730 // position from endpos
731 int intv = 0, intvSize = shiftFrom.size();
732 int iv[], i = 0, fs = -1, fe_s = -1, fe = -1; // containing intervals
733 // search intervals to locate ones containing startpos and count endindx
734 // positions on from endpos
735 while (intv < intvSize && (fs == -1 || fe == -1))
737 iv = shiftFrom.get(intv++);
740 endpos = iv[0]; // start counting from beginning of interval
741 endindx--; // inclusive of endpos
745 if (fs == -1 && startpos >= iv[0] && startpos <= iv[1])
749 if (endpos >= iv[0] && endpos <= iv[1])
757 if (endpos + endindx <= iv[1])
760 endpos = endpos + endindx; // end of end token is within this
765 endindx -= iv[1] - endpos; // skip all this interval too
772 if (fs == -1 && startpos <= iv[0] && startpos >= iv[1])
776 if (endpos <= iv[0] && endpos >= iv[1])
784 if (endpos - endindx >= iv[1])
787 endpos = endpos - endindx; // end of end token is within this
792 endindx -= endpos - iv[1]; // skip all this interval too
799 if (fs == fe && fe == -1)
803 List<int[]> ranges = new ArrayList<int[]>();
808 // truncate initial interval
809 iv = shiftFrom.get(intv++);
810 iv = new int[] { iv[0], iv[1] };// clone
817 ranges.add(iv); // add initial range
818 iv = shiftFrom.get(intv++); // get next interval
819 iv = new int[] { iv[0], iv[1] };// clone
826 ranges.add(iv); // add only - or final range
830 // walk from end of interval.
831 i = shiftFrom.size() - 1;
836 iv = shiftFrom.get(i);
837 iv = new int[] { iv[1], iv[0] };// reverse and clone
838 // truncate initial interval
844 { // fix apparent logic bug when fe==-1
845 ranges.add(iv); // add (truncated) reversed interval
846 iv = shiftFrom.get(i);
847 iv = new int[] { iv[1], iv[0] }; // reverse and clone
851 // interval is already reversed
854 ranges.add(iv); // add only - or final range
856 // create array of start end intervals.
858 if (ranges != null && ranges.size() > 0)
860 range = new int[ranges.size() * 2];
862 intvSize = ranges.size();
864 while (intv < intvSize)
866 iv = ranges.get(intv);
869 ranges.set(intv++, null); // remove
876 * get the 'initial' position of mpos in To
880 * @return position of first word in to reference frame
882 public int getToPosition(int mpos)
884 // TODO not used - remove??
885 int[] mp = shiftTo(mpos);
894 * get range of positions in To frame for the mpos word in From
898 * @return null or int[] first position in To for mpos, last position in to
901 public int[] getToWord(int mpos)
903 int[] mp = shiftTo(mpos);
906 return new int[] { mp[0], mp[0] + mp[2] * (getFromRatio() - 1) };
912 * get From position in the associated reference frame for position pos in the
913 * associated sequence.
918 public int getMappedPosition(int pos)
920 // TODO not used - remove??
921 int[] mp = shiftFrom(pos);
929 public int[] getMappedWord(int pos)
931 // TODO not used - remove??
932 int[] mp = shiftFrom(pos);
935 return new int[] { mp[0], mp[0] + mp[2] * (getToRatio() - 1) };
942 * @return a MapList whose From range is this maplist's To Range, and vice
945 public MapList getInverse()
947 return new MapList(getToRanges(), getFromRanges(), getToRatio(),
952 * test for containment rather than equivalence to another mapping
955 * to be tested for containment
956 * @return true if local or mapped range map contains or is contained by this
959 public boolean containsEither(boolean local, MapList map)
961 // TODO not used - remove?
964 return ((getFromLowest() >= map.getFromLowest() && getFromHighest() <= map
965 .getFromHighest()) || (getFromLowest() <= map.getFromLowest() && getFromHighest() >= map
970 return ((getToLowest() >= map.getToLowest() && getToHighest() <= map
971 .getToHighest()) || (getToLowest() <= map.getToLowest() && getToHighest() >= map
977 * String representation - for debugging, not guaranteed not to change
980 public String toString()
982 StringBuilder sb = new StringBuilder(64);
984 for (int[] shift : fromShifts)
986 sb.append(" ").append(Arrays.toString(shift));
989 sb.append(fromRatio).append(":").append(toRatio);
991 for (int[] shift : toShifts)
993 sb.append(" ").append(Arrays.toString(shift));
996 return sb.toString();
1000 * Extend this map list by adding the given map's ranges. There is no
1001 * validation check that the ranges do not overlap existing ranges (or each
1002 * other), but contiguous ranges are merged.
1006 public void addMapList(MapList map)
1008 if (this.equals(map))
1012 this.fromLowest = Math.min(fromLowest, map.fromLowest);
1013 this.toLowest = Math.min(toLowest, map.toLowest);
1014 this.fromHighest = Math.max(fromHighest, map.fromHighest);
1015 this.toHighest = Math.max(toHighest, map.toHighest);
1017 for (int[] range : map.getFromRanges())
1019 addRange(range, fromShifts);
1021 for (int[] range : map.getToRanges())
1023 addRange(range, toShifts);
1028 * Adds the given range to a list of ranges. If the new range just extends
1029 * existing ranges, the current endpoint is updated instead.
1034 static void addRange(int[] range, List<int[]> addTo)
1037 * list is empty - add to it!
1039 if (addTo.size() == 0)
1045 int[] last = addTo.get(addTo.size() - 1);
1046 boolean lastForward = last[1] >= last[0];
1047 boolean newForward = range[1] >= range[0];
1050 * contiguous range in the same direction - just update endpoint
1052 if (lastForward == newForward && last[1] == range[0])
1059 * next range starts at +1 in forward sense - update endpoint
1061 if (lastForward && newForward && range[0] == last[1] + 1)
1068 * next range starts at -1 in reverse sense - update endpoint
1070 if (!lastForward && !newForward && range[0] == last[1] - 1)
1077 * just add the new range
1083 * Returns true if mapping is from forward strand, false if from reverse
1084 * strand. Result is just based on the first 'from' range that is not a single
1085 * position. Default is true unless proven to be false. Behaviour is not well
1086 * defined if the mapping has a mixture of forward and reverse ranges.
1090 public boolean isFromForwardStrand()
1092 boolean forwardStrand = true;
1093 for (int[] range : getFromRanges())
1095 if (range[1] > range[0])
1097 break; // forward strand confirmed
1099 else if (range[1] < range[0])
1101 forwardStrand = false;
1102 break; // reverse strand confirmed
1105 return forwardStrand;
1110 * @return true if from, or to is a three to 1 mapping
1112 public boolean isTripletMap()
1114 return (toRatio == 3 && fromRatio == 1)
1115 || (fromRatio == 3 && toRatio == 1);