JAL-3806 use the covers() test for each selected sequence and the complementary align...
[jalview.git] / src / jalview / util / MappingUtils.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.util;
22
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.HashMap;
26 import java.util.Iterator;
27 import java.util.List;
28 import java.util.Map;
29
30 import jalview.analysis.AlignmentSorter;
31 import jalview.api.AlignViewportI;
32 import jalview.bin.Cache;
33 import jalview.commands.CommandI;
34 import jalview.commands.EditCommand;
35 import jalview.commands.EditCommand.Action;
36 import jalview.commands.EditCommand.Edit;
37 import jalview.commands.OrderCommand;
38 import jalview.datamodel.AlignedCodonFrame;
39 import jalview.datamodel.AlignedCodonFrame.SequenceToSequenceMapping;
40 import jalview.datamodel.AlignmentI;
41 import jalview.datamodel.AlignmentOrder;
42 import jalview.datamodel.ColumnSelection;
43 import jalview.datamodel.HiddenColumns;
44 import jalview.datamodel.Mapping;
45 import jalview.datamodel.SearchResultMatchI;
46 import jalview.datamodel.SearchResults;
47 import jalview.datamodel.SearchResultsI;
48 import jalview.datamodel.Sequence;
49 import jalview.datamodel.SequenceGroup;
50 import jalview.datamodel.SequenceI;
51
52 /**
53  * Helper methods for manipulations involving sequence mappings.
54  * 
55  * @author gmcarstairs
56  *
57  */
58 public final class MappingUtils
59 {
60
61   /**
62    * Helper method to map a CUT or PASTE command.
63    * 
64    * @param edit
65    *          the original command
66    * @param undo
67    *          if true, the command is to be undone
68    * @param targetSeqs
69    *          the mapped sequences to apply the mapped command to
70    * @param result
71    *          the mapped EditCommand to add to
72    * @param mappings
73    */
74   protected static void mapCutOrPaste(Edit edit, boolean undo,
75           List<SequenceI> targetSeqs, EditCommand result,
76           List<AlignedCodonFrame> mappings)
77   {
78     Action action = edit.getAction();
79     if (undo)
80     {
81       action = action.getUndoAction();
82     }
83     // TODO write this
84     Cache.log.error("MappingUtils.mapCutOrPaste not yet implemented");
85   }
86
87   /**
88    * Returns a new EditCommand representing the given command as mapped to the
89    * given sequences. If there is no mapping, returns null.
90    * 
91    * @param command
92    * @param undo
93    * @param mapTo
94    * @param gapChar
95    * @param mappings
96    * @return
97    */
98   public static EditCommand mapEditCommand(EditCommand command,
99           boolean undo, final AlignmentI mapTo, char gapChar,
100           List<AlignedCodonFrame> mappings)
101   {
102     /*
103      * For now, only support mapping from protein edits to cDna
104      */
105     if (!mapTo.isNucleotide())
106     {
107       return null;
108     }
109
110     /*
111      * Cache a copy of the target sequences so we can mimic successive edits on
112      * them. This lets us compute mappings for all edits in the set.
113      */
114     Map<SequenceI, SequenceI> targetCopies = new HashMap<>();
115     for (SequenceI seq : mapTo.getSequences())
116     {
117       SequenceI ds = seq.getDatasetSequence();
118       if (ds != null)
119       {
120         final SequenceI copy = new Sequence(seq);
121         copy.setDatasetSequence(ds);
122         targetCopies.put(ds, copy);
123       }
124     }
125
126     /*
127      * Compute 'source' sequences as they were before applying edits:
128      */
129     Map<SequenceI, SequenceI> originalSequences = command.priorState(undo);
130
131     EditCommand result = new EditCommand();
132     Iterator<Edit> edits = command.getEditIterator(!undo);
133     while (edits.hasNext())
134     {
135       Edit edit = edits.next();
136       if (edit.getAction() == Action.CUT
137               || edit.getAction() == Action.PASTE)
138       {
139         mapCutOrPaste(edit, undo, mapTo.getSequences(), result, mappings);
140       }
141       else if (edit.getAction() == Action.INSERT_GAP
142               || edit.getAction() == Action.DELETE_GAP)
143       {
144         mapInsertOrDelete(edit, undo, originalSequences,
145                 mapTo.getSequences(), targetCopies, gapChar, result,
146                 mappings);
147       }
148     }
149     return result.getSize() > 0 ? result : null;
150   }
151
152   /**
153    * Helper method to map an edit command to insert or delete gaps.
154    * 
155    * @param edit
156    *          the original command
157    * @param undo
158    *          if true, the action is to undo the command
159    * @param originalSequences
160    *          the sequences the command acted on
161    * @param targetSeqs
162    * @param targetCopies
163    * @param gapChar
164    * @param result
165    *          the new EditCommand to add mapped commands to
166    * @param mappings
167    */
168   protected static void mapInsertOrDelete(Edit edit, boolean undo,
169           Map<SequenceI, SequenceI> originalSequences,
170           final List<SequenceI> targetSeqs,
171           Map<SequenceI, SequenceI> targetCopies, char gapChar,
172           EditCommand result, List<AlignedCodonFrame> mappings)
173   {
174     Action action = edit.getAction();
175
176     /*
177      * Invert sense of action if an Undo.
178      */
179     if (undo)
180     {
181       action = action.getUndoAction();
182     }
183     final int count = edit.getNumber();
184     final int editPos = edit.getPosition();
185     for (SequenceI seq : edit.getSequences())
186     {
187       /*
188        * Get residue position at (or to right of) edit location. Note we use our
189        * 'copy' of the sequence before editing for this.
190        */
191       SequenceI ds = seq.getDatasetSequence();
192       if (ds == null)
193       {
194         continue;
195       }
196       final SequenceI actedOn = originalSequences.get(ds);
197       final int seqpos = actedOn.findPosition(editPos);
198
199       /*
200        * Determine all mappings from this position to mapped sequences.
201        */
202       SearchResultsI sr = buildSearchResults(seq, seqpos, mappings);
203
204       if (!sr.isEmpty())
205       {
206         for (SequenceI targetSeq : targetSeqs)
207         {
208           ds = targetSeq.getDatasetSequence();
209           if (ds == null)
210           {
211             continue;
212           }
213           SequenceI copyTarget = targetCopies.get(ds);
214           final int[] match = sr.getResults(copyTarget, 0,
215                   copyTarget.getLength());
216           if (match != null)
217           {
218             final int ratio = 3; // TODO: compute this - how?
219             final int mappedCount = count * ratio;
220
221             /*
222              * Shift Delete start position left, as it acts on positions to its
223              * right.
224              */
225             int mappedEditPos = action == Action.DELETE_GAP
226                     ? match[0] - mappedCount
227                     : match[0];
228             Edit e = result.new Edit(action, new SequenceI[] { targetSeq },
229                     mappedEditPos, mappedCount, gapChar);
230             result.addEdit(e);
231
232             /*
233              * and 'apply' the edit to our copy of its target sequence
234              */
235             if (action == Action.INSERT_GAP)
236             {
237               copyTarget.setSequence(new String(
238                       StringUtils.insertCharAt(copyTarget.getSequence(),
239                               mappedEditPos, mappedCount, gapChar)));
240             }
241             else if (action == Action.DELETE_GAP)
242             {
243               copyTarget.setSequence(new String(
244                       StringUtils.deleteChars(copyTarget.getSequence(),
245                               mappedEditPos, mappedEditPos + mappedCount)));
246             }
247           }
248         }
249       }
250       /*
251        * and 'apply' the edit to our copy of its source sequence
252        */
253       if (action == Action.INSERT_GAP)
254       {
255         actedOn.setSequence(new String(StringUtils.insertCharAt(
256                 actedOn.getSequence(), editPos, count, gapChar)));
257       }
258       else if (action == Action.DELETE_GAP)
259       {
260         actedOn.setSequence(new String(StringUtils.deleteChars(
261                 actedOn.getSequence(), editPos, editPos + count)));
262       }
263     }
264   }
265
266   /**
267    * Returns a SearchResults object describing the mapped region corresponding
268    * to the specified sequence position.
269    * 
270    * @param seq
271    * @param index
272    * @param seqmappings
273    * @return
274    */
275   public static SearchResultsI buildSearchResults(SequenceI seq, int index,
276           List<AlignedCodonFrame> seqmappings)
277   {
278     SearchResultsI results = new SearchResults();
279     addSearchResults(results, seq, index, seqmappings);
280     return results;
281   }
282
283   /**
284    * Adds entries to a SearchResults object describing the mapped region
285    * corresponding to the specified sequence position.
286    * 
287    * @param results
288    * @param seq
289    * @param index
290    * @param seqmappings
291    */
292   public static void addSearchResults(SearchResultsI results, SequenceI seq,
293           int index, List<AlignedCodonFrame> seqmappings)
294   {
295     if (index >= seq.getStart() && index <= seq.getEnd())
296     {
297       for (AlignedCodonFrame acf : seqmappings)
298       {
299         acf.markMappedRegion(seq, index, results);
300       }
301     }
302   }
303
304   /**
305    * Returns a (possibly empty) SequenceGroup containing any sequences in the
306    * mapped viewport corresponding to the given group in the source viewport.
307    * 
308    * @param sg
309    * @param mapFrom
310    * @param mapTo
311    * @return
312    */
313   public static SequenceGroup mapSequenceGroup(final SequenceGroup sg,
314           final AlignViewportI mapFrom, final AlignViewportI mapTo)
315   {
316     /*
317      * Note the SequenceGroup holds aligned sequences, the mappings hold dataset
318      * sequences.
319      */
320     boolean targetIsNucleotide = mapTo.isNucleotide();
321     AlignViewportI protein = targetIsNucleotide ? mapFrom : mapTo;
322     List<AlignedCodonFrame> codonFrames = protein.getAlignment()
323             .getCodonFrames();
324     /*
325      * Copy group name, colours etc, but not sequences or sequence colour scheme
326      */
327     SequenceGroup mappedGroup = new SequenceGroup(sg);
328     mappedGroup.setColourScheme(mapTo.getGlobalColourScheme());
329     mappedGroup.clear();
330
331     int minStartCol = -1;
332     int maxEndCol = -1;
333     final int selectionStartRes = sg.getStartRes();
334     final int selectionEndRes = sg.getEndRes();
335     for (SequenceI selected : sg.getSequences())
336     {
337       /*
338        * Find the widest range of non-gapped positions in the selection range
339        */
340       int firstUngappedPos = selectionStartRes;
341       while (firstUngappedPos <= selectionEndRes
342               && Comparison.isGap(selected.getCharAt(firstUngappedPos)))
343       {
344         firstUngappedPos++;
345       }
346
347       /*
348        * If this sequence is only gaps in the selected range, skip it
349        */
350       if (firstUngappedPos > selectionEndRes)
351       {
352         continue;
353       }
354
355       int lastUngappedPos = selectionEndRes;
356       while (lastUngappedPos >= selectionStartRes
357               && Comparison.isGap(selected.getCharAt(lastUngappedPos)))
358       {
359         lastUngappedPos--;
360       }
361
362       /*
363        * Find the selected start/end residue positions in sequence
364        */
365       int startResiduePos = selected.findPosition(firstUngappedPos);
366       int endResiduePos = selected.findPosition(lastUngappedPos);
367       for (SequenceI seq : mapTo.getAlignment().getSequences())
368       {
369         int mappedStartResidue = 0;
370         int mappedEndResidue = 0;
371         for (AlignedCodonFrame acf : codonFrames)
372         {
373           for (SequenceToSequenceMapping map: acf.getMappings())
374           {
375           if (map.covers(selected) && map.covers(seq))
376           {
377             /*
378              * Found a sequence mapping. Locate the start/end mapped residues.
379              */
380             List<AlignedCodonFrame> mapping = Arrays
381                     .asList(new AlignedCodonFrame[]
382                     { acf });
383             SearchResultsI sr = buildSearchResults(selected,
384                     startResiduePos, mapping);
385             for (SearchResultMatchI m : sr.getResults())
386             {
387               mappedStartResidue = m.getStart();
388               mappedEndResidue = m.getEnd();
389             }
390             sr = buildSearchResults(selected, endResiduePos, mapping);
391             for (SearchResultMatchI m : sr.getResults())
392             {
393               mappedStartResidue = Math.min(mappedStartResidue,
394                       m.getStart());
395               mappedEndResidue = Math.max(mappedEndResidue, m.getEnd());
396             }
397
398             /*
399              * Find the mapped aligned columns, save the range. Note findIndex
400              * returns a base 1 position, SequenceGroup uses base 0
401              */
402             int mappedStartCol = seq.findIndex(mappedStartResidue) - 1;
403             minStartCol = minStartCol == -1 ? mappedStartCol
404                     : Math.min(minStartCol, mappedStartCol);
405             int mappedEndCol = seq.findIndex(mappedEndResidue) - 1;
406             maxEndCol = maxEndCol == -1 ? mappedEndCol
407                     : Math.max(maxEndCol, mappedEndCol);
408             mappedGroup.addSequence(seq, false);
409             break;
410           }
411         }}
412       }
413     }
414     mappedGroup.setStartRes(minStartCol < 0 ? 0 : minStartCol);
415     mappedGroup.setEndRes(maxEndCol < 0 ? 0 : maxEndCol);
416     return mappedGroup;
417   }
418
419   /**
420    * Returns an OrderCommand equivalent to the given one, but acting on mapped
421    * sequences as described by the mappings, or null if no mapping can be made.
422    * 
423    * @param command
424    *          the original order command
425    * @param undo
426    *          if true, the action is to undo the sort
427    * @param mapTo
428    *          the alignment we are mapping to
429    * @param mappings
430    *          the mappings available
431    * @return
432    */
433   public static CommandI mapOrderCommand(OrderCommand command, boolean undo,
434           AlignmentI mapTo, List<AlignedCodonFrame> mappings)
435   {
436     SequenceI[] sortOrder = command.getSequenceOrder(undo);
437     List<SequenceI> mappedOrder = new ArrayList<>();
438     int j = 0;
439
440     /*
441      * Assumption: we are only interested in a cDNA/protein mapping; refactor in
442      * future if we want to support sorting (c)dna as (c)dna or protein as
443      * protein
444      */
445     boolean mappingToNucleotide = mapTo.isNucleotide();
446     for (SequenceI seq : sortOrder)
447     {
448       for (AlignedCodonFrame acf : mappings)
449       {
450         SequenceI mappedSeq = mappingToNucleotide ? acf.getDnaForAaSeq(seq)
451                 : acf.getAaForDnaSeq(seq);
452         if (mappedSeq != null)
453         {
454           for (SequenceI seq2 : mapTo.getSequences())
455           {
456             if (seq2.getDatasetSequence() == mappedSeq)
457             {
458               mappedOrder.add(seq2);
459               j++;
460               break;
461             }
462           }
463         }
464       }
465     }
466
467     /*
468      * Return null if no mappings made.
469      */
470     if (j == 0)
471     {
472       return null;
473     }
474
475     /*
476      * Add any unmapped sequences on the end of the sort in their original
477      * ordering.
478      */
479     if (j < mapTo.getHeight())
480     {
481       for (SequenceI seq : mapTo.getSequences())
482       {
483         if (!mappedOrder.contains(seq))
484         {
485           mappedOrder.add(seq);
486         }
487       }
488     }
489
490     /*
491      * Have to sort the sequences before constructing the OrderCommand - which
492      * then resorts them?!?
493      */
494     final SequenceI[] mappedOrderArray = mappedOrder
495             .toArray(new SequenceI[mappedOrder.size()]);
496     SequenceI[] oldOrder = mapTo.getSequencesArray();
497     AlignmentSorter.sortBy(mapTo, new AlignmentOrder(mappedOrderArray));
498     final OrderCommand result = new OrderCommand(command.getDescription(),
499             oldOrder, mapTo);
500     return result;
501   }
502
503   /**
504    * Returns a ColumnSelection in the 'mapTo' view which corresponds to the
505    * given selection in the 'mapFrom' view. We assume one is nucleotide, the
506    * other is protein (and holds the mappings from codons to protein residues).
507    * 
508    * @param colsel
509    * @param mapFrom
510    * @param mapTo
511    * @return
512    */
513   public static void mapColumnSelection(ColumnSelection colsel,
514           HiddenColumns hiddencols, AlignViewportI mapFrom,
515           AlignViewportI mapTo, ColumnSelection newColSel,
516           HiddenColumns newHidden)
517   {
518     boolean targetIsNucleotide = mapTo.isNucleotide();
519     AlignViewportI protein = targetIsNucleotide ? mapFrom : mapTo;
520     List<AlignedCodonFrame> codonFrames = protein.getAlignment()
521             .getCodonFrames();
522
523     if (colsel == null)
524     {
525       return; // mappedColumns;
526     }
527
528     char fromGapChar = mapFrom.getAlignment().getGapCharacter();
529
530     /*
531      * For each mapped column, find the range of columns that residues in that
532      * column map to.
533      */
534     List<SequenceI> fromSequences = mapFrom.getAlignment().getSequences();
535     List<SequenceI> toSequences = mapTo.getAlignment().getSequences();
536
537     for (Integer sel : colsel.getSelected())
538     {
539       mapColumn(sel.intValue(), codonFrames, newColSel, fromSequences,
540               toSequences, fromGapChar);
541     }
542
543     Iterator<int[]> regions = hiddencols.iterator();
544     while (regions.hasNext())
545     {
546       mapHiddenColumns(regions.next(), codonFrames, newHidden,
547               fromSequences, toSequences, fromGapChar);
548     }
549     return; // mappedColumns;
550   }
551
552   /**
553    * Helper method that maps a [start, end] hidden column range to its mapped
554    * equivalent
555    * 
556    * @param hidden
557    * @param mappings
558    * @param mappedColumns
559    * @param fromSequences
560    * @param toSequences
561    * @param fromGapChar
562    */
563   protected static void mapHiddenColumns(int[] hidden,
564           List<AlignedCodonFrame> mappings, HiddenColumns mappedColumns,
565           List<SequenceI> fromSequences, List<SequenceI> toSequences,
566           char fromGapChar)
567   {
568     for (int col = hidden[0]; col <= hidden[1]; col++)
569     {
570       int[] mappedTo = findMappedColumns(col, mappings, fromSequences,
571               toSequences, fromGapChar);
572
573       /*
574        * Add the range of hidden columns to the mapped selection (converting
575        * base 1 to base 0).
576        */
577       if (mappedTo != null)
578       {
579         mappedColumns.hideColumns(mappedTo[0] - 1, mappedTo[1] - 1);
580       }
581     }
582   }
583
584   /**
585    * Helper method to map one column selection
586    * 
587    * @param col
588    *          the column number (base 0)
589    * @param mappings
590    *          the sequence mappings
591    * @param mappedColumns
592    *          the mapped column selections to add to
593    * @param fromSequences
594    * @param toSequences
595    * @param fromGapChar
596    */
597   protected static void mapColumn(int col, List<AlignedCodonFrame> mappings,
598           ColumnSelection mappedColumns, List<SequenceI> fromSequences,
599           List<SequenceI> toSequences, char fromGapChar)
600   {
601     int[] mappedTo = findMappedColumns(col, mappings, fromSequences,
602             toSequences, fromGapChar);
603
604     /*
605      * Add the range of mapped columns to the mapped selection (converting
606      * base 1 to base 0). Note that this may include intron-only regions which
607      * lie between the start and end ranges of the selection.
608      */
609     if (mappedTo != null)
610     {
611       for (int i = mappedTo[0]; i <= mappedTo[1]; i++)
612       {
613         mappedColumns.addElement(i - 1);
614       }
615     }
616   }
617
618   /**
619    * Helper method to find the range of columns mapped to from one column.
620    * Returns the maximal range of columns mapped to from all sequences in the
621    * source column, or null if no mappings were found.
622    * 
623    * @param col
624    * @param mappings
625    * @param fromSequences
626    * @param toSequences
627    * @param fromGapChar
628    * @return
629    */
630   protected static int[] findMappedColumns(int col,
631           List<AlignedCodonFrame> mappings, List<SequenceI> fromSequences,
632           List<SequenceI> toSequences, char fromGapChar)
633   {
634     int[] mappedTo = new int[] { Integer.MAX_VALUE, Integer.MIN_VALUE };
635     boolean found = false;
636
637     /*
638      * For each sequence in the 'from' alignment
639      */
640     for (SequenceI fromSeq : fromSequences)
641     {
642       /*
643        * Ignore gaps (unmapped anyway)
644        */
645       if (fromSeq.getCharAt(col) == fromGapChar)
646       {
647         continue;
648       }
649
650       /*
651        * Get the residue position and find the mapped position.
652        */
653       int residuePos = fromSeq.findPosition(col);
654       SearchResultsI sr = buildSearchResults(fromSeq, residuePos, mappings);
655       for (SearchResultMatchI m : sr.getResults())
656       {
657         int mappedStartResidue = m.getStart();
658         int mappedEndResidue = m.getEnd();
659         SequenceI mappedSeq = m.getSequence();
660
661         /*
662          * Locate the aligned sequence whose dataset is mappedSeq. TODO a
663          * datamodel that can do this efficiently.
664          */
665         for (SequenceI toSeq : toSequences)
666         {
667           if (toSeq.getDatasetSequence() == mappedSeq)
668           {
669             int mappedStartCol = toSeq.findIndex(mappedStartResidue);
670             int mappedEndCol = toSeq.findIndex(mappedEndResidue);
671             mappedTo[0] = Math.min(mappedTo[0], mappedStartCol);
672             mappedTo[1] = Math.max(mappedTo[1], mappedEndCol);
673             found = true;
674             break;
675             // note: remove break if we ever want to map one to many sequences
676           }
677         }
678       }
679     }
680     return found ? mappedTo : null;
681   }
682
683   /**
684    * Returns the mapped codon or codons for a given aligned sequence column
685    * position (base 0).
686    * 
687    * @param seq
688    *          an aligned peptide sequence
689    * @param col
690    *          an aligned column position (base 0)
691    * @param mappings
692    *          a set of codon mappings
693    * @return the bases of the mapped codon(s) in the cDNA dataset sequence(s),
694    *         or an empty list if none found
695    */
696   public static List<char[]> findCodonsFor(SequenceI seq, int col,
697           List<AlignedCodonFrame> mappings)
698   {
699     List<char[]> result = new ArrayList<>();
700     int dsPos = seq.findPosition(col);
701     for (AlignedCodonFrame mapping : mappings)
702     {
703       if (mapping.involvesSequence(seq))
704       {
705         List<char[]> codons = mapping
706                 .getMappedCodons(seq.getDatasetSequence(), dsPos);
707         if (codons != null)
708         {
709           result.addAll(codons);
710         }
711       }
712     }
713     return result;
714   }
715
716   /**
717    * Converts a series of [start, end] range pairs into an array of individual
718    * positions. This also caters for 'reverse strand' (start > end) cases.
719    * 
720    * @param ranges
721    * @return
722    */
723   public static int[] flattenRanges(int[] ranges)
724   {
725     /*
726      * Count how many positions altogether
727      */
728     int count = 0;
729     for (int i = 0; i < ranges.length - 1; i += 2)
730     {
731       count += Math.abs(ranges[i + 1] - ranges[i]) + 1;
732     }
733
734     int[] result = new int[count];
735     int k = 0;
736     for (int i = 0; i < ranges.length - 1; i += 2)
737     {
738       int from = ranges[i];
739       final int to = ranges[i + 1];
740       int step = from <= to ? 1 : -1;
741       do
742       {
743         result[k++] = from;
744         from += step;
745       } while (from != to + step);
746     }
747     return result;
748   }
749
750   /**
751    * Returns a list of any mappings that are from or to the given (aligned or
752    * dataset) sequence.
753    * 
754    * @param sequence
755    * @param mappings
756    * @return
757    */
758   public static List<AlignedCodonFrame> findMappingsForSequence(
759           SequenceI sequence, List<AlignedCodonFrame> mappings)
760   {
761     return findMappingsForSequenceAndOthers(sequence, mappings, null);
762   }
763
764   /**
765    * Returns a list of any mappings that are from or to the given (aligned or
766    * dataset) sequence, optionally limited to mappings involving one of a given
767    * list of sequences.
768    * 
769    * @param sequence
770    * @param mappings
771    * @param filterList
772    * @return
773    */
774   public static List<AlignedCodonFrame> findMappingsForSequenceAndOthers(
775           SequenceI sequence, List<AlignedCodonFrame> mappings,
776           List<SequenceI> filterList)
777   {
778     List<AlignedCodonFrame> result = new ArrayList<>();
779     if (sequence == null || mappings == null)
780     {
781       return result;
782     }
783     for (AlignedCodonFrame mapping : mappings)
784     {
785       if (mapping.involvesSequence(sequence))
786       {
787         if (filterList != null)
788         {
789           for (SequenceI otherseq : filterList)
790           {
791             SequenceI otherDataset = otherseq.getDatasetSequence();
792             if (otherseq == sequence
793                     || otherseq == sequence.getDatasetSequence()
794                     || (otherDataset != null && (otherDataset == sequence
795                             || otherDataset == sequence
796                                     .getDatasetSequence())))
797             {
798               // skip sequences in subset which directly relate to sequence
799               continue;
800             }
801             if (mapping.involvesSequence(otherseq))
802             {
803               // selected a mapping contained in subselect alignment
804               result.add(mapping);
805               break;
806             }
807           }
808         }
809         else
810         {
811           result.add(mapping);
812         }
813       }
814     }
815     return result;
816   }
817
818   /**
819    * Returns the total length of the supplied ranges, which may be as single
820    * [start, end] or multiple [start, end, start, end ...]
821    * 
822    * @param ranges
823    * @return
824    */
825   public static int getLength(List<int[]> ranges)
826   {
827     if (ranges == null)
828     {
829       return 0;
830     }
831     int length = 0;
832     for (int[] range : ranges)
833     {
834       if (range.length % 2 != 0)
835       {
836         Cache.log.error(
837                 "Error unbalance start/end ranges: " + ranges.toString());
838         return 0;
839       }
840       for (int i = 0; i < range.length - 1; i += 2)
841       {
842         length += Math.abs(range[i + 1] - range[i]) + 1;
843       }
844     }
845     return length;
846   }
847
848   /**
849    * Answers true if any range includes the given value
850    * 
851    * @param ranges
852    * @param value
853    * @return
854    */
855   public static boolean contains(List<int[]> ranges, int value)
856   {
857     if (ranges == null)
858     {
859       return false;
860     }
861     for (int[] range : ranges)
862     {
863       if (range[1] >= range[0] && value >= range[0] && value <= range[1])
864       {
865         /*
866          * value within ascending range
867          */
868         return true;
869       }
870       if (range[1] < range[0] && value <= range[0] && value >= range[1])
871       {
872         /*
873          * value within descending range
874          */
875         return true;
876       }
877     }
878     return false;
879   }
880
881   /**
882    * Removes a specified number of positions from the start of a ranges list.
883    * For example, could be used to adjust cds ranges to allow for an incomplete
884    * start codon. Subranges are removed completely, or their start positions
885    * adjusted, until the required number of positions has been removed from the
886    * range. Reverse strand ranges are supported. The input array is not
887    * modified.
888    * 
889    * @param removeCount
890    * @param ranges
891    *          an array of [start, end, start, end...] positions
892    * @return a new array with the first removeCount positions removed
893    */
894   public static int[] removeStartPositions(int removeCount,
895           final int[] ranges)
896   {
897     if (removeCount <= 0)
898     {
899       return ranges;
900     }
901
902     int[] copy = Arrays.copyOf(ranges, ranges.length);
903     int sxpos = -1;
904     int cdspos = 0;
905     for (int x = 0; x < copy.length && sxpos == -1; x += 2)
906     {
907       cdspos += Math.abs(copy[x + 1] - copy[x]) + 1;
908       if (removeCount < cdspos)
909       {
910         /*
911          * we have removed enough, time to finish
912          */
913         sxpos = x;
914
915         /*
916          * increment start of first exon, or decrement if reverse strand
917          */
918         if (copy[x] <= copy[x + 1])
919         {
920           copy[x] = copy[x + 1] - cdspos + removeCount + 1;
921         }
922         else
923         {
924           copy[x] = copy[x + 1] + cdspos - removeCount - 1;
925         }
926         break;
927       }
928     }
929
930     if (sxpos > 0)
931     {
932       /*
933        * we dropped at least one entire sub-range - compact the array
934        */
935       int[] nxon = new int[copy.length - sxpos];
936       System.arraycopy(copy, sxpos, nxon, 0, copy.length - sxpos);
937       return nxon;
938     }
939     return copy;
940   }
941
942   /**
943    * Answers true if range's start-end positions include those of queryRange,
944    * where either range might be in reverse direction, else false
945    * 
946    * @param range
947    *          a start-end range
948    * @param queryRange
949    *          a candidate subrange of range (start2-end2)
950    * @return
951    */
952   public static boolean rangeContains(int[] range, int[] queryRange)
953   {
954     if (range == null || queryRange == null || range.length != 2
955             || queryRange.length != 2)
956     {
957       /*
958        * invalid arguments
959        */
960       return false;
961     }
962
963     int min = Math.min(range[0], range[1]);
964     int max = Math.max(range[0], range[1]);
965
966     return (min <= queryRange[0] && max >= queryRange[0]
967             && min <= queryRange[1] && max >= queryRange[1]);
968   }
969
970   /**
971    * Removes the specified number of positions from the given ranges. Provided
972    * to allow a stop codon to be stripped from a CDS sequence so that it matches
973    * the peptide translation length.
974    * 
975    * @param positions
976    * @param ranges
977    *          a list of (single) [start, end] ranges
978    * @return
979    */
980   public static void removeEndPositions(int positions, List<int[]> ranges)
981   {
982     int toRemove = positions;
983     Iterator<int[]> it = new ReverseListIterator<>(ranges);
984     while (toRemove > 0)
985     {
986       int[] endRange = it.next();
987       if (endRange.length != 2)
988       {
989         /*
990          * not coded for [start1, end1, start2, end2, ...]
991          */
992         Cache.log.error(
993                 "MappingUtils.removeEndPositions doesn't handle multiple  ranges");
994         return;
995       }
996
997       int length = endRange[1] - endRange[0] + 1;
998       if (length <= 0)
999       {
1000         /*
1001          * not coded for a reverse strand range (end < start)
1002          */
1003         Cache.log.error(
1004                 "MappingUtils.removeEndPositions doesn't handle reverse strand");
1005         return;
1006       }
1007       if (length > toRemove)
1008       {
1009         endRange[1] -= toRemove;
1010         toRemove = 0;
1011       }
1012       else
1013       {
1014         toRemove -= length;
1015         it.remove();
1016       }
1017     }
1018   }
1019
1020   /**
1021    * Converts a list of {@code start-end} ranges to a single array of
1022    * {@code start1, end1, start2, ... } ranges
1023    * 
1024    * @param ranges
1025    * @return
1026    */
1027   public static int[] rangeListToArray(List<int[]> ranges)
1028   {
1029     int rangeCount = ranges.size();
1030     int[] result = new int[rangeCount * 2];
1031     int j = 0;
1032     for (int i = 0; i < rangeCount; i++)
1033     {
1034       int[] range = ranges.get(i);
1035       result[j++] = range[0];
1036       result[j++] = range[1];
1037     }
1038     return result;
1039   }
1040
1041   /*
1042    * Returns the maximal start-end positions in the given (ordered) list of
1043    * ranges which is overlapped by the given begin-end range, or null if there
1044    * is no overlap.
1045    * 
1046    * <pre>
1047    * Examples:
1048    *   if ranges is {[4, 8], [10, 12], [16, 19]}
1049    * then
1050    *   findOverlap(ranges, 1, 20) == [4, 19]
1051    *   findOverlap(ranges, 6, 11) == [6, 11]
1052    *   findOverlap(ranges, 9, 15) == [10, 12]
1053    *   findOverlap(ranges, 13, 15) == null
1054    * </pre>
1055    * 
1056    * @param ranges
1057    * @param begin
1058    * @param end
1059    * @return
1060    */
1061   protected static int[] findOverlap(List<int[]> ranges, final int begin,
1062           final int end)
1063   {
1064     boolean foundStart = false;
1065     int from = 0;
1066     int to = 0;
1067
1068     /*
1069      * traverse the ranges to find the first position (if any) >= begin,
1070      * and the last position (if any) <= end
1071      */
1072     for (int[] range : ranges)
1073     {
1074       if (!foundStart)
1075       {
1076         if (range[0] >= begin)
1077         {
1078           /*
1079            * first range that starts with, or follows, begin
1080            */
1081           foundStart = true;
1082           from = Math.max(range[0], begin);
1083         }
1084         else if (range[1] >= begin)
1085         {
1086           /*
1087            * first range that contains begin
1088            */
1089           foundStart = true;
1090           from = begin;
1091         }
1092       }
1093
1094       if (range[0] <= end)
1095       {
1096         to = Math.min(end, range[1]);
1097       }
1098     }
1099
1100     return foundStart && to >= from ? new int[] { from, to } : null;
1101   }
1102 }