Merge branch 'feature/JAL-3143ensemblJSON' into trialMerge
[jalview.git] / src / jalview / analysis / AlignmentUtils.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.analysis;
22
23 import static jalview.io.gff.GffConstants.CLINICAL_SIGNIFICANCE;
24
25 import jalview.datamodel.AlignedCodon;
26 import jalview.datamodel.AlignedCodonFrame;
27 import jalview.datamodel.AlignedCodonFrame.SequenceToSequenceMapping;
28 import jalview.datamodel.Alignment;
29 import jalview.datamodel.AlignmentAnnotation;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.DBRefEntry;
32 import jalview.datamodel.GeneLociI;
33 import jalview.datamodel.IncompleteCodonException;
34 import jalview.datamodel.Mapping;
35 import jalview.datamodel.Sequence;
36 import jalview.datamodel.SequenceFeature;
37 import jalview.datamodel.SequenceGroup;
38 import jalview.datamodel.SequenceI;
39 import jalview.datamodel.features.SequenceFeatures;
40 import jalview.io.gff.Gff3Helper;
41 import jalview.io.gff.SequenceOntologyI;
42 import jalview.schemes.ResidueProperties;
43 import jalview.util.Comparison;
44 import jalview.util.DBRefUtils;
45 import jalview.util.IntRangeComparator;
46 import jalview.util.MapList;
47 import jalview.util.MappingUtils;
48 import jalview.util.StringUtils;
49
50 import java.io.UnsupportedEncodingException;
51 import java.net.URLEncoder;
52 import java.util.ArrayList;
53 import java.util.Arrays;
54 import java.util.Collection;
55 import java.util.Collections;
56 import java.util.HashMap;
57 import java.util.HashSet;
58 import java.util.Iterator;
59 import java.util.LinkedHashMap;
60 import java.util.List;
61 import java.util.Map;
62 import java.util.Map.Entry;
63 import java.util.NoSuchElementException;
64 import java.util.Set;
65 import java.util.SortedMap;
66 import java.util.TreeMap;
67
68 /**
69  * grab bag of useful alignment manipulation operations Expect these to be
70  * refactored elsewhere at some point.
71  * 
72  * @author jimp
73  * 
74  */
75 public class AlignmentUtils
76 {
77   private static final int CODON_LENGTH = 3;
78
79   private static final String SEQUENCE_VARIANT = "sequence_variant:";
80
81   /*
82    * the 'id' attribute is provided for variant features fetched from
83    * Ensembl using its REST service with JSON format 
84    */
85   public static final String VARIANT_ID = "id";
86
87   /**
88    * A data model to hold the 'normal' base value at a position, and an optional
89    * sequence variant feature
90    */
91   static final class DnaVariant
92   {
93     final String base;
94
95     SequenceFeature variant;
96
97     DnaVariant(String nuc)
98     {
99       base = nuc;
100       variant = null;
101     }
102
103     DnaVariant(String nuc, SequenceFeature var)
104     {
105       base = nuc;
106       variant = var;
107     }
108
109     public String getSource()
110     {
111       return variant == null ? null : variant.getFeatureGroup();
112     }
113
114     /**
115      * toString for aid in the debugger only
116      */
117     @Override
118     public String toString()
119     {
120       return base + ":" + (variant == null ? "" : variant.getDescription());
121     }
122   }
123
124   /**
125    * given an existing alignment, create a new alignment including all, or up to
126    * flankSize additional symbols from each sequence's dataset sequence
127    * 
128    * @param core
129    * @param flankSize
130    * @return AlignmentI
131    */
132   public static AlignmentI expandContext(AlignmentI core, int flankSize)
133   {
134     List<SequenceI> sq = new ArrayList<>();
135     int maxoffset = 0;
136     for (SequenceI s : core.getSequences())
137     {
138       SequenceI newSeq = s.deriveSequence();
139       final int newSeqStart = newSeq.getStart() - 1;
140       if (newSeqStart > maxoffset
141               && newSeq.getDatasetSequence().getStart() < s.getStart())
142       {
143         maxoffset = newSeqStart;
144       }
145       sq.add(newSeq);
146     }
147     if (flankSize > -1)
148     {
149       maxoffset = Math.min(maxoffset, flankSize);
150     }
151
152     /*
153      * now add offset left and right to create an expanded alignment
154      */
155     for (SequenceI s : sq)
156     {
157       SequenceI ds = s;
158       while (ds.getDatasetSequence() != null)
159       {
160         ds = ds.getDatasetSequence();
161       }
162       int s_end = s.findPosition(s.getStart() + s.getLength());
163       // find available flanking residues for sequence
164       int ustream_ds = s.getStart() - ds.getStart();
165       int dstream_ds = ds.getEnd() - s_end;
166
167       // build new flanked sequence
168
169       // compute gap padding to start of flanking sequence
170       int offset = maxoffset - ustream_ds;
171
172       // padding is gapChar x ( maxoffset - min(ustream_ds, flank)
173       if (flankSize >= 0)
174       {
175         if (flankSize < ustream_ds)
176         {
177           // take up to flankSize residues
178           offset = maxoffset - flankSize;
179           ustream_ds = flankSize;
180         }
181         if (flankSize <= dstream_ds)
182         {
183           dstream_ds = flankSize - 1;
184         }
185       }
186       // TODO use Character.toLowerCase to avoid creating String objects?
187       char[] upstream = new String(ds
188               .getSequence(s.getStart() - 1 - ustream_ds, s.getStart() - 1))
189                       .toLowerCase().toCharArray();
190       char[] downstream = new String(
191               ds.getSequence(s_end - 1, s_end + dstream_ds)).toLowerCase()
192                       .toCharArray();
193       char[] coreseq = s.getSequence();
194       char[] nseq = new char[offset + upstream.length + downstream.length
195               + coreseq.length];
196       char c = core.getGapCharacter();
197
198       int p = 0;
199       for (; p < offset; p++)
200       {
201         nseq[p] = c;
202       }
203
204       System.arraycopy(upstream, 0, nseq, p, upstream.length);
205       System.arraycopy(coreseq, 0, nseq, p + upstream.length,
206               coreseq.length);
207       System.arraycopy(downstream, 0, nseq,
208               p + coreseq.length + upstream.length, downstream.length);
209       s.setSequence(new String(nseq));
210       s.setStart(s.getStart() - ustream_ds);
211       s.setEnd(s_end + downstream.length);
212     }
213     AlignmentI newAl = new jalview.datamodel.Alignment(
214             sq.toArray(new SequenceI[0]));
215     for (SequenceI s : sq)
216     {
217       if (s.getAnnotation() != null)
218       {
219         for (AlignmentAnnotation aa : s.getAnnotation())
220         {
221           aa.adjustForAlignment(); // JAL-1712 fix
222           newAl.addAnnotation(aa);
223         }
224       }
225     }
226     newAl.setDataset(core.getDataset());
227     return newAl;
228   }
229
230   /**
231    * Returns the index (zero-based position) of a sequence in an alignment, or
232    * -1 if not found.
233    * 
234    * @param al
235    * @param seq
236    * @return
237    */
238   public static int getSequenceIndex(AlignmentI al, SequenceI seq)
239   {
240     int result = -1;
241     int pos = 0;
242     for (SequenceI alSeq : al.getSequences())
243     {
244       if (alSeq == seq)
245       {
246         result = pos;
247         break;
248       }
249       pos++;
250     }
251     return result;
252   }
253
254   /**
255    * Returns a map of lists of sequences in the alignment, keyed by sequence
256    * name. For use in mapping between different alignment views of the same
257    * sequences.
258    * 
259    * @see jalview.datamodel.AlignmentI#getSequencesByName()
260    */
261   public static Map<String, List<SequenceI>> getSequencesByName(
262           AlignmentI al)
263   {
264     Map<String, List<SequenceI>> theMap = new LinkedHashMap<>();
265     for (SequenceI seq : al.getSequences())
266     {
267       String name = seq.getName();
268       if (name != null)
269       {
270         List<SequenceI> seqs = theMap.get(name);
271         if (seqs == null)
272         {
273           seqs = new ArrayList<>();
274           theMap.put(name, seqs);
275         }
276         seqs.add(seq);
277       }
278     }
279     return theMap;
280   }
281
282   /**
283    * Build mapping of protein to cDNA alignment. Mappings are made between
284    * sequences where the cDNA translates to the protein sequence. Any new
285    * mappings are added to the protein alignment. Returns true if any mappings
286    * either already exist or were added, else false.
287    * 
288    * @param proteinAlignment
289    * @param cdnaAlignment
290    * @return
291    */
292   public static boolean mapProteinAlignmentToCdna(
293           final AlignmentI proteinAlignment, final AlignmentI cdnaAlignment)
294   {
295     if (proteinAlignment == null || cdnaAlignment == null)
296     {
297       return false;
298     }
299
300     Set<SequenceI> mappedDna = new HashSet<>();
301     Set<SequenceI> mappedProtein = new HashSet<>();
302
303     /*
304      * First pass - map sequences where cross-references exist. This include
305      * 1-to-many mappings to support, for example, variant cDNA.
306      */
307     boolean mappingPerformed = mapProteinToCdna(proteinAlignment,
308             cdnaAlignment, mappedDna, mappedProtein, true);
309
310     /*
311      * Second pass - map sequences where no cross-references exist. This only
312      * does 1-to-1 mappings and assumes corresponding sequences are in the same
313      * order in the alignments.
314      */
315     mappingPerformed |= mapProteinToCdna(proteinAlignment, cdnaAlignment,
316             mappedDna, mappedProtein, false);
317     return mappingPerformed;
318   }
319
320   /**
321    * Make mappings between compatible sequences (where the cDNA translation
322    * matches the protein).
323    * 
324    * @param proteinAlignment
325    * @param cdnaAlignment
326    * @param mappedDna
327    *          a set of mapped DNA sequences (to add to)
328    * @param mappedProtein
329    *          a set of mapped Protein sequences (to add to)
330    * @param xrefsOnly
331    *          if true, only map sequences where xrefs exist
332    * @return
333    */
334   protected static boolean mapProteinToCdna(
335           final AlignmentI proteinAlignment, final AlignmentI cdnaAlignment,
336           Set<SequenceI> mappedDna, Set<SequenceI> mappedProtein,
337           boolean xrefsOnly)
338   {
339     boolean mappingExistsOrAdded = false;
340     List<SequenceI> thisSeqs = proteinAlignment.getSequences();
341     for (SequenceI aaSeq : thisSeqs)
342     {
343       boolean proteinMapped = false;
344       AlignedCodonFrame acf = new AlignedCodonFrame();
345
346       for (SequenceI cdnaSeq : cdnaAlignment.getSequences())
347       {
348         /*
349          * Always try to map if sequences have xref to each other; this supports
350          * variant cDNA or alternative splicing for a protein sequence.
351          * 
352          * If no xrefs, try to map progressively, assuming that alignments have
353          * mappable sequences in corresponding order. These are not
354          * many-to-many, as that would risk mixing species with similar cDNA
355          * sequences.
356          */
357         if (xrefsOnly && !AlignmentUtils.haveCrossRef(aaSeq, cdnaSeq))
358         {
359           continue;
360         }
361
362         /*
363          * Don't map non-xrefd sequences more than once each. This heuristic
364          * allows us to pair up similar sequences in ordered alignments.
365          */
366         if (!xrefsOnly && (mappedProtein.contains(aaSeq)
367                 || mappedDna.contains(cdnaSeq)))
368         {
369           continue;
370         }
371         if (mappingExists(proteinAlignment.getCodonFrames(),
372                 aaSeq.getDatasetSequence(), cdnaSeq.getDatasetSequence()))
373         {
374           mappingExistsOrAdded = true;
375         }
376         else
377         {
378           MapList map = mapCdnaToProtein(aaSeq, cdnaSeq);
379           if (map != null)
380           {
381             acf.addMap(cdnaSeq, aaSeq, map);
382             mappingExistsOrAdded = true;
383             proteinMapped = true;
384             mappedDna.add(cdnaSeq);
385             mappedProtein.add(aaSeq);
386           }
387         }
388       }
389       if (proteinMapped)
390       {
391         proteinAlignment.addCodonFrame(acf);
392       }
393     }
394     return mappingExistsOrAdded;
395   }
396
397   /**
398    * Answers true if the mappings include one between the given (dataset)
399    * sequences.
400    */
401   protected static boolean mappingExists(List<AlignedCodonFrame> mappings,
402           SequenceI aaSeq, SequenceI cdnaSeq)
403   {
404     if (mappings != null)
405     {
406       for (AlignedCodonFrame acf : mappings)
407       {
408         if (cdnaSeq == acf.getDnaForAaSeq(aaSeq))
409         {
410           return true;
411         }
412       }
413     }
414     return false;
415   }
416
417   /**
418    * Builds a mapping (if possible) of a cDNA to a protein sequence.
419    * <ul>
420    * <li>first checks if the cdna translates exactly to the protein
421    * sequence</li>
422    * <li>else checks for translation after removing a STOP codon</li>
423    * <li>else checks for translation after removing a START codon</li>
424    * <li>if that fails, inspect CDS features on the cDNA sequence</li>
425    * </ul>
426    * Returns null if no mapping is determined.
427    * 
428    * @param proteinSeq
429    *          the aligned protein sequence
430    * @param cdnaSeq
431    *          the aligned cdna sequence
432    * @return
433    */
434   public static MapList mapCdnaToProtein(SequenceI proteinSeq,
435           SequenceI cdnaSeq)
436   {
437     /*
438      * Here we handle either dataset sequence set (desktop) or absent (applet).
439      * Use only the char[] form of the sequence to avoid creating possibly large
440      * String objects.
441      */
442     final SequenceI proteinDataset = proteinSeq.getDatasetSequence();
443     char[] aaSeqChars = proteinDataset != null
444             ? proteinDataset.getSequence()
445             : proteinSeq.getSequence();
446     final SequenceI cdnaDataset = cdnaSeq.getDatasetSequence();
447     char[] cdnaSeqChars = cdnaDataset != null ? cdnaDataset.getSequence()
448             : cdnaSeq.getSequence();
449     if (aaSeqChars == null || cdnaSeqChars == null)
450     {
451       return null;
452     }
453
454     /*
455      * cdnaStart/End, proteinStartEnd are base 1 (for dataset sequence mapping)
456      */
457     final int mappedLength = CODON_LENGTH * aaSeqChars.length;
458     int cdnaLength = cdnaSeqChars.length;
459     int cdnaStart = cdnaSeq.getStart();
460     int cdnaEnd = cdnaSeq.getEnd();
461     final int proteinStart = proteinSeq.getStart();
462     final int proteinEnd = proteinSeq.getEnd();
463
464     /*
465      * If lengths don't match, try ignoring stop codon (if present)
466      */
467     if (cdnaLength != mappedLength && cdnaLength > 2)
468     {
469       String lastCodon = String.valueOf(cdnaSeqChars,
470               cdnaLength - CODON_LENGTH, CODON_LENGTH).toUpperCase();
471       for (String stop : ResidueProperties.STOP_CODONS)
472       {
473         if (lastCodon.equals(stop))
474         {
475           cdnaEnd -= CODON_LENGTH;
476           cdnaLength -= CODON_LENGTH;
477           break;
478         }
479       }
480     }
481
482     /*
483      * If lengths still don't match, try ignoring start codon.
484      */
485     int startOffset = 0;
486     if (cdnaLength != mappedLength && cdnaLength > 2
487             && String.valueOf(cdnaSeqChars, 0, CODON_LENGTH).toUpperCase()
488                     .equals(ResidueProperties.START))
489     {
490       startOffset += CODON_LENGTH;
491       cdnaStart += CODON_LENGTH;
492       cdnaLength -= CODON_LENGTH;
493     }
494
495     if (translatesAs(cdnaSeqChars, startOffset, aaSeqChars))
496     {
497       /*
498        * protein is translation of dna (+/- start/stop codons)
499        */
500       MapList map = new MapList(new int[] { cdnaStart, cdnaEnd },
501               new int[]
502               { proteinStart, proteinEnd }, CODON_LENGTH, 1);
503       return map;
504     }
505
506     /*
507      * translation failed - try mapping CDS annotated regions of dna
508      */
509     return mapCdsToProtein(cdnaSeq, proteinSeq);
510   }
511
512   /**
513    * Test whether the given cdna sequence, starting at the given offset,
514    * translates to the given amino acid sequence, using the standard translation
515    * table. Designed to fail fast i.e. as soon as a mismatch position is found.
516    * 
517    * @param cdnaSeqChars
518    * @param cdnaStart
519    * @param aaSeqChars
520    * @return
521    */
522   protected static boolean translatesAs(char[] cdnaSeqChars, int cdnaStart,
523           char[] aaSeqChars)
524   {
525     if (cdnaSeqChars == null || aaSeqChars == null)
526     {
527       return false;
528     }
529
530     int aaPos = 0;
531     int dnaPos = cdnaStart;
532     for (; dnaPos < cdnaSeqChars.length - 2
533             && aaPos < aaSeqChars.length; dnaPos += CODON_LENGTH, aaPos++)
534     {
535       String codon = String.valueOf(cdnaSeqChars, dnaPos, CODON_LENGTH);
536       final String translated = ResidueProperties.codonTranslate(codon);
537
538       /*
539        * allow * in protein to match untranslatable in dna
540        */
541       final char aaRes = aaSeqChars[aaPos];
542       if ((translated == null || ResidueProperties.STOP.equals(translated))
543               && aaRes == '*')
544       {
545         continue;
546       }
547       if (translated == null || !(aaRes == translated.charAt(0)))
548       {
549         // debug
550         // System.out.println(("Mismatch at " + i + "/" + aaResidue + ": "
551         // + codon + "(" + translated + ") != " + aaRes));
552         return false;
553       }
554     }
555
556     /*
557      * check we matched all of the protein sequence
558      */
559     if (aaPos != aaSeqChars.length)
560     {
561       return false;
562     }
563
564     /*
565      * check we matched all of the dna except
566      * for optional trailing STOP codon
567      */
568     if (dnaPos == cdnaSeqChars.length)
569     {
570       return true;
571     }
572     if (dnaPos == cdnaSeqChars.length - CODON_LENGTH)
573     {
574       String codon = String.valueOf(cdnaSeqChars, dnaPos, CODON_LENGTH);
575       if (ResidueProperties.STOP
576               .equals(ResidueProperties.codonTranslate(codon)))
577       {
578         return true;
579       }
580     }
581     return false;
582   }
583
584   /**
585    * Align sequence 'seq' to match the alignment of a mapped sequence. Note this
586    * currently assumes that we are aligning cDNA to match protein.
587    * 
588    * @param seq
589    *          the sequence to be realigned
590    * @param al
591    *          the alignment whose sequence alignment is to be 'copied'
592    * @param gap
593    *          character string represent a gap in the realigned sequence
594    * @param preserveUnmappedGaps
595    * @param preserveMappedGaps
596    * @return true if the sequence was realigned, false if it could not be
597    */
598   public static boolean alignSequenceAs(SequenceI seq, AlignmentI al,
599           String gap, boolean preserveMappedGaps,
600           boolean preserveUnmappedGaps)
601   {
602     /*
603      * Get any mappings from the source alignment to the target (dataset)
604      * sequence.
605      */
606     // TODO there may be one AlignedCodonFrame per dataset sequence, or one with
607     // all mappings. Would it help to constrain this?
608     List<AlignedCodonFrame> mappings = al.getCodonFrame(seq);
609     if (mappings == null || mappings.isEmpty())
610     {
611       return false;
612     }
613
614     /*
615      * Locate the aligned source sequence whose dataset sequence is mapped. We
616      * just take the first match here (as we can't align like more than one
617      * sequence).
618      */
619     SequenceI alignFrom = null;
620     AlignedCodonFrame mapping = null;
621     for (AlignedCodonFrame mp : mappings)
622     {
623       alignFrom = mp.findAlignedSequence(seq, al);
624       if (alignFrom != null)
625       {
626         mapping = mp;
627         break;
628       }
629     }
630
631     if (alignFrom == null)
632     {
633       return false;
634     }
635     alignSequenceAs(seq, alignFrom, mapping, gap, al.getGapCharacter(),
636             preserveMappedGaps, preserveUnmappedGaps);
637     return true;
638   }
639
640   /**
641    * Align sequence 'alignTo' the same way as 'alignFrom', using the mapping to
642    * match residues and codons. Flags control whether existing gaps in unmapped
643    * (intron) and mapped (exon) regions are preserved or not. Gaps between
644    * intron and exon are only retained if both flags are set.
645    * 
646    * @param alignTo
647    * @param alignFrom
648    * @param mapping
649    * @param myGap
650    * @param sourceGap
651    * @param preserveUnmappedGaps
652    * @param preserveMappedGaps
653    */
654   public static void alignSequenceAs(SequenceI alignTo, SequenceI alignFrom,
655           AlignedCodonFrame mapping, String myGap, char sourceGap,
656           boolean preserveMappedGaps, boolean preserveUnmappedGaps)
657   {
658     // TODO generalise to work for Protein-Protein, dna-dna, dna-protein
659
660     // aligned and dataset sequence positions, all base zero
661     int thisSeqPos = 0;
662     int sourceDsPos = 0;
663
664     int basesWritten = 0;
665     char myGapChar = myGap.charAt(0);
666     int ratio = myGap.length();
667
668     int fromOffset = alignFrom.getStart() - 1;
669     int toOffset = alignTo.getStart() - 1;
670     int sourceGapMappedLength = 0;
671     boolean inExon = false;
672     final int toLength = alignTo.getLength();
673     final int fromLength = alignFrom.getLength();
674     StringBuilder thisAligned = new StringBuilder(2 * toLength);
675
676     /*
677      * Traverse the 'model' aligned sequence
678      */
679     for (int i = 0; i < fromLength; i++)
680     {
681       char sourceChar = alignFrom.getCharAt(i);
682       if (sourceChar == sourceGap)
683       {
684         sourceGapMappedLength += ratio;
685         continue;
686       }
687
688       /*
689        * Found a non-gap character. Locate its mapped region if any.
690        */
691       sourceDsPos++;
692       // Note mapping positions are base 1, our sequence positions base 0
693       int[] mappedPos = mapping.getMappedRegion(alignTo, alignFrom,
694               sourceDsPos + fromOffset);
695       if (mappedPos == null)
696       {
697         /*
698          * unmapped position; treat like a gap
699          */
700         sourceGapMappedLength += ratio;
701         // System.err.println("Can't align: no codon mapping to residue "
702         // + sourceDsPos + "(" + sourceChar + ")");
703         // return;
704         continue;
705       }
706
707       int mappedCodonStart = mappedPos[0]; // position (1...) of codon start
708       int mappedCodonEnd = mappedPos[mappedPos.length - 1]; // codon end pos
709       StringBuilder trailingCopiedGap = new StringBuilder();
710
711       /*
712        * Copy dna sequence up to and including this codon. Optionally, include
713        * gaps before the codon starts (in introns) and/or after the codon starts
714        * (in exons).
715        * 
716        * Note this only works for 'linear' splicing, not reverse or interleaved.
717        * But then 'align dna as protein' doesn't make much sense otherwise.
718        */
719       int intronLength = 0;
720       while (basesWritten + toOffset < mappedCodonEnd
721               && thisSeqPos < toLength)
722       {
723         final char c = alignTo.getCharAt(thisSeqPos++);
724         if (c != myGapChar)
725         {
726           basesWritten++;
727           int sourcePosition = basesWritten + toOffset;
728           if (sourcePosition < mappedCodonStart)
729           {
730             /*
731              * Found an unmapped (intron) base. First add in any preceding gaps
732              * (if wanted).
733              */
734             if (preserveUnmappedGaps && trailingCopiedGap.length() > 0)
735             {
736               thisAligned.append(trailingCopiedGap.toString());
737               intronLength += trailingCopiedGap.length();
738               trailingCopiedGap = new StringBuilder();
739             }
740             intronLength++;
741             inExon = false;
742           }
743           else
744           {
745             final boolean startOfCodon = sourcePosition == mappedCodonStart;
746             int gapsToAdd = calculateGapsToInsert(preserveMappedGaps,
747                     preserveUnmappedGaps, sourceGapMappedLength, inExon,
748                     trailingCopiedGap.length(), intronLength, startOfCodon);
749             for (int k = 0; k < gapsToAdd; k++)
750             {
751               thisAligned.append(myGapChar);
752             }
753             sourceGapMappedLength = 0;
754             inExon = true;
755           }
756           thisAligned.append(c);
757           trailingCopiedGap = new StringBuilder();
758         }
759         else
760         {
761           if (inExon && preserveMappedGaps)
762           {
763             trailingCopiedGap.append(myGapChar);
764           }
765           else if (!inExon && preserveUnmappedGaps)
766           {
767             trailingCopiedGap.append(myGapChar);
768           }
769         }
770       }
771     }
772
773     /*
774      * At end of model aligned sequence. Copy any remaining target sequence, optionally
775      * including (intron) gaps.
776      */
777     while (thisSeqPos < toLength)
778     {
779       final char c = alignTo.getCharAt(thisSeqPos++);
780       if (c != myGapChar || preserveUnmappedGaps)
781       {
782         thisAligned.append(c);
783       }
784       sourceGapMappedLength--;
785     }
786
787     /*
788      * finally add gaps to pad for any trailing source gaps or
789      * unmapped characters
790      */
791     if (preserveUnmappedGaps)
792     {
793       while (sourceGapMappedLength > 0)
794       {
795         thisAligned.append(myGapChar);
796         sourceGapMappedLength--;
797       }
798     }
799
800     /*
801      * All done aligning, set the aligned sequence.
802      */
803     alignTo.setSequence(new String(thisAligned));
804   }
805
806   /**
807    * Helper method to work out how many gaps to insert when realigning.
808    * 
809    * @param preserveMappedGaps
810    * @param preserveUnmappedGaps
811    * @param sourceGapMappedLength
812    * @param inExon
813    * @param trailingCopiedGap
814    * @param intronLength
815    * @param startOfCodon
816    * @return
817    */
818   protected static int calculateGapsToInsert(boolean preserveMappedGaps,
819           boolean preserveUnmappedGaps, int sourceGapMappedLength,
820           boolean inExon, int trailingGapLength, int intronLength,
821           final boolean startOfCodon)
822   {
823     int gapsToAdd = 0;
824     if (startOfCodon)
825     {
826       /*
827        * Reached start of codon. Ignore trailing gaps in intron unless we are
828        * preserving gaps in both exon and intron. Ignore them anyway if the
829        * protein alignment introduces a gap at least as large as the intronic
830        * region.
831        */
832       if (inExon && !preserveMappedGaps)
833       {
834         trailingGapLength = 0;
835       }
836       if (!inExon && !(preserveMappedGaps && preserveUnmappedGaps))
837       {
838         trailingGapLength = 0;
839       }
840       if (inExon)
841       {
842         gapsToAdd = Math.max(sourceGapMappedLength, trailingGapLength);
843       }
844       else
845       {
846         if (intronLength + trailingGapLength <= sourceGapMappedLength)
847         {
848           gapsToAdd = sourceGapMappedLength - intronLength;
849         }
850         else
851         {
852           gapsToAdd = Math.min(
853                   intronLength + trailingGapLength - sourceGapMappedLength,
854                   trailingGapLength);
855         }
856       }
857     }
858     else
859     {
860       /*
861        * second or third base of codon; check for any gaps in dna
862        */
863       if (!preserveMappedGaps)
864       {
865         trailingGapLength = 0;
866       }
867       gapsToAdd = Math.max(sourceGapMappedLength, trailingGapLength);
868     }
869     return gapsToAdd;
870   }
871
872   /**
873    * Realigns the given protein to match the alignment of the dna, using codon
874    * mappings to translate aligned codon positions to protein residues.
875    * 
876    * @param protein
877    *          the alignment whose sequences are realigned by this method
878    * @param dna
879    *          the dna alignment whose alignment we are 'copying'
880    * @return the number of sequences that were realigned
881    */
882   public static int alignProteinAsDna(AlignmentI protein, AlignmentI dna)
883   {
884     if (protein.isNucleotide() || !dna.isNucleotide())
885     {
886       System.err.println("Wrong alignment type in alignProteinAsDna");
887       return 0;
888     }
889     List<SequenceI> unmappedProtein = new ArrayList<>();
890     Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons = buildCodonColumnsMap(
891             protein, dna, unmappedProtein);
892     return alignProteinAs(protein, alignedCodons, unmappedProtein);
893   }
894
895   /**
896    * Realigns the given dna to match the alignment of the protein, using codon
897    * mappings to translate aligned peptide positions to codons.
898    * 
899    * Always produces a padded CDS alignment.
900    * 
901    * @param dna
902    *          the alignment whose sequences are realigned by this method
903    * @param protein
904    *          the protein alignment whose alignment we are 'copying'
905    * @return the number of sequences that were realigned
906    */
907   public static int alignCdsAsProtein(AlignmentI dna, AlignmentI protein)
908   {
909     if (protein.isNucleotide() || !dna.isNucleotide())
910     {
911       System.err.println("Wrong alignment type in alignProteinAsDna");
912       return 0;
913     }
914     // todo: implement this
915     List<AlignedCodonFrame> mappings = protein.getCodonFrames();
916     int alignedCount = 0;
917     int width = 0; // alignment width for padding CDS
918     for (SequenceI dnaSeq : dna.getSequences())
919     {
920       if (alignCdsSequenceAsProtein(dnaSeq, protein, mappings,
921               dna.getGapCharacter()))
922       {
923         alignedCount++;
924       }
925       width = Math.max(dnaSeq.getLength(), width);
926     }
927     int oldwidth;
928     int diff;
929     for (SequenceI dnaSeq : dna.getSequences())
930     {
931       oldwidth = dnaSeq.getLength();
932       diff = width - oldwidth;
933       if (diff > 0)
934       {
935         dnaSeq.insertCharAt(oldwidth, diff, dna.getGapCharacter());
936       }
937     }
938     return alignedCount;
939   }
940
941   /**
942    * Helper method to align (if possible) the dna sequence to match the
943    * alignment of a mapped protein sequence. This is currently limited to
944    * handling coding sequence only.
945    * 
946    * @param cdsSeq
947    * @param protein
948    * @param mappings
949    * @param gapChar
950    * @return
951    */
952   static boolean alignCdsSequenceAsProtein(SequenceI cdsSeq,
953           AlignmentI protein, List<AlignedCodonFrame> mappings,
954           char gapChar)
955   {
956     SequenceI cdsDss = cdsSeq.getDatasetSequence();
957     if (cdsDss == null)
958     {
959       System.err
960               .println("alignCdsSequenceAsProtein needs aligned sequence!");
961       return false;
962     }
963
964     List<AlignedCodonFrame> dnaMappings = MappingUtils
965             .findMappingsForSequence(cdsSeq, mappings);
966     for (AlignedCodonFrame mapping : dnaMappings)
967     {
968       SequenceI peptide = mapping.findAlignedSequence(cdsSeq, protein);
969       if (peptide != null)
970       {
971         final int peptideLength = peptide.getLength();
972         Mapping map = mapping.getMappingBetween(cdsSeq, peptide);
973         if (map != null)
974         {
975           MapList mapList = map.getMap();
976           if (map.getTo() == peptide.getDatasetSequence())
977           {
978             mapList = mapList.getInverse();
979           }
980           final int cdsLength = cdsDss.getLength();
981           int mappedFromLength = MappingUtils.getLength(mapList
982                   .getFromRanges());
983           int mappedToLength = MappingUtils
984                   .getLength(mapList.getToRanges());
985           boolean addStopCodon = (cdsLength == mappedFromLength
986                   * CODON_LENGTH + CODON_LENGTH)
987                   || (peptide.getDatasetSequence()
988                           .getLength() == mappedFromLength - 1);
989           if (cdsLength != mappedToLength && !addStopCodon)
990           {
991             System.err.println(String.format(
992                     "Can't align cds as protein (length mismatch %d/%d): %s",
993                     cdsLength, mappedToLength, cdsSeq.getName()));
994           }
995
996           /*
997            * pre-fill the aligned cds sequence with gaps
998            */
999           char[] alignedCds = new char[peptideLength * CODON_LENGTH
1000                   + (addStopCodon ? CODON_LENGTH : 0)];
1001           Arrays.fill(alignedCds, gapChar);
1002
1003           /*
1004            * walk over the aligned peptide sequence and insert mapped 
1005            * codons for residues in the aligned cds sequence 
1006            */
1007           int copiedBases = 0;
1008           int cdsStart = cdsDss.getStart();
1009           int proteinPos = peptide.getStart() - 1;
1010           int cdsCol = 0;
1011
1012           for (int col = 0; col < peptideLength; col++)
1013           {
1014             char residue = peptide.getCharAt(col);
1015
1016             if (Comparison.isGap(residue))
1017             {
1018               cdsCol += CODON_LENGTH;
1019             }
1020             else
1021             {
1022               proteinPos++;
1023               int[] codon = mapList.locateInTo(proteinPos, proteinPos);
1024               if (codon == null)
1025               {
1026                 // e.g. incomplete start codon, X in peptide
1027                 cdsCol += CODON_LENGTH;
1028               }
1029               else
1030               {
1031                 for (int j = codon[0]; j <= codon[1]; j++)
1032                 {
1033                   char mappedBase = cdsDss.getCharAt(j - cdsStart);
1034                   alignedCds[cdsCol++] = mappedBase;
1035                   copiedBases++;
1036                 }
1037               }
1038             }
1039           }
1040
1041           /*
1042            * append stop codon if not mapped from protein,
1043            * closing it up to the end of the mapped sequence
1044            */
1045           if (copiedBases == cdsLength - CODON_LENGTH)
1046           {
1047             for (int i = alignedCds.length - 1; i >= 0; i--)
1048             {
1049               if (!Comparison.isGap(alignedCds[i]))
1050               {
1051                 cdsCol = i + 1; // gap just after end of sequence
1052                 break;
1053               }
1054             }
1055             for (int i = cdsLength - CODON_LENGTH; i < cdsLength; i++)
1056             {
1057               alignedCds[cdsCol++] = cdsDss.getCharAt(i);
1058             }
1059           }
1060           cdsSeq.setSequence(new String(alignedCds));
1061           return true;
1062         }
1063       }
1064     }
1065     return false;
1066   }
1067
1068   /**
1069    * Builds a map whose key is an aligned codon position (3 alignment column
1070    * numbers base 0), and whose value is a map from protein sequence to each
1071    * protein's peptide residue for that codon. The map generates an ordering of
1072    * the codons, and allows us to read off the peptides at each position in
1073    * order to assemble 'aligned' protein sequences.
1074    * 
1075    * @param protein
1076    *          the protein alignment
1077    * @param dna
1078    *          the coding dna alignment
1079    * @param unmappedProtein
1080    *          any unmapped proteins are added to this list
1081    * @return
1082    */
1083   protected static Map<AlignedCodon, Map<SequenceI, AlignedCodon>> buildCodonColumnsMap(
1084           AlignmentI protein, AlignmentI dna,
1085           List<SequenceI> unmappedProtein)
1086   {
1087     /*
1088      * maintain a list of any proteins with no mappings - these will be
1089      * rendered 'as is' in the protein alignment as we can't align them
1090      */
1091     unmappedProtein.addAll(protein.getSequences());
1092
1093     List<AlignedCodonFrame> mappings = protein.getCodonFrames();
1094
1095     /*
1096      * Map will hold, for each aligned codon position e.g. [3, 5, 6], a map of
1097      * {dnaSequence, {proteinSequence, codonProduct}} at that position. The
1098      * comparator keeps the codon positions ordered.
1099      */
1100     Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons = new TreeMap<>(
1101             new CodonComparator());
1102
1103     for (SequenceI dnaSeq : dna.getSequences())
1104     {
1105       for (AlignedCodonFrame mapping : mappings)
1106       {
1107         SequenceI prot = mapping.findAlignedSequence(dnaSeq, protein);
1108         if (prot != null)
1109         {
1110           Mapping seqMap = mapping.getMappingForSequence(dnaSeq);
1111           addCodonPositions(dnaSeq, prot, protein.getGapCharacter(), seqMap,
1112                   alignedCodons);
1113           unmappedProtein.remove(prot);
1114         }
1115       }
1116     }
1117
1118     /*
1119      * Finally add any unmapped peptide start residues (e.g. for incomplete
1120      * codons) as if at the codon position before the second residue
1121      */
1122     // TODO resolve JAL-2022 so this fudge can be removed
1123     int mappedSequenceCount = protein.getHeight() - unmappedProtein.size();
1124     addUnmappedPeptideStarts(alignedCodons, mappedSequenceCount);
1125
1126     return alignedCodons;
1127   }
1128
1129   /**
1130    * Scans for any protein mapped from position 2 (meaning unmapped start
1131    * position e.g. an incomplete codon), and synthesizes a 'codon' for it at the
1132    * preceding position in the alignment
1133    * 
1134    * @param alignedCodons
1135    *          the codon-to-peptide map
1136    * @param mappedSequenceCount
1137    *          the number of distinct sequences in the map
1138    */
1139   protected static void addUnmappedPeptideStarts(
1140           Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons,
1141           int mappedSequenceCount)
1142   {
1143     // TODO delete this ugly hack once JAL-2022 is resolved
1144     // i.e. we can model startPhase > 0 (incomplete start codon)
1145
1146     List<SequenceI> sequencesChecked = new ArrayList<>();
1147     AlignedCodon lastCodon = null;
1148     Map<SequenceI, AlignedCodon> toAdd = new HashMap<>();
1149
1150     for (Entry<AlignedCodon, Map<SequenceI, AlignedCodon>> entry : alignedCodons
1151             .entrySet())
1152     {
1153       for (Entry<SequenceI, AlignedCodon> sequenceCodon : entry.getValue()
1154               .entrySet())
1155       {
1156         SequenceI seq = sequenceCodon.getKey();
1157         if (sequencesChecked.contains(seq))
1158         {
1159           continue;
1160         }
1161         sequencesChecked.add(seq);
1162         AlignedCodon codon = sequenceCodon.getValue();
1163         if (codon.peptideCol > 1)
1164         {
1165           System.err.println(
1166                   "Problem mapping protein with >1 unmapped start positions: "
1167                           + seq.getName());
1168         }
1169         else if (codon.peptideCol == 1)
1170         {
1171           /*
1172            * first position (peptideCol == 0) was unmapped - add it
1173            */
1174           if (lastCodon != null)
1175           {
1176             AlignedCodon firstPeptide = new AlignedCodon(lastCodon.pos1,
1177                     lastCodon.pos2, lastCodon.pos3,
1178                     String.valueOf(seq.getCharAt(0)), 0);
1179             toAdd.put(seq, firstPeptide);
1180           }
1181           else
1182           {
1183             /*
1184              * unmapped residue at start of alignment (no prior column) -
1185              * 'insert' at nominal codon [0, 0, 0]
1186              */
1187             AlignedCodon firstPeptide = new AlignedCodon(0, 0, 0,
1188                     String.valueOf(seq.getCharAt(0)), 0);
1189             toAdd.put(seq, firstPeptide);
1190           }
1191         }
1192         if (sequencesChecked.size() == mappedSequenceCount)
1193         {
1194           // no need to check past first mapped position in all sequences
1195           break;
1196         }
1197       }
1198       lastCodon = entry.getKey();
1199     }
1200
1201     /*
1202      * add any new codons safely after iterating over the map
1203      */
1204     for (Entry<SequenceI, AlignedCodon> startCodon : toAdd.entrySet())
1205     {
1206       addCodonToMap(alignedCodons, startCodon.getValue(),
1207               startCodon.getKey());
1208     }
1209   }
1210
1211   /**
1212    * Update the aligned protein sequences to match the codon alignments given in
1213    * the map.
1214    * 
1215    * @param protein
1216    * @param alignedCodons
1217    *          an ordered map of codon positions (columns), with sequence/peptide
1218    *          values present in each column
1219    * @param unmappedProtein
1220    * @return
1221    */
1222   protected static int alignProteinAs(AlignmentI protein,
1223           Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons,
1224           List<SequenceI> unmappedProtein)
1225   {
1226     /*
1227      * prefill peptide sequences with gaps 
1228      */
1229     int alignedWidth = alignedCodons.size();
1230     char[] gaps = new char[alignedWidth];
1231     Arrays.fill(gaps, protein.getGapCharacter());
1232     Map<SequenceI, char[]> peptides = new HashMap<>();
1233     for (SequenceI seq : protein.getSequences())
1234     {
1235       if (!unmappedProtein.contains(seq))
1236       {
1237         peptides.put(seq, Arrays.copyOf(gaps, gaps.length));
1238       }
1239     }
1240
1241     /*
1242      * Traverse the codons left to right (as defined by CodonComparator)
1243      * and insert peptides in each column where the sequence is mapped.
1244      * This gives a peptide 'alignment' where residues are aligned if their
1245      * corresponding codons occupy the same columns in the cdna alignment.
1246      */
1247     int column = 0;
1248     for (AlignedCodon codon : alignedCodons.keySet())
1249     {
1250       final Map<SequenceI, AlignedCodon> columnResidues = alignedCodons
1251               .get(codon);
1252       for (Entry<SequenceI, AlignedCodon> entry : columnResidues.entrySet())
1253       {
1254         char residue = entry.getValue().product.charAt(0);
1255         peptides.get(entry.getKey())[column] = residue;
1256       }
1257       column++;
1258     }
1259
1260     /*
1261      * and finally set the constructed sequences
1262      */
1263     for (Entry<SequenceI, char[]> entry : peptides.entrySet())
1264     {
1265       entry.getKey().setSequence(new String(entry.getValue()));
1266     }
1267
1268     return 0;
1269   }
1270
1271   /**
1272    * Populate the map of aligned codons by traversing the given sequence
1273    * mapping, locating the aligned positions of mapped codons, and adding those
1274    * positions and their translation products to the map.
1275    * 
1276    * @param dna
1277    *          the aligned sequence we are mapping from
1278    * @param protein
1279    *          the sequence to be aligned to the codons
1280    * @param gapChar
1281    *          the gap character in the dna sequence
1282    * @param seqMap
1283    *          a mapping to a sequence translation
1284    * @param alignedCodons
1285    *          the map we are building up
1286    */
1287   static void addCodonPositions(SequenceI dna, SequenceI protein,
1288           char gapChar, Mapping seqMap,
1289           Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons)
1290   {
1291     Iterator<AlignedCodon> codons = seqMap.getCodonIterator(dna, gapChar);
1292
1293     /*
1294      * add codon positions, and their peptide translations, to the alignment
1295      * map, while remembering the first codon mapped
1296      */
1297     while (codons.hasNext())
1298     {
1299       try
1300       {
1301         AlignedCodon codon = codons.next();
1302         addCodonToMap(alignedCodons, codon, protein);
1303       } catch (IncompleteCodonException e)
1304       {
1305         // possible incomplete trailing codon - ignore
1306       } catch (NoSuchElementException e)
1307       {
1308         // possibly peptide lacking STOP
1309       }
1310     }
1311   }
1312
1313   /**
1314    * Helper method to add a codon-to-peptide entry to the aligned codons map
1315    * 
1316    * @param alignedCodons
1317    * @param codon
1318    * @param protein
1319    */
1320   protected static void addCodonToMap(
1321           Map<AlignedCodon, Map<SequenceI, AlignedCodon>> alignedCodons,
1322           AlignedCodon codon, SequenceI protein)
1323   {
1324     Map<SequenceI, AlignedCodon> seqProduct = alignedCodons.get(codon);
1325     if (seqProduct == null)
1326     {
1327       seqProduct = new HashMap<>();
1328       alignedCodons.put(codon, seqProduct);
1329     }
1330     seqProduct.put(protein, codon);
1331   }
1332
1333   /**
1334    * Returns true if a cDNA/Protein mapping either exists, or could be made,
1335    * between at least one pair of sequences in the two alignments. Currently,
1336    * the logic is:
1337    * <ul>
1338    * <li>One alignment must be nucleotide, and the other protein</li>
1339    * <li>At least one pair of sequences must be already mapped, or mappable</li>
1340    * <li>Mappable means the nucleotide translation matches the protein
1341    * sequence</li>
1342    * <li>The translation may ignore start and stop codons if present in the
1343    * nucleotide</li>
1344    * </ul>
1345    * 
1346    * @param al1
1347    * @param al2
1348    * @return
1349    */
1350   public static boolean isMappable(AlignmentI al1, AlignmentI al2)
1351   {
1352     if (al1 == null || al2 == null)
1353     {
1354       return false;
1355     }
1356
1357     /*
1358      * Require one nucleotide and one protein
1359      */
1360     if (al1.isNucleotide() == al2.isNucleotide())
1361     {
1362       return false;
1363     }
1364     AlignmentI dna = al1.isNucleotide() ? al1 : al2;
1365     AlignmentI protein = dna == al1 ? al2 : al1;
1366     List<AlignedCodonFrame> mappings = protein.getCodonFrames();
1367     for (SequenceI dnaSeq : dna.getSequences())
1368     {
1369       for (SequenceI proteinSeq : protein.getSequences())
1370       {
1371         if (isMappable(dnaSeq, proteinSeq, mappings))
1372         {
1373           return true;
1374         }
1375       }
1376     }
1377     return false;
1378   }
1379
1380   /**
1381    * Returns true if the dna sequence is mapped, or could be mapped, to the
1382    * protein sequence.
1383    * 
1384    * @param dnaSeq
1385    * @param proteinSeq
1386    * @param mappings
1387    * @return
1388    */
1389   protected static boolean isMappable(SequenceI dnaSeq,
1390           SequenceI proteinSeq, List<AlignedCodonFrame> mappings)
1391   {
1392     if (dnaSeq == null || proteinSeq == null)
1393     {
1394       return false;
1395     }
1396
1397     SequenceI dnaDs = dnaSeq.getDatasetSequence() == null ? dnaSeq
1398             : dnaSeq.getDatasetSequence();
1399     SequenceI proteinDs = proteinSeq.getDatasetSequence() == null
1400             ? proteinSeq
1401             : proteinSeq.getDatasetSequence();
1402
1403     for (AlignedCodonFrame mapping : mappings)
1404     {
1405       if (proteinDs == mapping.getAaForDnaSeq(dnaDs))
1406       {
1407         /*
1408          * already mapped
1409          */
1410         return true;
1411       }
1412     }
1413
1414     /*
1415      * Just try to make a mapping (it is not yet stored), test whether
1416      * successful.
1417      */
1418     return mapCdnaToProtein(proteinDs, dnaDs) != null;
1419   }
1420
1421   /**
1422    * Finds any reference annotations associated with the sequences in
1423    * sequenceScope, that are not already added to the alignment, and adds them
1424    * to the 'candidates' map. Also populates a lookup table of annotation
1425    * labels, keyed by calcId, for use in constructing tooltips or the like.
1426    * 
1427    * @param sequenceScope
1428    *          the sequences to scan for reference annotations
1429    * @param labelForCalcId
1430    *          (optional) map to populate with label for calcId
1431    * @param candidates
1432    *          map to populate with annotations for sequence
1433    * @param al
1434    *          the alignment to check for presence of annotations
1435    */
1436   public static void findAddableReferenceAnnotations(
1437           List<SequenceI> sequenceScope, Map<String, String> labelForCalcId,
1438           final Map<SequenceI, List<AlignmentAnnotation>> candidates,
1439           AlignmentI al)
1440   {
1441     if (sequenceScope == null)
1442     {
1443       return;
1444     }
1445
1446     /*
1447      * For each sequence in scope, make a list of any annotations on the
1448      * underlying dataset sequence which are not already on the alignment.
1449      * 
1450      * Add to a map of { alignmentSequence, <List of annotations to add> }
1451      */
1452     for (SequenceI seq : sequenceScope)
1453     {
1454       SequenceI dataset = seq.getDatasetSequence();
1455       if (dataset == null)
1456       {
1457         continue;
1458       }
1459       AlignmentAnnotation[] datasetAnnotations = dataset.getAnnotation();
1460       if (datasetAnnotations == null)
1461       {
1462         continue;
1463       }
1464       final List<AlignmentAnnotation> result = new ArrayList<>();
1465       for (AlignmentAnnotation dsann : datasetAnnotations)
1466       {
1467         /*
1468          * Find matching annotations on the alignment. If none is found, then
1469          * add this annotation to the list of 'addable' annotations for this
1470          * sequence.
1471          */
1472         final Iterable<AlignmentAnnotation> matchedAlignmentAnnotations = al
1473                 .findAnnotations(seq, dsann.getCalcId(), dsann.label);
1474         if (!matchedAlignmentAnnotations.iterator().hasNext())
1475         {
1476           result.add(dsann);
1477           if (labelForCalcId != null)
1478           {
1479             labelForCalcId.put(dsann.getCalcId(), dsann.label);
1480           }
1481         }
1482       }
1483       /*
1484        * Save any addable annotations for this sequence
1485        */
1486       if (!result.isEmpty())
1487       {
1488         candidates.put(seq, result);
1489       }
1490     }
1491   }
1492
1493   /**
1494    * Adds annotations to the top of the alignment annotations, in the same order
1495    * as their related sequences.
1496    * 
1497    * @param annotations
1498    *          the annotations to add
1499    * @param alignment
1500    *          the alignment to add them to
1501    * @param selectionGroup
1502    *          current selection group (or null if none)
1503    */
1504   public static void addReferenceAnnotations(
1505           Map<SequenceI, List<AlignmentAnnotation>> annotations,
1506           final AlignmentI alignment, final SequenceGroup selectionGroup)
1507   {
1508     for (SequenceI seq : annotations.keySet())
1509     {
1510       for (AlignmentAnnotation ann : annotations.get(seq))
1511       {
1512         AlignmentAnnotation copyAnn = new AlignmentAnnotation(ann);
1513         int startRes = 0;
1514         int endRes = ann.annotations.length;
1515         if (selectionGroup != null)
1516         {
1517           startRes = selectionGroup.getStartRes();
1518           endRes = selectionGroup.getEndRes();
1519         }
1520         copyAnn.restrict(startRes, endRes);
1521
1522         /*
1523          * Add to the sequence (sets copyAnn.datasetSequence), unless the
1524          * original annotation is already on the sequence.
1525          */
1526         if (!seq.hasAnnotation(ann))
1527         {
1528           seq.addAlignmentAnnotation(copyAnn);
1529         }
1530         // adjust for gaps
1531         copyAnn.adjustForAlignment();
1532         // add to the alignment and set visible
1533         alignment.addAnnotation(copyAnn);
1534         copyAnn.visible = true;
1535       }
1536     }
1537   }
1538
1539   /**
1540    * Set visibility of alignment annotations of specified types (labels), for
1541    * specified sequences. This supports controls like "Show all secondary
1542    * structure", "Hide all Temp factor", etc.
1543    * 
1544    * @al the alignment to scan for annotations
1545    * @param types
1546    *          the types (labels) of annotations to be updated
1547    * @param forSequences
1548    *          if not null, only annotations linked to one of these sequences are
1549    *          in scope for update; if null, acts on all sequence annotations
1550    * @param anyType
1551    *          if this flag is true, 'types' is ignored (label not checked)
1552    * @param doShow
1553    *          if true, set visibility on, else set off
1554    */
1555   public static void showOrHideSequenceAnnotations(AlignmentI al,
1556           Collection<String> types, List<SequenceI> forSequences,
1557           boolean anyType, boolean doShow)
1558   {
1559     AlignmentAnnotation[] anns = al.getAlignmentAnnotation();
1560     if (anns != null)
1561     {
1562       for (AlignmentAnnotation aa : anns)
1563       {
1564         if (anyType || types.contains(aa.label))
1565         {
1566           if ((aa.sequenceRef != null) && (forSequences == null
1567                   || forSequences.contains(aa.sequenceRef)))
1568           {
1569             aa.visible = doShow;
1570           }
1571         }
1572       }
1573     }
1574   }
1575
1576   /**
1577    * Returns true if either sequence has a cross-reference to the other
1578    * 
1579    * @param seq1
1580    * @param seq2
1581    * @return
1582    */
1583   public static boolean haveCrossRef(SequenceI seq1, SequenceI seq2)
1584   {
1585     // Note: moved here from class CrossRef as the latter class has dependencies
1586     // not availability to the applet's classpath
1587     return hasCrossRef(seq1, seq2) || hasCrossRef(seq2, seq1);
1588   }
1589
1590   /**
1591    * Returns true if seq1 has a cross-reference to seq2. Currently this assumes
1592    * that sequence name is structured as Source|AccessionId.
1593    * 
1594    * @param seq1
1595    * @param seq2
1596    * @return
1597    */
1598   public static boolean hasCrossRef(SequenceI seq1, SequenceI seq2)
1599   {
1600     if (seq1 == null || seq2 == null)
1601     {
1602       return false;
1603     }
1604     String name = seq2.getName();
1605     final List<DBRefEntry> xrefs = seq1.getDBRefs();
1606     if (xrefs != null)
1607     {
1608       for (int ix = 0, nx = xrefs.size(); ix < nx; ix++)
1609       {
1610           DBRefEntry xref = xrefs.get(ix);
1611         String xrefName = xref.getSource() + "|" + xref.getAccessionId();
1612         // case-insensitive test, consistent with DBRefEntry.equalRef()
1613         if (xrefName.equalsIgnoreCase(name))
1614         {
1615           return true;
1616         }
1617       }
1618     }
1619     return false;
1620   }
1621
1622   /**
1623    * Constructs an alignment consisting of the mapped (CDS) regions in the given
1624    * nucleotide sequences, and updates mappings to match. The CDS sequences are
1625    * added to the original alignment's dataset, which is shared by the new
1626    * alignment. Mappings from nucleotide to CDS, and from CDS to protein, are
1627    * added to the alignment dataset.
1628    * 
1629    * @param dna
1630    *          aligned nucleotide (dna or cds) sequences
1631    * @param dataset
1632    *          the alignment dataset the sequences belong to
1633    * @param products
1634    *          (optional) to restrict results to CDS that map to specified
1635    *          protein products
1636    * @return an alignment whose sequences are the cds-only parts of the dna
1637    *         sequences (or null if no mappings are found)
1638    */
1639   public static AlignmentI makeCdsAlignment(SequenceI[] dna,
1640           AlignmentI dataset, SequenceI[] products)
1641   {
1642     if (dataset == null || dataset.getDataset() != null)
1643     {
1644       throw new IllegalArgumentException(
1645               "IMPLEMENTATION ERROR: dataset.getDataset() must be null!");
1646     }
1647     List<SequenceI> foundSeqs = new ArrayList<>();
1648     List<SequenceI> cdsSeqs = new ArrayList<>();
1649     List<AlignedCodonFrame> mappings = dataset.getCodonFrames();
1650     HashSet<SequenceI> productSeqs = null;
1651     if (products != null)
1652     {
1653       productSeqs = new HashSet<>();
1654       for (SequenceI seq : products)
1655       {
1656         productSeqs.add(seq.getDatasetSequence() == null ? seq : seq
1657                 .getDatasetSequence());
1658       }
1659     }
1660
1661     /*
1662      * Construct CDS sequences from mappings on the alignment dataset.
1663      * The logic is:
1664      * - find the protein product(s) mapped to from each dna sequence
1665      * - if the mapping covers the whole dna sequence (give or take start/stop
1666      *   codon), take the dna as the CDS sequence
1667      * - else search dataset mappings for a suitable dna sequence, i.e. one
1668      *   whose whole sequence is mapped to the protein 
1669      * - if no sequence found, construct one from the dna sequence and mapping
1670      *   (and add it to dataset so it is found if this is repeated)
1671      */
1672     for (SequenceI dnaSeq : dna)
1673     {
1674       SequenceI dnaDss = dnaSeq.getDatasetSequence() == null ? dnaSeq
1675               : dnaSeq.getDatasetSequence();
1676
1677       List<AlignedCodonFrame> seqMappings = MappingUtils
1678               .findMappingsForSequence(dnaSeq, mappings);
1679       for (AlignedCodonFrame mapping : seqMappings)
1680       {
1681         List<Mapping> mappingsFromSequence = mapping
1682                 .getMappingsFromSequence(dnaSeq);
1683
1684         for (Mapping aMapping : mappingsFromSequence)
1685         {
1686           MapList mapList = aMapping.getMap();
1687           if (mapList.getFromRatio() == 1)
1688           {
1689             /*
1690              * not a dna-to-protein mapping (likely dna-to-cds)
1691              */
1692             continue;
1693           }
1694
1695           /*
1696            * skip if mapping is not to one of the target set of proteins
1697            */
1698           SequenceI proteinProduct = aMapping.getTo();
1699           if (productSeqs != null && !productSeqs.contains(proteinProduct))
1700           {
1701             continue;
1702           }
1703
1704           /*
1705            * try to locate the CDS from the dataset mappings;
1706            * guard against duplicate results (for the case that protein has
1707            * dbrefs to both dna and cds sequences)
1708            */
1709           SequenceI cdsSeq = findCdsForProtein(mappings, dnaSeq,
1710                   seqMappings, aMapping);
1711           if (cdsSeq != null)
1712           {
1713             if (!foundSeqs.contains(cdsSeq))
1714             {
1715               foundSeqs.add(cdsSeq);
1716               SequenceI derivedSequence = cdsSeq.deriveSequence();
1717               cdsSeqs.add(derivedSequence);
1718               if (!dataset.getSequences().contains(cdsSeq))
1719               {
1720                 dataset.addSequence(cdsSeq);
1721               }
1722             }
1723             continue;
1724           }
1725
1726           /*
1727            * didn't find mapped CDS sequence - construct it and add
1728            * its dataset sequence to the dataset
1729            */
1730           cdsSeq = makeCdsSequence(dnaSeq.getDatasetSequence(), aMapping,
1731                   dataset).deriveSequence();
1732           // cdsSeq has a name constructed as CDS|<dbref>
1733           // <dbref> will be either the accession for the coding sequence,
1734           // marked in the /via/ dbref to the protein product accession
1735           // or it will be the original nucleotide accession.
1736           SequenceI cdsSeqDss = cdsSeq.getDatasetSequence();
1737
1738           cdsSeqs.add(cdsSeq);
1739
1740           if (!dataset.getSequences().contains(cdsSeqDss))
1741           {
1742             // check if this sequence is a newly created one
1743             // so needs adding to the dataset
1744             dataset.addSequence(cdsSeqDss);
1745           }
1746
1747           /*
1748            * add a mapping from CDS to the (unchanged) mapped to range
1749            */
1750           List<int[]> cdsRange = Collections.singletonList(new int[] { 1,
1751               cdsSeq.getLength() });
1752           MapList cdsToProteinMap = new MapList(cdsRange,
1753                   mapList.getToRanges(), mapList.getFromRatio(),
1754                   mapList.getToRatio());
1755           AlignedCodonFrame cdsToProteinMapping = new AlignedCodonFrame();
1756           cdsToProteinMapping.addMap(cdsSeqDss, proteinProduct,
1757                   cdsToProteinMap);
1758
1759           /*
1760            * guard against duplicating the mapping if repeating this action
1761            */
1762           if (!mappings.contains(cdsToProteinMapping))
1763           {
1764             mappings.add(cdsToProteinMapping);
1765           }
1766
1767           propagateDBRefsToCDS(cdsSeqDss, dnaSeq.getDatasetSequence(),
1768                   proteinProduct, aMapping);
1769           /*
1770            * add another mapping from original 'from' range to CDS
1771            */
1772           AlignedCodonFrame dnaToCdsMapping = new AlignedCodonFrame();
1773           final MapList dnaToCdsMap = new MapList(mapList.getFromRanges(),
1774                   cdsRange, 1, 1);
1775           dnaToCdsMapping.addMap(dnaSeq.getDatasetSequence(), cdsSeqDss,
1776                   dnaToCdsMap);
1777           if (!mappings.contains(dnaToCdsMapping))
1778           {
1779             mappings.add(dnaToCdsMapping);
1780           }
1781
1782           /*
1783            * transfer dna chromosomal loci (if known) to the CDS
1784            * sequence (via the mapping)
1785            */
1786           final MapList cdsToDnaMap = dnaToCdsMap.getInverse();
1787           transferGeneLoci(dnaSeq, cdsToDnaMap, cdsSeq);
1788
1789           /*
1790            * add DBRef with mapping from protein to CDS
1791            * (this enables Get Cross-References from protein alignment)
1792            * This is tricky because we can't have two DBRefs with the
1793            * same source and accession, so need a different accession for
1794            * the CDS from the dna sequence
1795            */
1796
1797           // specific use case:
1798           // Genomic contig ENSCHR:1, contains coding regions for ENSG01,
1799           // ENSG02, ENSG03, with transcripts and products similarly named.
1800           // cannot add distinct dbrefs mapping location on ENSCHR:1 to ENSG01
1801
1802           // JBPNote: ?? can't actually create an example that demonstrates we
1803           // need to
1804           // synthesize an xref.
1805
1806           List<DBRefEntry> primrefs = dnaDss.getPrimaryDBRefs();
1807           for (int ip = 0, np = primrefs.size(); ip < np; ip++)
1808           {
1809                   DBRefEntry primRef = primrefs.get(ip);
1810             /*
1811              * create a cross-reference from CDS to the source sequence's
1812              * primary reference and vice versa
1813              */
1814             String source = primRef.getSource();
1815             String version = primRef.getVersion();
1816             DBRefEntry cdsCrossRef = new DBRefEntry(source, source + ":"
1817                     + version, primRef.getAccessionId());
1818             cdsCrossRef.setMap(new Mapping(dnaDss, new MapList(cdsToDnaMap)));
1819             cdsSeqDss.addDBRef(cdsCrossRef);
1820
1821             dnaSeq.addDBRef(new DBRefEntry(source, version, cdsSeq
1822                     .getName(), new Mapping(cdsSeqDss, dnaToCdsMap)));
1823             // problem here is that the cross-reference is synthesized -
1824             // cdsSeq.getName() may be like 'CDS|dnaaccession' or
1825             // 'CDS|emblcdsacc'
1826             // assuming cds version same as dna ?!?
1827
1828             DBRefEntry proteinToCdsRef = new DBRefEntry(source, version,
1829                     cdsSeq.getName());
1830             //
1831             proteinToCdsRef.setMap(new Mapping(cdsSeqDss, cdsToProteinMap
1832                     .getInverse()));
1833             proteinProduct.addDBRef(proteinToCdsRef);
1834           }
1835           /*
1836            * transfer any features on dna that overlap the CDS
1837            */
1838           transferFeatures(dnaSeq, cdsSeq, dnaToCdsMap, null,
1839                   SequenceOntologyI.CDS);
1840         }
1841       }
1842     }
1843
1844     AlignmentI cds = new Alignment(cdsSeqs.toArray(new SequenceI[cdsSeqs
1845             .size()]));
1846     cds.setDataset(dataset);
1847
1848     return cds;
1849   }
1850
1851   /**
1852    * Tries to transfer gene loci (dbref to chromosome positions) from fromSeq to
1853    * toSeq, mediated by the given mapping between the sequences
1854    * 
1855    * @param fromSeq
1856    * @param targetToFrom
1857    *          Map
1858    * @param targetSeq
1859    */
1860   protected static void transferGeneLoci(SequenceI fromSeq,
1861           MapList targetToFrom, SequenceI targetSeq)
1862   {
1863     if (targetSeq.getGeneLoci() != null)
1864     {
1865       // already have - don't override
1866       return;
1867     }
1868     GeneLociI fromLoci = fromSeq.getGeneLoci();
1869     if (fromLoci == null)
1870     {
1871       return;
1872     }
1873
1874     MapList newMap = targetToFrom.traverse(fromLoci.getMap());
1875
1876     if (newMap != null)
1877     {
1878       targetSeq.setGeneLoci(fromLoci.getSpeciesId(),
1879               fromLoci.getAssemblyId(), fromLoci.getChromosomeId(), newMap);
1880     }
1881   }
1882
1883   /**
1884    * A helper method that finds a CDS sequence in the alignment dataset that is
1885    * mapped to the given protein sequence, and either is, or has a mapping from,
1886    * the given dna sequence.
1887    * 
1888    * @param mappings
1889    *          set of all mappings on the dataset
1890    * @param dnaSeq
1891    *          a dna (or cds) sequence we are searching from
1892    * @param seqMappings
1893    *          the set of mappings involving dnaSeq
1894    * @param aMapping
1895    *          a transcript-to-peptide mapping
1896    * @return
1897    */
1898   static SequenceI findCdsForProtein(List<AlignedCodonFrame> mappings,
1899           SequenceI dnaSeq, List<AlignedCodonFrame> seqMappings,
1900           Mapping aMapping)
1901   {
1902     /*
1903      * TODO a better dna-cds-protein mapping data representation to allow easy
1904      * navigation; until then this clunky looping around lists of mappings
1905      */
1906     SequenceI seqDss = dnaSeq.getDatasetSequence() == null ? dnaSeq
1907             : dnaSeq.getDatasetSequence();
1908     SequenceI proteinProduct = aMapping.getTo();
1909
1910     /*
1911      * is this mapping from the whole dna sequence (i.e. CDS)?
1912      * allowing for possible stop codon on dna but not peptide
1913      */
1914     int mappedFromLength = MappingUtils
1915             .getLength(aMapping.getMap().getFromRanges());
1916     int dnaLength = seqDss.getLength();
1917     if (mappedFromLength == dnaLength
1918             || mappedFromLength == dnaLength - CODON_LENGTH)
1919     {
1920       /*
1921        * if sequence has CDS features, this is a transcript with no UTR
1922        * - do not take this as the CDS sequence! (JAL-2789)
1923        */
1924       if (seqDss.getFeatures().getFeaturesByOntology(SequenceOntologyI.CDS)
1925               .isEmpty())
1926       {
1927         return seqDss;
1928       }
1929     }
1930
1931     /*
1932      * looks like we found the dna-to-protein mapping; search for the
1933      * corresponding cds-to-protein mapping
1934      */
1935     List<AlignedCodonFrame> mappingsToPeptide = MappingUtils
1936             .findMappingsForSequence(proteinProduct, mappings);
1937     for (AlignedCodonFrame acf : mappingsToPeptide)
1938     {
1939       for (SequenceToSequenceMapping map : acf.getMappings())
1940       {
1941         Mapping mapping = map.getMapping();
1942         if (mapping != aMapping
1943                 && mapping.getMap().getFromRatio() == CODON_LENGTH
1944                 && proteinProduct == mapping.getTo()
1945                 && seqDss != map.getFromSeq())
1946         {
1947           mappedFromLength = MappingUtils
1948                   .getLength(mapping.getMap().getFromRanges());
1949           if (mappedFromLength == map.getFromSeq().getLength())
1950           {
1951             /*
1952             * found a 3:1 mapping to the protein product which covers
1953             * the whole dna sequence i.e. is from CDS; finally check the CDS
1954             * is mapped from the given dna start sequence
1955             */
1956             SequenceI cdsSeq = map.getFromSeq();
1957             // todo this test is weak if seqMappings contains multiple mappings;
1958             // we get away with it if transcript:cds relationship is 1:1
1959             List<AlignedCodonFrame> dnaToCdsMaps = MappingUtils
1960                     .findMappingsForSequence(cdsSeq, seqMappings);
1961             if (!dnaToCdsMaps.isEmpty())
1962             {
1963               return cdsSeq;
1964             }
1965           }
1966         }
1967       }
1968     }
1969     return null;
1970   }
1971
1972   /**
1973    * Helper method that makes a CDS sequence as defined by the mappings from the
1974    * given sequence i.e. extracts the 'mapped from' ranges (which may be on
1975    * forward or reverse strand).
1976    * 
1977    * @param seq
1978    * @param mapping
1979    * @param dataset
1980    *          - existing dataset. We check for sequences that look like the CDS
1981    *          we are about to construct, if one exists already, then we will
1982    *          just return that one.
1983    * @return CDS sequence (as a dataset sequence)
1984    */
1985   static SequenceI makeCdsSequence(SequenceI seq, Mapping mapping,
1986           AlignmentI dataset)
1987   {
1988     char[] seqChars = seq.getSequence();
1989     List<int[]> fromRanges = mapping.getMap().getFromRanges();
1990     int cdsWidth = MappingUtils.getLength(fromRanges);
1991     char[] newSeqChars = new char[cdsWidth];
1992
1993     int newPos = 0;
1994     for (int[] range : fromRanges)
1995     {
1996       if (range[0] <= range[1])
1997       {
1998         // forward strand mapping - just copy the range
1999         int length = range[1] - range[0] + 1;
2000         System.arraycopy(seqChars, range[0] - 1, newSeqChars, newPos,
2001                 length);
2002         newPos += length;
2003       }
2004       else
2005       {
2006         // reverse strand mapping - copy and complement one by one
2007         for (int i = range[0]; i >= range[1]; i--)
2008         {
2009           newSeqChars[newPos++] = Dna.getComplement(seqChars[i - 1]);
2010         }
2011       }
2012     }
2013
2014     /*
2015      * assign 'from id' held in the mapping if set (e.g. EMBL protein_id),
2016      * else generate a sequence name
2017      */
2018     String mapFromId = mapping.getMappedFromId();
2019     String seqId = "CDS|" + (mapFromId != null ? mapFromId : seq.getName());
2020     SequenceI newSeq = new Sequence(seqId, newSeqChars, 1, newPos);
2021     if (dataset != null)
2022     {
2023       SequenceI[] matches = dataset.findSequenceMatch(newSeq.getName());
2024       if (matches != null)
2025       {
2026         boolean matched = false;
2027         for (SequenceI mtch : matches)
2028         {
2029           if (mtch.getStart() != newSeq.getStart())
2030           {
2031             continue;
2032           }
2033           if (mtch.getEnd() != newSeq.getEnd())
2034           {
2035             continue;
2036           }
2037           if (!Arrays.equals(mtch.getSequence(), newSeq.getSequence()))
2038           {
2039             continue;
2040           }
2041           if (!matched)
2042           {
2043             matched = true;
2044             newSeq = mtch;
2045           }
2046           else
2047           {
2048             System.err.println(
2049                     "JAL-2154 regression: warning - found (and ignnored a duplicate CDS sequence):"
2050                             + mtch.toString());
2051           }
2052         }
2053       }
2054     }
2055     // newSeq.setDescription(mapFromId);
2056
2057     return newSeq;
2058   }
2059
2060   /**
2061    * Adds any DBRefEntrys to cdsSeq from contig that have a Mapping congruent to
2062    * the given mapping.
2063    * 
2064    * @param cdsSeq
2065    * @param contig
2066    * @param proteinProduct
2067    * @param mapping
2068    * @return list of DBRefEntrys added
2069    */
2070   protected static List<DBRefEntry> propagateDBRefsToCDS(SequenceI cdsSeq,
2071           SequenceI contig, SequenceI proteinProduct, Mapping mapping)
2072   {
2073
2074     // gather direct refs from contig congruent with mapping
2075     List<DBRefEntry> direct = new ArrayList<>();
2076     HashSet<String> directSources = new HashSet<>();
2077
2078     List<DBRefEntry> refs = contig.getDBRefs();
2079     if (refs != null)
2080     {
2081       for (int ib = 0, nb = refs.size(); ib < nb; ib++)
2082       {
2083           DBRefEntry dbr = refs.get(ib);
2084           MapList map;
2085         if (dbr.hasMap() && (map = dbr.getMap().getMap()).isTripletMap())
2086         {
2087           // check if map is the CDS mapping
2088           if (mapping.getMap().equals(map))
2089           {
2090             direct.add(dbr);
2091             directSources.add(dbr.getSource());
2092           }
2093         }
2094       }
2095     }
2096     List<DBRefEntry> onSource = DBRefUtils.selectRefs(
2097             proteinProduct.getDBRefs(),
2098             directSources.toArray(new String[0]));
2099     List<DBRefEntry> propagated = new ArrayList<>();
2100
2101     // and generate appropriate mappings
2102     for (int ic = 0, nc = direct.size(); ic < nc; ic++)
2103     {
2104         DBRefEntry cdsref = direct.get(ic);
2105         Mapping m = cdsref.getMap();
2106       // clone maplist and mapping
2107       MapList cdsposmap = new MapList(
2108               Arrays.asList(new int[][]
2109               { new int[] { cdsSeq.getStart(), cdsSeq.getEnd() } }),
2110               m.getMap().getToRanges(), 3, 1);
2111       Mapping cdsmap = new Mapping(m.getTo(),m.getMap());
2112
2113       // create dbref
2114       DBRefEntry newref = new DBRefEntry(cdsref.getSource(),
2115               cdsref.getVersion(), cdsref.getAccessionId(),
2116               new Mapping(cdsmap.getTo(), cdsposmap));
2117
2118       // and see if we can map to the protein product for this mapping.
2119       // onSource is the filtered set of accessions on protein that we are
2120       // tranferring, so we assume accession is the same.
2121       if (cdsmap.getTo() == null && onSource != null)
2122       {
2123         List<DBRefEntry> sourceRefs = DBRefUtils.searchRefs(onSource,
2124                 cdsref.getAccessionId());
2125         if (sourceRefs != null)
2126         {
2127           for (DBRefEntry srcref : sourceRefs)
2128           {
2129             if (srcref.getSource().equalsIgnoreCase(cdsref.getSource()))
2130             {
2131               // we have found a complementary dbref on the protein product, so
2132               // update mapping's getTo
2133               newref.getMap().setTo(proteinProduct);
2134             }
2135           }
2136         }
2137       }
2138       cdsSeq.addDBRef(newref);
2139       propagated.add(newref);
2140     }
2141     return propagated;
2142   }
2143
2144   /**
2145    * Transfers co-located features on 'fromSeq' to 'toSeq', adjusting the
2146    * feature start/end ranges, optionally omitting specified feature types.
2147    * Returns the number of features copied.
2148    * 
2149    * @param fromSeq
2150    * @param toSeq
2151    * @param mapping
2152    *          the mapping from 'fromSeq' to 'toSeq'
2153    * @param select
2154    *          if not null, only features of this type are copied (including
2155    *          subtypes in the Sequence Ontology)
2156    * @param omitting
2157    */
2158   protected static int transferFeatures(SequenceI fromSeq, SequenceI toSeq,
2159           MapList mapping, String select, String... omitting)
2160   {
2161     SequenceI copyTo = toSeq;
2162     while (copyTo.getDatasetSequence() != null)
2163     {
2164       copyTo = copyTo.getDatasetSequence();
2165     }
2166
2167     /*
2168      * get features, optionally restricted by an ontology term
2169      */
2170     List<SequenceFeature> sfs = select == null ? fromSeq.getFeatures()
2171             .getPositionalFeatures() : fromSeq.getFeatures()
2172             .getFeaturesByOntology(select);
2173
2174     int count = 0;
2175     for (SequenceFeature sf : sfs)
2176     {
2177       String type = sf.getType();
2178       boolean omit = false;
2179       for (String toOmit : omitting)
2180       {
2181         if (type.equals(toOmit))
2182         {
2183           omit = true;
2184         }
2185       }
2186       if (omit)
2187       {
2188         continue;
2189       }
2190
2191       /*
2192        * locate the mapped range - null if either start or end is
2193        * not mapped (no partial overlaps are calculated)
2194        */
2195       int start = sf.getBegin();
2196       int end = sf.getEnd();
2197       int[] mappedTo = mapping.locateInTo(start, end);
2198       /*
2199        * if whole exon range doesn't map, try interpreting it
2200        * as 5' or 3' exon overlapping the CDS range
2201        */
2202       if (mappedTo == null)
2203       {
2204         mappedTo = mapping.locateInTo(end, end);
2205         if (mappedTo != null)
2206         {
2207           /*
2208            * end of exon is in CDS range - 5' overlap
2209            * to a range from the start of the peptide
2210            */
2211           mappedTo[0] = 1;
2212         }
2213       }
2214       if (mappedTo == null)
2215       {
2216         mappedTo = mapping.locateInTo(start, start);
2217         if (mappedTo != null)
2218         {
2219           /*
2220            * start of exon is in CDS range - 3' overlap
2221            * to a range up to the end of the peptide
2222            */
2223           mappedTo[1] = toSeq.getLength();
2224         }
2225       }
2226       if (mappedTo != null)
2227       {
2228         int newBegin = Math.min(mappedTo[0], mappedTo[1]);
2229         int newEnd = Math.max(mappedTo[0], mappedTo[1]);
2230         SequenceFeature copy = new SequenceFeature(sf, newBegin, newEnd,
2231                 sf.getFeatureGroup(), sf.getScore());
2232         copyTo.addSequenceFeature(copy);
2233         count++;
2234       }
2235     }
2236     return count;
2237   }
2238
2239   /**
2240    * Returns a mapping from dna to protein by inspecting sequence features of
2241    * type "CDS" on the dna. A mapping is constructed if the total CDS feature
2242    * length is 3 times the peptide length (optionally after dropping a trailing
2243    * stop codon). This method does not check whether the CDS nucleotide sequence
2244    * translates to the peptide sequence.
2245    * 
2246    * @param dnaSeq
2247    * @param proteinSeq
2248    * @return
2249    */
2250   public static MapList mapCdsToProtein(SequenceI dnaSeq,
2251           SequenceI proteinSeq)
2252   {
2253     List<int[]> ranges = findCdsPositions(dnaSeq);
2254     int mappedDnaLength = MappingUtils.getLength(ranges);
2255
2256     /*
2257      * if not a whole number of codons, truncate mapping
2258      */
2259     int codonRemainder = mappedDnaLength % CODON_LENGTH;
2260     if (codonRemainder > 0)
2261     {
2262       mappedDnaLength -= codonRemainder;
2263       MappingUtils.removeEndPositions(codonRemainder, ranges);
2264     }
2265
2266     int proteinLength = proteinSeq.getLength();
2267     int proteinStart = proteinSeq.getStart();
2268     int proteinEnd = proteinSeq.getEnd();
2269
2270     /*
2271      * incomplete start codon may mean X at start of peptide
2272      * we ignore both for mapping purposes
2273      */
2274     if (proteinSeq.getCharAt(0) == 'X')
2275     {
2276       // todo JAL-2022 support startPhase > 0
2277       proteinStart++;
2278       proteinLength--;
2279     }
2280     List<int[]> proteinRange = new ArrayList<>();
2281
2282     /*
2283      * dna length should map to protein (or protein plus stop codon)
2284      */
2285     int codesForResidues = mappedDnaLength / CODON_LENGTH;
2286     if (codesForResidues == (proteinLength + 1))
2287     {
2288       // assuming extra codon is for STOP and not in peptide
2289       // todo: check trailing codon is indeed a STOP codon
2290       codesForResidues--;
2291       mappedDnaLength -= CODON_LENGTH;
2292       MappingUtils.removeEndPositions(CODON_LENGTH, ranges);
2293     }
2294
2295     if (codesForResidues == proteinLength)
2296     {
2297       proteinRange.add(new int[] { proteinStart, proteinEnd });
2298       return new MapList(ranges, proteinRange, CODON_LENGTH, 1);
2299     }
2300     return null;
2301   }
2302
2303   /**
2304    * Returns a list of CDS ranges found (as sequence positions base 1), i.e. of
2305    * [start, end] positions of sequence features of type "CDS" (or a sub-type of
2306    * CDS in the Sequence Ontology). The ranges are sorted into ascending start
2307    * position order, so this method is only valid for linear CDS in the same
2308    * sense as the protein product.
2309    * 
2310    * @param dnaSeq
2311    * @return
2312    */
2313   protected static List<int[]> findCdsPositions(SequenceI dnaSeq)
2314   {
2315     List<int[]> result = new ArrayList<>();
2316
2317     List<SequenceFeature> sfs = dnaSeq.getFeatures().getFeaturesByOntology(
2318             SequenceOntologyI.CDS);
2319     if (sfs.isEmpty())
2320     {
2321       return result;
2322     }
2323     SequenceFeatures.sortFeatures(sfs, true);
2324
2325     for (SequenceFeature sf : sfs)
2326     {
2327       int phase = 0;
2328       try
2329       {
2330         String s = sf.getPhase();
2331         if (s != null) 
2332         {
2333                 phase = Integer.parseInt(s);
2334         }
2335       } catch (NumberFormatException e)
2336       {
2337         // SwingJS -- need to avoid these.
2338       }
2339       /*
2340        * phase > 0 on first codon means 5' incomplete - skip to the start
2341        * of the next codon; example ENST00000496384
2342        */
2343       int begin = sf.getBegin();
2344       int end = sf.getEnd();
2345       if (result.isEmpty() && phase > 0)
2346       {
2347         begin += phase;
2348         if (begin > end)
2349         {
2350           // shouldn't happen!
2351           System.err
2352                   .println("Error: start phase extends beyond start CDS in "
2353                           + dnaSeq.getName());
2354         }
2355       }
2356       result.add(new int[] { begin, end });
2357     }
2358
2359     /*
2360      * Finally sort ranges by start position. This avoids a dependency on 
2361      * keeping features in order on the sequence (if they are in order anyway,
2362      * the sort will have almost no work to do). The implicit assumption is CDS
2363      * ranges are assembled in order. Other cases should not use this method,
2364      * but instead construct an explicit mapping for CDS (e.g. EMBL parsing).
2365      */
2366     Collections.sort(result, IntRangeComparator.ASCENDING);
2367     return result;
2368   }
2369
2370   /**
2371    * Maps exon features from dna to protein, and computes variants in peptide
2372    * product generated by variants in dna, and adds them as sequence_variant
2373    * features on the protein sequence. Returns the number of variant features
2374    * added.
2375    * 
2376    * @param dnaSeq
2377    * @param peptide
2378    * @param dnaToProtein
2379    */
2380   public static int computeProteinFeatures(SequenceI dnaSeq,
2381           SequenceI peptide, MapList dnaToProtein)
2382   {
2383     while (dnaSeq.getDatasetSequence() != null)
2384     {
2385       dnaSeq = dnaSeq.getDatasetSequence();
2386     }
2387     while (peptide.getDatasetSequence() != null)
2388     {
2389       peptide = peptide.getDatasetSequence();
2390     }
2391
2392     transferFeatures(dnaSeq, peptide, dnaToProtein, SequenceOntologyI.EXON);
2393
2394     /*
2395      * compute protein variants from dna variants and codon mappings;
2396      * NB - alternatively we could retrieve this using the REST service e.g.
2397      * http://rest.ensembl.org/overlap/translation
2398      * /ENSP00000288602?feature=transcript_variation;content-type=text/xml
2399      * which would be a bit slower but possibly more reliable
2400      */
2401
2402     /*
2403      * build a map with codon variations for each potentially varying peptide
2404      */
2405     LinkedHashMap<Integer, List<DnaVariant>[]> variants = buildDnaVariantsMap(
2406             dnaSeq, dnaToProtein);
2407
2408     /*
2409      * scan codon variations, compute peptide variants and add to peptide sequence
2410      */
2411     int count = 0;
2412     for (Entry<Integer, List<DnaVariant>[]> variant : variants.entrySet())
2413     {
2414       int peptidePos = variant.getKey();
2415       List<DnaVariant>[] codonVariants = variant.getValue();
2416       count += computePeptideVariants(peptide, peptidePos, codonVariants);
2417     }
2418
2419     return count;
2420   }
2421
2422   /**
2423    * Computes non-synonymous peptide variants from codon variants and adds them
2424    * as sequence_variant features on the protein sequence (one feature per
2425    * allele variant). Selected attributes (variant id, clinical significance)
2426    * are copied over to the new features.
2427    * 
2428    * @param peptide
2429    *          the protein sequence
2430    * @param peptidePos
2431    *          the position to compute peptide variants for
2432    * @param codonVariants
2433    *          a list of dna variants per codon position
2434    * @return the number of features added
2435    */
2436   static int computePeptideVariants(SequenceI peptide, int peptidePos,
2437           List<DnaVariant>[] codonVariants)
2438   {
2439     String residue = String.valueOf(peptide.getCharAt(peptidePos - 1));
2440     int count = 0;
2441     String base1 = codonVariants[0].get(0).base;
2442     String base2 = codonVariants[1].get(0).base;
2443     String base3 = codonVariants[2].get(0).base;
2444
2445     /*
2446      * variants in first codon base
2447      */
2448     for (DnaVariant dnavar : codonVariants[0])
2449     {
2450       if (dnavar.variant != null)
2451       {
2452         String alleles = (String) dnavar.variant.getValue(Gff3Helper.ALLELES);
2453         if (alleles != null)
2454         {
2455           for (String base : alleles.split(","))
2456           {
2457             if (!base1.equalsIgnoreCase(base))
2458             {
2459               String codon = base.toUpperCase() + base2.toLowerCase()
2460                       + base3.toLowerCase();
2461               String canonical = base1.toUpperCase() + base2.toLowerCase()
2462                       + base3.toLowerCase();
2463               if (addPeptideVariant(peptide, peptidePos, residue, dnavar,
2464                       codon, canonical))
2465               {
2466                 count++;
2467               }
2468             }
2469           }
2470         }
2471       }
2472     }
2473
2474     /*
2475      * variants in second codon base
2476      */
2477     for (DnaVariant var : codonVariants[1])
2478     {
2479       if (var.variant != null)
2480       {
2481         String alleles = (String) var.variant.getValue(Gff3Helper.ALLELES);
2482         if (alleles != null)
2483         {
2484           for (String base : alleles.split(","))
2485           {
2486             if (!base2.equalsIgnoreCase(base))
2487             {
2488               String codon = base1.toLowerCase() + base.toUpperCase()
2489                       + base3.toLowerCase();
2490               String canonical = base1.toLowerCase() + base2.toUpperCase()
2491                       + base3.toLowerCase();
2492               if (addPeptideVariant(peptide, peptidePos, residue, var,
2493                       codon, canonical))
2494               {
2495                 count++;
2496               }
2497             }
2498           }
2499         }
2500       }
2501     }
2502
2503     /*
2504      * variants in third codon base
2505      */
2506     for (DnaVariant var : codonVariants[2])
2507     {
2508       if (var.variant != null)
2509       {
2510         String alleles = (String) var.variant.getValue(Gff3Helper.ALLELES);
2511         if (alleles != null)
2512         {
2513           for (String base : alleles.split(","))
2514           {
2515             if (!base3.equalsIgnoreCase(base))
2516             {
2517               String codon = base1.toLowerCase() + base2.toLowerCase()
2518                       + base.toUpperCase();
2519               String canonical = base1.toLowerCase() + base2.toLowerCase()
2520                       + base3.toUpperCase();
2521               if (addPeptideVariant(peptide, peptidePos, residue, var,
2522                       codon, canonical))
2523               {
2524                 count++;
2525               }
2526             }
2527           }
2528         }
2529       }
2530     }
2531
2532     return count;
2533   }
2534
2535   /**
2536    * Helper method that adds a peptide variant feature. ID and
2537    * clinical_significance attributes of the dna variant (if present) are copied
2538    * to the new feature.
2539    * 
2540    * @param peptide
2541    * @param peptidePos
2542    * @param residue
2543    * @param var
2544    * @param codon
2545    *          the variant codon e.g. aCg
2546    * @param canonical
2547    *          the 'normal' codon e.g. aTg
2548    * @return true if a feature was added, else false
2549    */
2550   static boolean addPeptideVariant(SequenceI peptide, int peptidePos,
2551           String residue, DnaVariant var, String codon, String canonical)
2552   {
2553     /*
2554      * get peptide translation of codon e.g. GAT -> D
2555      * note that variants which are not single alleles,
2556      * e.g. multibase variants or HGMD_MUTATION etc
2557      * are currently ignored here
2558      */
2559     String trans = codon.contains("-") ? null
2560             : (codon.length() > CODON_LENGTH ? null
2561                     : ResidueProperties.codonTranslate(codon));
2562     if (trans == null)
2563     {
2564       return false;
2565     }
2566     String desc = canonical + "/" + codon;
2567     String featureType = "";
2568     if (trans.equals(residue))
2569     {
2570       featureType = SequenceOntologyI.SYNONYMOUS_VARIANT;
2571     }
2572     else if (ResidueProperties.STOP.equals(trans))
2573     {
2574       featureType = SequenceOntologyI.STOP_GAINED;
2575     }
2576     else
2577     {
2578       String residue3Char = StringUtils
2579               .toSentenceCase(ResidueProperties.aa2Triplet.get(residue));
2580       String trans3Char = StringUtils
2581               .toSentenceCase(ResidueProperties.aa2Triplet.get(trans));
2582       desc = "p." + residue3Char + peptidePos + trans3Char;
2583       featureType = SequenceOntologyI.NONSYNONYMOUS_VARIANT;
2584     }
2585     SequenceFeature sf = new SequenceFeature(featureType, desc, peptidePos,
2586             peptidePos, var.getSource());
2587
2588     StringBuilder attributes = new StringBuilder(32);
2589     String id = (String) var.variant.getValue(VARIANT_ID);
2590     if (id != null)
2591     {
2592       if (id.startsWith(SEQUENCE_VARIANT))
2593       {
2594         id = id.substring(SEQUENCE_VARIANT.length());
2595       }
2596       sf.setValue(VARIANT_ID, id);
2597       attributes.append(VARIANT_ID).append("=").append(id);
2598       // TODO handle other species variants JAL-2064
2599       StringBuilder link = new StringBuilder(32);
2600       try
2601       {
2602         link.append(desc).append(" ").append(id).append(
2603                 "|http://www.ensembl.org/Homo_sapiens/Variation/Summary?v=")
2604                 .append(URLEncoder.encode(id, "UTF-8"));
2605         sf.addLink(link.toString());
2606       } catch (UnsupportedEncodingException e)
2607       {
2608         // as if
2609       }
2610     }
2611     String clinSig = (String) var.variant.getValue(CLINICAL_SIGNIFICANCE);
2612     if (clinSig != null)
2613     {
2614       sf.setValue(CLINICAL_SIGNIFICANCE, clinSig);
2615       attributes.append(";").append(CLINICAL_SIGNIFICANCE).append("=")
2616               .append(clinSig);
2617     }
2618     peptide.addSequenceFeature(sf);
2619     if (attributes.length() > 0)
2620     {
2621       sf.setAttributes(attributes.toString());
2622     }
2623     return true;
2624   }
2625
2626   /**
2627    * Builds a map whose key is position in the protein sequence, and value is a
2628    * list of the base and all variants for each corresponding codon position.
2629    * <p>
2630    * This depends on dna variants being held as a comma-separated list as
2631    * property "alleles" on variant features.
2632    * 
2633    * @param dnaSeq
2634    * @param dnaToProtein
2635    * @return
2636    */
2637   @SuppressWarnings("unchecked")
2638   static LinkedHashMap<Integer, List<DnaVariant>[]> buildDnaVariantsMap(
2639           SequenceI dnaSeq, MapList dnaToProtein)
2640   {
2641     /*
2642      * map from peptide position to all variants of the codon which codes for it
2643      * LinkedHashMap ensures we keep the peptide features in sequence order
2644      */
2645     LinkedHashMap<Integer, List<DnaVariant>[]> variants = new LinkedHashMap<>();
2646
2647     List<SequenceFeature> dnaFeatures = dnaSeq.getFeatures()
2648             .getFeaturesByOntology(SequenceOntologyI.SEQUENCE_VARIANT);
2649     if (dnaFeatures.isEmpty())
2650     {
2651       return variants;
2652     }
2653
2654     int dnaStart = dnaSeq.getStart();
2655     int[] lastCodon = null;
2656     int lastPeptidePostion = 0;
2657
2658     /*
2659      * build a map of codon variations for peptides
2660      */
2661     for (SequenceFeature sf : dnaFeatures)
2662     {
2663       int dnaCol = sf.getBegin();
2664       if (dnaCol != sf.getEnd())
2665       {
2666         // not handling multi-locus variant features
2667         continue;
2668       }
2669
2670       /*
2671        * ignore variant if not a SNP
2672        */
2673       String alls = (String) sf.getValue(Gff3Helper.ALLELES);
2674       if (alls == null)
2675       {
2676         continue; // non-SNP VCF variant perhaps - can't process this
2677       }
2678
2679       String[] alleles = alls.toUpperCase().split(",");
2680       boolean isSnp = true;
2681       for (String allele : alleles)
2682       {
2683         if (allele.trim().length() > 1)
2684         {
2685           isSnp = false;
2686         }
2687       }
2688       if (!isSnp)
2689       {
2690         continue;
2691       }
2692
2693       int[] mapsTo = dnaToProtein.locateInTo(dnaCol, dnaCol);
2694       if (mapsTo == null)
2695       {
2696         // feature doesn't lie within coding region
2697         continue;
2698       }
2699       int peptidePosition = mapsTo[0];
2700       List<DnaVariant>[] codonVariants = variants.get(peptidePosition);
2701       if (codonVariants == null)
2702       {
2703         codonVariants = new ArrayList[CODON_LENGTH];
2704         codonVariants[0] = new ArrayList<>();
2705         codonVariants[1] = new ArrayList<>();
2706         codonVariants[2] = new ArrayList<>();
2707         variants.put(peptidePosition, codonVariants);
2708       }
2709
2710       /*
2711        * get this peptide's codon positions e.g. [3, 4, 5] or [4, 7, 10]
2712        */
2713       int[] codon = peptidePosition == lastPeptidePostion ? lastCodon
2714               : MappingUtils.flattenRanges(dnaToProtein.locateInFrom(
2715                       peptidePosition, peptidePosition));
2716       lastPeptidePostion = peptidePosition;
2717       lastCodon = codon;
2718
2719       /*
2720        * save nucleotide (and any variant) for each codon position
2721        */
2722       for (int codonPos = 0; codonPos < CODON_LENGTH; codonPos++)
2723       {
2724         String nucleotide = String.valueOf(
2725                 dnaSeq.getCharAt(codon[codonPos] - dnaStart)).toUpperCase();
2726         List<DnaVariant> codonVariant = codonVariants[codonPos];
2727         if (codon[codonPos] == dnaCol)
2728         {
2729           if (!codonVariant.isEmpty()
2730                   && codonVariant.get(0).variant == null)
2731           {
2732             /*
2733              * already recorded base value, add this variant
2734              */
2735             codonVariant.get(0).variant = sf;
2736           }
2737           else
2738           {
2739             /*
2740              * add variant with base value
2741              */
2742             codonVariant.add(new DnaVariant(nucleotide, sf));
2743           }
2744         }
2745         else if (codonVariant.isEmpty())
2746         {
2747           /*
2748            * record (possibly non-varying) base value
2749            */
2750           codonVariant.add(new DnaVariant(nucleotide));
2751         }
2752       }
2753     }
2754     return variants;
2755   }
2756
2757   /**
2758    * Makes an alignment with a copy of the given sequences, adding in any
2759    * non-redundant sequences which are mapped to by the cross-referenced
2760    * sequences.
2761    * 
2762    * @param seqs
2763    * @param xrefs
2764    * @param dataset
2765    *          the alignment dataset shared by the new copy
2766    * @return
2767    */
2768   public static AlignmentI makeCopyAlignment(SequenceI[] seqs,
2769           SequenceI[] xrefs, AlignmentI dataset)
2770   {
2771     AlignmentI copy = new Alignment(new Alignment(seqs));
2772     copy.setDataset(dataset);
2773     boolean isProtein = !copy.isNucleotide();
2774     SequenceIdMatcher matcher = new SequenceIdMatcher(seqs);
2775     if (xrefs != null)
2776     {
2777         // BH 2019.01.25 streamlined this triply nested loop to remove all iterators
2778         
2779       for (int ix = 0, nx = xrefs.length; ix < nx; ix++)
2780       {
2781         SequenceI xref = xrefs[ix];
2782         List<DBRefEntry> dbrefs = xref.getDBRefs();
2783         if (dbrefs != null)
2784         {
2785           for (int ir = 0, nir = dbrefs.size(); ir < nir; ir++)
2786           {
2787                   DBRefEntry dbref = dbrefs.get(ir);
2788                   Mapping map = dbref.getMap();
2789                   SequenceI mto;
2790             if (map == null || (mto = map.getTo()) == null
2791                     || mto.isProtein() != isProtein)
2792             {
2793               continue;
2794             }
2795             SequenceI mappedTo = mto;
2796             SequenceI match = matcher.findIdMatch(mappedTo);
2797             if (match == null)
2798             {
2799               matcher.add(mappedTo);
2800               copy.addSequence(mappedTo);
2801             }
2802           }
2803         }
2804       }
2805     }
2806     return copy;
2807   }
2808
2809   /**
2810    * Try to align sequences in 'unaligned' to match the alignment of their
2811    * mapped regions in 'aligned'. For example, could use this to align CDS
2812    * sequences which are mapped to their parent cDNA sequences.
2813    * 
2814    * This method handles 1:1 mappings (dna-to-dna or protein-to-protein). For
2815    * dna-to-protein or protein-to-dna use alternative methods.
2816    * 
2817    * @param unaligned
2818    *          sequences to be aligned
2819    * @param aligned
2820    *          holds aligned sequences and their mappings
2821    * @return
2822    */
2823   public static int alignAs(AlignmentI unaligned, AlignmentI aligned)
2824   {
2825     /*
2826      * easy case - aligning a copy of aligned sequences
2827      */
2828     if (alignAsSameSequences(unaligned, aligned))
2829     {
2830       return unaligned.getHeight();
2831     }
2832
2833     /*
2834      * fancy case - aligning via mappings between sequences
2835      */
2836     List<SequenceI> unmapped = new ArrayList<>();
2837     Map<Integer, Map<SequenceI, Character>> columnMap = buildMappedColumnsMap(
2838             unaligned, aligned, unmapped);
2839     int width = columnMap.size();
2840     char gap = unaligned.getGapCharacter();
2841     int realignedCount = 0;
2842     // TODO: verify this loop scales sensibly for very wide/high alignments
2843
2844     for (SequenceI seq : unaligned.getSequences())
2845     {
2846       if (!unmapped.contains(seq))
2847       {
2848         char[] newSeq = new char[width];
2849         Arrays.fill(newSeq, gap); // JBPComment - doubt this is faster than the
2850                                   // Integer iteration below
2851         int newCol = 0;
2852         int lastCol = 0;
2853
2854         /*
2855          * traverse the map to find columns populated
2856          * by our sequence
2857          */
2858         for (Integer column : columnMap.keySet())
2859         {
2860           Character c = columnMap.get(column).get(seq);
2861           if (c != null)
2862           {
2863             /*
2864              * sequence has a character at this position
2865              * 
2866              */
2867             newSeq[newCol] = c;
2868             lastCol = newCol;
2869           }
2870           newCol++;
2871         }
2872
2873         /*
2874          * trim trailing gaps
2875          */
2876         if (lastCol < width)
2877         {
2878           char[] tmp = new char[lastCol + 1];
2879           System.arraycopy(newSeq, 0, tmp, 0, lastCol + 1);
2880           newSeq = tmp;
2881         }
2882         // TODO: optimise SequenceI to avoid char[]->String->char[]
2883         seq.setSequence(String.valueOf(newSeq));
2884         realignedCount++;
2885       }
2886     }
2887     return realignedCount;
2888   }
2889
2890   /**
2891    * If unaligned and aligned sequences share the same dataset sequences, then
2892    * simply copies the aligned sequences to the unaligned sequences and returns
2893    * true; else returns false
2894    * 
2895    * @param unaligned
2896    *          - sequences to be aligned based on aligned
2897    * @param aligned
2898    *          - 'guide' alignment containing sequences derived from same dataset
2899    *          as unaligned
2900    * @return
2901    */
2902   static boolean alignAsSameSequences(AlignmentI unaligned,
2903           AlignmentI aligned)
2904   {
2905     if (aligned.getDataset() == null || unaligned.getDataset() == null)
2906     {
2907       return false; // should only pass alignments with datasets here
2908     }
2909
2910     // map from dataset sequence to alignment sequence(s)
2911     Map<SequenceI, List<SequenceI>> alignedDatasets = new HashMap<>();
2912     for (SequenceI seq : aligned.getSequences())
2913     {
2914       SequenceI ds = seq.getDatasetSequence();
2915       if (alignedDatasets.get(ds) == null)
2916       {
2917         alignedDatasets.put(ds, new ArrayList<SequenceI>());
2918       }
2919       alignedDatasets.get(ds).add(seq);
2920     }
2921
2922     /*
2923      * first pass - check whether all sequences to be aligned share a dataset
2924      * sequence with an aligned sequence
2925      */
2926     for (SequenceI seq : unaligned.getSequences())
2927     {
2928       if (!alignedDatasets.containsKey(seq.getDatasetSequence()))
2929       {
2930         return false;
2931       }
2932     }
2933
2934     /*
2935      * second pass - copy aligned sequences;
2936      * heuristic rule: pair off sequences in order for the case where 
2937      * more than one shares the same dataset sequence 
2938      */
2939     for (SequenceI seq : unaligned.getSequences())
2940     {
2941       List<SequenceI> alignedSequences = alignedDatasets
2942               .get(seq.getDatasetSequence());
2943       // TODO: getSequenceAsString() will be deprecated in the future
2944       // TODO: need to leave to SequenceI implementor to update gaps
2945       seq.setSequence(alignedSequences.get(0).getSequenceAsString());
2946       if (alignedSequences.size() > 0)
2947       {
2948         // pop off aligned sequences (except the last one)
2949         alignedSequences.remove(0);
2950       }
2951     }
2952
2953     return true;
2954   }
2955
2956   /**
2957    * Returns a map whose key is alignment column number (base 1), and whose
2958    * values are a map of sequence characters in that column.
2959    * 
2960    * @param unaligned
2961    * @param aligned
2962    * @param unmapped
2963    * @return
2964    */
2965   static SortedMap<Integer, Map<SequenceI, Character>> buildMappedColumnsMap(
2966           AlignmentI unaligned, AlignmentI aligned,
2967           List<SequenceI> unmapped)
2968   {
2969     /*
2970      * Map will hold, for each aligned column position, a map of
2971      * {unalignedSequence, characterPerSequence} at that position.
2972      * TreeMap keeps the entries in ascending column order. 
2973      */
2974     SortedMap<Integer, Map<SequenceI, Character>> map = new TreeMap<>();
2975
2976     /*
2977      * record any sequences that have no mapping so can't be realigned
2978      */
2979     unmapped.addAll(unaligned.getSequences());
2980
2981     List<AlignedCodonFrame> mappings = aligned.getCodonFrames();
2982
2983     for (SequenceI seq : unaligned.getSequences())
2984     {
2985       for (AlignedCodonFrame mapping : mappings)
2986       {
2987         SequenceI fromSeq = mapping.findAlignedSequence(seq, aligned);
2988         if (fromSeq != null)
2989         {
2990           Mapping seqMap = mapping.getMappingBetween(fromSeq, seq);
2991           if (addMappedPositions(seq, fromSeq, seqMap, map))
2992           {
2993             unmapped.remove(seq);
2994           }
2995         }
2996       }
2997     }
2998     return map;
2999   }
3000
3001   /**
3002    * Helper method that adds to a map the mapped column positions of a sequence.
3003    * <br>
3004    * For example if aaTT-Tg-gAAA is mapped to TTTAAA then the map should record
3005    * that columns 3,4,6,10,11,12 map to characters T,T,T,A,A,A of the mapped to
3006    * sequence.
3007    * 
3008    * @param seq
3009    *          the sequence whose column positions we are recording
3010    * @param fromSeq
3011    *          a sequence that is mapped to the first sequence
3012    * @param seqMap
3013    *          the mapping from 'fromSeq' to 'seq'
3014    * @param map
3015    *          a map to add the column positions (in fromSeq) of the mapped
3016    *          positions of seq
3017    * @return
3018    */
3019   static boolean addMappedPositions(SequenceI seq, SequenceI fromSeq,
3020           Mapping seqMap, Map<Integer, Map<SequenceI, Character>> map)
3021   {
3022     if (seqMap == null)
3023     {
3024       return false;
3025     }
3026
3027     /*
3028      * invert mapping if it is from unaligned to aligned sequence
3029      */
3030     if (seqMap.getTo() == fromSeq.getDatasetSequence())
3031     {
3032       seqMap = new Mapping(seq.getDatasetSequence(),
3033               seqMap.getMap().getInverse());
3034     }
3035
3036     int toStart = seq.getStart();
3037
3038     /*
3039      * traverse [start, end, start, end...] ranges in fromSeq
3040      */
3041     for (int[] fromRange : seqMap.getMap().getFromRanges())
3042     {
3043       for (int i = 0; i < fromRange.length - 1; i += 2)
3044       {
3045         boolean forward = fromRange[i + 1] >= fromRange[i];
3046
3047         /*
3048          * find the range mapped to (sequence positions base 1)
3049          */
3050         int[] range = seqMap.locateMappedRange(fromRange[i],
3051                 fromRange[i + 1]);
3052         if (range == null)
3053         {
3054           System.err.println("Error in mapping " + seqMap + " from "
3055                   + fromSeq.getName());
3056           return false;
3057         }
3058         int fromCol = fromSeq.findIndex(fromRange[i]);
3059         int mappedCharPos = range[0];
3060
3061         /*
3062          * walk over the 'from' aligned sequence in forward or reverse
3063          * direction; when a non-gap is found, record the column position
3064          * of the next character of the mapped-to sequence; stop when all
3065          * the characters of the range have been counted
3066          */
3067         while (mappedCharPos <= range[1] && fromCol <= fromSeq.getLength()
3068                 && fromCol >= 0)
3069         {
3070           if (!Comparison.isGap(fromSeq.getCharAt(fromCol - 1)))
3071           {
3072             /*
3073              * mapped from sequence has a character in this column
3074              * record the column position for the mapped to character
3075              */
3076             Map<SequenceI, Character> seqsMap = map.get(fromCol);
3077             if (seqsMap == null)
3078             {
3079               seqsMap = new HashMap<>();
3080               map.put(fromCol, seqsMap);
3081             }
3082             seqsMap.put(seq, seq.getCharAt(mappedCharPos - toStart));
3083             mappedCharPos++;
3084           }
3085           fromCol += (forward ? 1 : -1);
3086         }
3087       }
3088     }
3089     return true;
3090   }
3091
3092   // strictly temporary hack until proper criteria for aligning protein to cds
3093   // are in place; this is so Ensembl -> fetch xrefs Uniprot aligns the Uniprot
3094   public static boolean looksLikeEnsembl(AlignmentI alignment)
3095   {
3096     for (SequenceI seq : alignment.getSequences())
3097     {
3098       String name = seq.getName();
3099       if (!name.startsWith("ENSG") && !name.startsWith("ENST"))
3100       {
3101         return false;
3102       }
3103     }
3104     return true;
3105   }
3106 }