00b3143bf4585b979d7a78f9e538cf9f57c6d18e
[jalview.git] / src / jalview / structure / StructureSelectionManager.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.structure;
22
23 import jalview.analysis.AlignSeq;
24 import jalview.api.StructureSelectionManagerProvider;
25 import jalview.commands.CommandI;
26 import jalview.commands.EditCommand;
27 import jalview.commands.OrderCommand;
28 import jalview.datamodel.AlignedCodonFrame;
29 import jalview.datamodel.AlignmentAnnotation;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.Annotation;
32 import jalview.datamodel.PDBEntry;
33 import jalview.datamodel.SearchResults;
34 import jalview.datamodel.SequenceI;
35 import jalview.gui.IProgressIndicator;
36 import jalview.io.AppletFormatAdapter;
37 import jalview.util.MappingUtils;
38 import jalview.util.MessageManager;
39 import jalview.ws.sifts.SiftsClient;
40 import jalview.ws.sifts.SiftsException;
41 import jalview.ws.sifts.SiftsSettings;
42
43 import java.io.PrintStream;
44 import java.util.ArrayList;
45 import java.util.Arrays;
46 import java.util.Collections;
47 import java.util.Enumeration;
48 import java.util.HashMap;
49 import java.util.IdentityHashMap;
50 import java.util.List;
51 import java.util.Map;
52 import java.util.Vector;
53
54 import MCview.Atom;
55 import MCview.PDBChain;
56 import MCview.PDBfile;
57
58 public class StructureSelectionManager
59 {
60   public final static String NEWLINE = System.lineSeparator();
61
62   static IdentityHashMap<StructureSelectionManagerProvider, StructureSelectionManager> instances;
63
64   private List<StructureMapping> mappings = new ArrayList<StructureMapping>();
65
66   private boolean processSecondaryStructure = false;
67
68   private boolean secStructServices = false;
69
70   private boolean addTempFacAnnot = false;
71
72   private IProgressIndicator progressIndicator;
73
74   private SiftsClient siftsClient = null;
75
76   private long progressSessionId;
77
78   /*
79    * Set of any registered mappings between (dataset) sequences.
80    */
81   private List<AlignedCodonFrame> seqmappings = new ArrayList<AlignedCodonFrame>();
82
83   private List<CommandListener> commandListeners = new ArrayList<CommandListener>();
84
85   private List<SelectionListener> sel_listeners = new ArrayList<SelectionListener>();
86
87   /**
88    * @return true if will try to use external services for processing secondary
89    *         structure
90    */
91   public boolean isSecStructServices()
92   {
93     return secStructServices;
94   }
95
96   /**
97    * control use of external services for processing secondary structure
98    * 
99    * @param secStructServices
100    */
101   public void setSecStructServices(boolean secStructServices)
102   {
103     this.secStructServices = secStructServices;
104   }
105
106   /**
107    * flag controlling addition of any kind of structural annotation
108    * 
109    * @return true if temperature factor annotation will be added
110    */
111   public boolean isAddTempFacAnnot()
112   {
113     return addTempFacAnnot;
114   }
115
116   /**
117    * set flag controlling addition of structural annotation
118    * 
119    * @param addTempFacAnnot
120    */
121   public void setAddTempFacAnnot(boolean addTempFacAnnot)
122   {
123     this.addTempFacAnnot = addTempFacAnnot;
124   }
125
126   /**
127    * 
128    * @return if true, the structure manager will attempt to add secondary
129    *         structure lines for unannotated sequences
130    */
131
132   public boolean isProcessSecondaryStructure()
133   {
134     return processSecondaryStructure;
135   }
136
137   /**
138    * Control whether structure manager will try to annotate mapped sequences
139    * with secondary structure from PDB data.
140    * 
141    * @param enable
142    */
143   public void setProcessSecondaryStructure(boolean enable)
144   {
145     processSecondaryStructure = enable;
146   }
147
148   /**
149    * debug function - write all mappings to stdout
150    */
151   public void reportMapping()
152   {
153     if (mappings.isEmpty())
154     {
155       System.err.println("reportMapping: No PDB/Sequence mappings.");
156     }
157     else
158     {
159       System.err.println("reportMapping: There are " + mappings.size()
160               + " mappings.");
161       int i = 0;
162       for (StructureMapping sm : mappings)
163       {
164         System.err.println("mapping " + i++ + " : " + sm.pdbfile);
165       }
166     }
167   }
168
169   /**
170    * map between the PDB IDs (or structure identifiers) used by Jalview and the
171    * absolute filenames for PDB data that corresponds to it
172    */
173   Map<String, String> pdbIdFileName = new HashMap<String, String>();
174
175   Map<String, String> pdbFileNameId = new HashMap<String, String>();
176
177   public void registerPDBFile(String idForFile, String absoluteFile)
178   {
179     pdbIdFileName.put(idForFile, absoluteFile);
180     pdbFileNameId.put(absoluteFile, idForFile);
181   }
182
183   public String findIdForPDBFile(String idOrFile)
184   {
185     String id = pdbFileNameId.get(idOrFile);
186     return id;
187   }
188
189   public String findFileForPDBId(String idOrFile)
190   {
191     String id = pdbIdFileName.get(idOrFile);
192     return id;
193   }
194
195   public boolean isPDBFileRegistered(String idOrFile)
196   {
197     return pdbFileNameId.containsKey(idOrFile)
198             || pdbIdFileName.containsKey(idOrFile);
199   }
200
201   private static StructureSelectionManager nullProvider = null;
202
203   public static StructureSelectionManager getStructureSelectionManager(
204           StructureSelectionManagerProvider context)
205   {
206     if (context == null)
207     {
208       if (nullProvider == null)
209       {
210         if (instances != null)
211         {
212           throw new Error(
213                   MessageManager
214                           .getString("error.implementation_error_structure_selection_manager_null"),
215                   new NullPointerException(MessageManager
216                           .getString("exception.ssm_context_is_null")));
217         }
218         else
219         {
220           nullProvider = new StructureSelectionManager();
221         }
222         return nullProvider;
223       }
224     }
225     if (instances == null)
226     {
227       instances = new java.util.IdentityHashMap<StructureSelectionManagerProvider, StructureSelectionManager>();
228     }
229     StructureSelectionManager instance = instances.get(context);
230     if (instance == null)
231     {
232       if (nullProvider != null)
233       {
234         instance = nullProvider;
235       }
236       else
237       {
238         instance = new StructureSelectionManager();
239       }
240       instances.put(context, instance);
241     }
242     return instance;
243   }
244
245   /**
246    * flag controlling whether SeqMappings are relayed from received sequence
247    * mouse over events to other sequences
248    */
249   boolean relaySeqMappings = true;
250
251   /**
252    * Enable or disable relay of seqMapping events to other sequences. You might
253    * want to do this if there are many sequence mappings and the host computer
254    * is slow
255    * 
256    * @param relay
257    */
258   public void setRelaySeqMappings(boolean relay)
259   {
260     relaySeqMappings = relay;
261   }
262
263   /**
264    * get the state of the relay seqMappings flag.
265    * 
266    * @return true if sequence mouse overs are being relayed to other mapped
267    *         sequences
268    */
269   public boolean isRelaySeqMappingsEnabled()
270   {
271     return relaySeqMappings;
272   }
273
274   Vector listeners = new Vector();
275
276   /**
277    * register a listener for alignment sequence mouseover events
278    * 
279    * @param svl
280    */
281   public void addStructureViewerListener(Object svl)
282   {
283     if (!listeners.contains(svl))
284     {
285       listeners.addElement(svl);
286     }
287   }
288
289   /**
290    * Returns the file name for a mapped PDB id (or null if not mapped).
291    * 
292    * @param pdbid
293    * @return
294    */
295   public String alreadyMappedToFile(String pdbid)
296   {
297     for (StructureMapping sm : mappings)
298     {
299       if (sm.getPdbId().equals(pdbid))
300       {
301         return sm.pdbfile;
302       }
303     }
304     return null;
305   }
306
307   /**
308    * Import structure data and register a structure mapping for broadcasting
309    * colouring, mouseovers and selection events (convenience wrapper).
310    * 
311    * @param sequence
312    *          - one or more sequences to be mapped to pdbFile
313    * @param targetChains
314    *          - optional chain specification for mapping each sequence to pdb
315    *          (may be nill, individual elements may be nill)
316    * @param pdbFile
317    *          - structure data resource
318    * @param protocol
319    *          - how to resolve data from resource
320    * @return null or the structure data parsed as a pdb file
321    */
322   synchronized public PDBfile setMapping(SequenceI[] sequence,
323           String[] targetChains, String pdbFile, String protocol)
324   {
325     return setMapping(true, sequence, targetChains, pdbFile, protocol);
326   }
327
328   /**
329    * create sequence structure mappings between each sequence and the given
330    * pdbFile (retrieved via the given protocol).
331    * 
332    * @param forStructureView
333    *          when true, record the mapping for use in mouseOvers
334    * 
335    * @param sequenceArray
336    *          - one or more sequences to be mapped to pdbFile
337    * @param targetChainIds
338    *          - optional chain specification for mapping each sequence to pdb
339    *          (may be nill, individual elements may be nill)
340    * @param pdbFile
341    *          - structure data resource
342    * @param protocol
343    *          - how to resolve data from resource
344    * @return null or the structure data parsed as a pdb file
345    */
346   synchronized public PDBfile setMapping(boolean forStructureView,
347           SequenceI[] sequenceArray, String[] targetChainIds,
348           String pdbFile,
349           String protocol)
350   {
351     /*
352      * There will be better ways of doing this in the future, for now we'll use
353      * the tried and tested MCview pdb mapping
354      */
355     boolean parseSecStr = processSecondaryStructure;
356     if (isPDBFileRegistered(pdbFile))
357     {
358       for (SequenceI sq : sequenceArray)
359       {
360         SequenceI ds = sq;
361         while (ds.getDatasetSequence() != null)
362         {
363           ds = ds.getDatasetSequence();
364         }
365         ;
366         if (ds.getAnnotation() != null)
367         {
368           for (AlignmentAnnotation ala : ds.getAnnotation())
369           {
370             // false if any annotation present from this structure
371             // JBPNote this fails for jmol/chimera view because the *file* is
372             // passed, not the structure data ID -
373             if (PDBfile.isCalcIdForFile(ala, findIdForPDBFile(pdbFile)))
374             {
375               parseSecStr = false;
376             }
377           }
378         }
379       }
380     }
381     PDBfile pdb = null;
382     boolean isMapUsingSIFTs = SiftsSettings.isMapWithSifts();
383     try
384     {
385       pdb = new PDBfile(addTempFacAnnot, parseSecStr, secStructServices,
386               pdbFile, protocol);
387
388       if (pdb.getId() != null && pdb.getId().trim().length() > 0
389               && AppletFormatAdapter.FILE.equals(protocol))
390       {
391         registerPDBFile(pdb.getId().trim(), pdbFile);
392       }
393     } catch (Exception ex)
394     {
395       ex.printStackTrace();
396       return null;
397     }
398
399     try
400     {
401       if (isMapUsingSIFTs)
402       {
403         siftsClient = new SiftsClient(pdb);
404       }
405     } catch (SiftsException e)
406     {
407       isMapUsingSIFTs = false;
408       e.printStackTrace();
409     }
410
411     String targetChainId;
412     for (int s = 0; s < sequenceArray.length; s++)
413     {
414       boolean infChain = true;
415       final SequenceI seq = sequenceArray[s];
416       if (targetChainIds != null && targetChainIds[s] != null)
417       {
418         infChain = false;
419         targetChainId = targetChainIds[s];
420       }
421       else if (seq.getName().indexOf("|") > -1)
422       {
423         targetChainId = seq.getName().substring(
424                 seq.getName().lastIndexOf("|") + 1);
425         if (targetChainId.length() > 1)
426         {
427           if (targetChainId.trim().length() == 0)
428           {
429             targetChainId = " ";
430           }
431           else
432           {
433             // not a valid chain identifier
434             targetChainId = "";
435           }
436         }
437       }
438       else
439       {
440         targetChainId = "";
441       }
442
443       /*
444        * Attempt pairwise alignment of the sequence with each chain in the PDB,
445        * and remember the highest scoring chain
446        */
447       int max = -10;
448       AlignSeq maxAlignseq = null;
449       String maxChainId = " ";
450       PDBChain maxChain = null;
451       boolean first = true;
452       for (PDBChain chain : pdb.getChains())
453       {
454         if (targetChainId.length() > 0 && !targetChainId.equals(chain.id)
455                 && !infChain)
456         {
457           continue; // don't try to map chains don't match.
458         }
459         // TODO: correctly determine sequence type for mixed na/peptide
460         // structures
461         final String type = chain.isNa ? AlignSeq.DNA : AlignSeq.PEP;
462         AlignSeq as = AlignSeq.doGlobalNWAlignment(seq, chain.sequence,
463                 type);
464         // equivalent to:
465         // AlignSeq as = new AlignSeq(sequence[s], chain.sequence, type);
466         // as.calcScoreMatrix();
467         // as.traceAlignment();
468
469         if (first || as.maxscore > max
470                 || (as.maxscore == max && chain.id.equals(targetChainId)))
471         {
472           first = false;
473           maxChain = chain;
474           max = as.maxscore;
475           maxAlignseq = as;
476           maxChainId = chain.id;
477         }
478       }
479       if (maxChain == null)
480       {
481         continue;
482       }
483
484       if (protocol.equals(jalview.io.AppletFormatAdapter.PASTE))
485       {
486         pdbFile = "INLINE" + pdb.getId();
487       }
488
489       ArrayList<StructureMapping> seqToStrucMapping = new ArrayList<StructureMapping>();
490       if (isMapUsingSIFTs)
491       {
492         setProgressBar(null);
493         setProgressBar("Obtaining mapping with SIFTS");
494         jalview.datamodel.Mapping sqmpping = maxAlignseq
495                 .getMappingFromS1(false);
496         if (targetChainId != null && !targetChainId.trim().isEmpty())
497         {
498           StructureMapping mapping = getStructureMapping(seq, pdbFile,
499                   targetChainId, pdb, maxChain, sqmpping, maxAlignseq);
500           seqToStrucMapping.add(mapping);
501         }
502         else
503         {
504           for (PDBChain chain : pdb.getChains())
505           {
506             StructureMapping mapping = getStructureMapping(seq, pdbFile,
507                     chain.id, pdb, chain, sqmpping, maxAlignseq);
508             seqToStrucMapping.add(mapping);
509           }
510         }
511       }
512       else
513       {
514         setProgressBar(null);
515         setProgressBar("Obtaining mapping with NW alignment");
516         seqToStrucMapping.add(getNWMappings(seq, pdbFile, maxChainId,
517                 maxChain, pdb, maxAlignseq));
518       }
519
520       if (forStructureView)
521       {
522         mappings.addAll(seqToStrucMapping);
523       }
524     }
525     return pdb;
526   }
527
528   private StructureMapping getStructureMapping(SequenceI seq,
529           String pdbFile, String targetChainId, PDBfile pdb,
530           PDBChain maxChain, jalview.datamodel.Mapping sqmpping,
531           AlignSeq maxAlignseq)
532   {
533     String maxChainId = targetChainId;
534     try
535     {
536       StructureMapping curChainMapping = siftsClient
537               .getSiftsStructureMapping(seq, pdbFile, targetChainId);
538       try
539       {
540       PDBChain chain = pdb.findChain(targetChainId);
541       if (chain != null)
542       {
543         chain.transferResidueAnnotation(curChainMapping, sqmpping);
544       }
545       } catch (Exception e)
546       {
547         e.printStackTrace();
548       }
549       return curChainMapping;
550     } catch (SiftsException e)
551     {
552       System.err.println(e.getMessage());
553       System.err.println(">>> Now switching mapping with NW alignment...");
554       setProgressBar(null);
555       setProgressBar(">>> Now switching mapping with NW alignment...");
556       return getNWMappings(seq, pdbFile, maxChainId, maxChain, pdb,
557               maxAlignseq);
558     }
559   }
560
561   private StructureMapping getNWMappings(SequenceI seq,
562           String pdbFile,
563           String maxChainId, PDBChain maxChain, PDBfile pdb,
564           AlignSeq maxAlignseq)
565   {
566     final StringBuilder mappingDetails = new StringBuilder(128);
567     mappingDetails.append(NEWLINE).append(
568             "Sequence \u27f7 Structure mapping details");
569     mappingDetails.append(NEWLINE);
570     mappingDetails
571             .append("Method: inferred with Needleman & Wunsch alignment");
572     mappingDetails.append(NEWLINE).append("PDB Sequence is :")
573             .append(NEWLINE).append("Sequence = ")
574             .append(maxChain.sequence.getSequenceAsString());
575     mappingDetails.append(NEWLINE).append("No of residues = ")
576             .append(maxChain.residues.size()).append(NEWLINE)
577             .append(NEWLINE);
578     PrintStream ps = new PrintStream(System.out)
579     {
580       @Override
581       public void print(String x)
582       {
583         mappingDetails.append(x);
584       }
585
586       @Override
587       public void println()
588       {
589         mappingDetails.append(NEWLINE);
590       }
591     };
592
593     maxAlignseq.printAlignment(ps);
594
595     mappingDetails.append(NEWLINE).append("PDB start/end ");
596     mappingDetails.append(String.valueOf(maxAlignseq.seq2start))
597             .append(" ");
598     mappingDetails.append(String.valueOf(maxAlignseq.seq2end));
599     mappingDetails.append(NEWLINE).append("SEQ start/end ");
600     mappingDetails.append(
601             String.valueOf(maxAlignseq.seq1start + (seq.getStart() - 1)))
602             .append(" ");
603     mappingDetails.append(String.valueOf(maxAlignseq.seq1end
604             + (seq.getStart() - 1)));
605     mappingDetails.append(NEWLINE);
606     maxChain.makeExactMapping(maxAlignseq, seq);
607     jalview.datamodel.Mapping sqmpping = maxAlignseq
608             .getMappingFromS1(false);
609     maxChain.transferRESNUMFeatures(seq, null);
610
611     HashMap<Integer, int[]> mapping = new HashMap<Integer, int[]>();
612     int resNum = -10000;
613     int index = 0;
614     char insCode = ' ';
615
616     do
617     {
618       Atom tmp = maxChain.atoms.elementAt(index);
619       if ((resNum != tmp.resNumber || insCode != tmp.insCode)
620               && tmp.alignmentMapping != -1)
621       {
622         resNum = tmp.resNumber;
623         insCode = tmp.insCode;
624         if (tmp.alignmentMapping >= -1)
625         {
626           mapping.put(tmp.alignmentMapping + 1, new int[] { tmp.resNumber,
627               tmp.atomIndex });
628         }
629       }
630
631       index++;
632     } while (index < maxChain.atoms.size());
633
634     StructureMapping nwMapping = new StructureMapping(seq, pdbFile,
635             pdb.getId(), maxChainId, mapping, mappingDetails.toString());
636     maxChain.transferResidueAnnotation(nwMapping, sqmpping);
637     return nwMapping;
638   }
639
640   public void removeStructureViewerListener(Object svl, String[] pdbfiles)
641   {
642     listeners.removeElement(svl);
643     if (svl instanceof SequenceListener)
644     {
645       for (int i = 0; i < listeners.size(); i++)
646       {
647         if (listeners.elementAt(i) instanceof StructureListener)
648         {
649           ((StructureListener) listeners.elementAt(i))
650                   .releaseReferences(svl);
651         }
652       }
653     }
654
655     if (pdbfiles == null)
656     {
657       return;
658     }
659
660     /*
661      * Remove mappings to the closed listener's PDB files, but first check if
662      * another listener is still interested
663      */
664     List<String> pdbs = new ArrayList<String>(Arrays.asList(pdbfiles));
665
666     StructureListener sl;
667     for (int i = 0; i < listeners.size(); i++)
668     {
669       if (listeners.elementAt(i) instanceof StructureListener)
670       {
671         sl = (StructureListener) listeners.elementAt(i);
672         for (String pdbfile : sl.getPdbFile())
673         {
674           pdbs.remove(pdbfile);
675         }
676       }
677     }
678
679     /*
680      * Rebuild the mappings set, retaining only those which are for 'other' PDB
681      * files
682      */
683     if (pdbs.size() > 0)
684     {
685       List<StructureMapping> tmp = new ArrayList<StructureMapping>();
686       for (StructureMapping sm : mappings)
687       {
688         if (!pdbs.contains(sm.pdbfile))
689         {
690           tmp.add(sm);
691         }
692       }
693
694       mappings = tmp;
695     }
696   }
697
698   /**
699    * Propagate mouseover of a single position in a structure
700    * 
701    * @param pdbResNum
702    * @param chain
703    * @param pdbfile
704    */
705   public void mouseOverStructure(int pdbResNum, String chain, String pdbfile)
706   {
707     AtomSpec atomSpec = new AtomSpec(pdbfile, chain, pdbResNum, 0);
708     List<AtomSpec> atoms = Collections.singletonList(atomSpec);
709     mouseOverStructure(atoms);
710   }
711
712   /**
713    * Propagate mouseover or selection of multiple positions in a structure
714    * 
715    * @param atoms
716    */
717   public void mouseOverStructure(List<AtomSpec> atoms)
718   {
719     if (listeners == null)
720     {
721       // old or prematurely sent event
722       return;
723     }
724     boolean hasSequenceListener = false;
725     for (int i = 0; i < listeners.size(); i++)
726     {
727       if (listeners.elementAt(i) instanceof SequenceListener)
728       {
729         hasSequenceListener = true;
730       }
731     }
732     if (!hasSequenceListener)
733     {
734       return;
735     }
736
737     SearchResults results = new SearchResults();
738     for (AtomSpec atom : atoms)
739     {
740       SequenceI lastseq = null;
741       int lastipos = -1;
742       for (StructureMapping sm : mappings)
743       {
744         if (sm.pdbfile.equals(atom.getPdbFile())
745                 && sm.pdbchain.equals(atom.getChain()))
746         {
747           int indexpos = sm.getSeqPos(atom.getPdbResNum());
748           if (lastipos != indexpos && lastseq != sm.sequence)
749           {
750             results.addResult(sm.sequence, indexpos, indexpos);
751             lastipos = indexpos;
752             lastseq = sm.sequence;
753             // construct highlighted sequence list
754             for (AlignedCodonFrame acf : seqmappings)
755             {
756               acf.markMappedRegion(sm.sequence, indexpos, results);
757             }
758           }
759         }
760       }
761     }
762     for (Object li : listeners)
763     {
764       if (li instanceof SequenceListener)
765       {
766         ((SequenceListener) li).highlightSequence(results);
767       }
768     }
769   }
770
771   /**
772    * highlight regions associated with a position (indexpos) in seq
773    * 
774    * @param seq
775    *          the sequence that the mouse over occurred on
776    * @param indexpos
777    *          the absolute position being mouseovered in seq (0 to seq.length())
778    * @param seqPos
779    *          the sequence position (if -1, seq.findPosition is called to
780    *          resolve the residue number)
781    */
782   public void mouseOverSequence(SequenceI seq, int indexpos, int seqPos,
783           VamsasSource source)
784   {
785     boolean hasSequenceListeners = handlingVamsasMo
786             || !seqmappings.isEmpty();
787     SearchResults results = null;
788     if (seqPos == -1)
789     {
790       seqPos = seq.findPosition(indexpos);
791     }
792     for (int i = 0; i < listeners.size(); i++)
793     {
794       Object listener = listeners.elementAt(i);
795       if (listener == source)
796       {
797         // TODO listener (e.g. SeqPanel) is never == source (AlignViewport)
798         // Temporary fudge with SequenceListener.getVamsasSource()
799         continue;
800       }
801       if (listener instanceof StructureListener)
802       {
803         highlightStructure((StructureListener) listener, seq, seqPos);
804       }
805       else
806       {
807         if (listener instanceof SequenceListener)
808         {
809           final SequenceListener seqListener = (SequenceListener) listener;
810           if (hasSequenceListeners
811                   && seqListener.getVamsasSource() != source)
812           {
813             if (relaySeqMappings)
814             {
815               if (results == null)
816               {
817                 results = MappingUtils.buildSearchResults(seq, seqPos,
818                         seqmappings);
819               }
820               if (handlingVamsasMo)
821               {
822                 results.addResult(seq, seqPos, seqPos);
823
824               }
825               if (!results.isEmpty())
826               {
827                 seqListener.highlightSequence(results);
828               }
829             }
830           }
831         }
832         else if (listener instanceof VamsasListener && !handlingVamsasMo)
833         {
834           ((VamsasListener) listener).mouseOverSequence(seq, indexpos,
835                   source);
836         }
837         else if (listener instanceof SecondaryStructureListener)
838         {
839           ((SecondaryStructureListener) listener).mouseOverSequence(seq,
840                   indexpos, seqPos);
841         }
842       }
843     }
844   }
845
846   /**
847    * Send suitable messages to a StructureListener to highlight atoms
848    * corresponding to the given sequence position(s)
849    * 
850    * @param sl
851    * @param seq
852    * @param positions
853    */
854   public void highlightStructure(StructureListener sl, SequenceI seq,
855           int... positions)
856   {
857     if (!sl.isListeningFor(seq))
858     {
859       return;
860     }
861     int atomNo;
862     List<AtomSpec> atoms = new ArrayList<AtomSpec>();
863     for (StructureMapping sm : mappings)
864     {
865       if (sm.sequence == seq || sm.sequence == seq.getDatasetSequence())
866       {
867         for (int index : positions)
868         {
869           atomNo = sm.getAtomNum(index);
870
871           if (atomNo > 0)
872           {
873             atoms.add(new AtomSpec(sm.pdbfile, sm.pdbchain, sm
874                     .getPDBResNum(index), atomNo));
875           }
876         }
877       }
878     }
879     sl.highlightAtoms(atoms);
880   }
881
882   /**
883    * true if a mouse over event from an external (ie Vamsas) source is being
884    * handled
885    */
886   boolean handlingVamsasMo = false;
887
888   long lastmsg = 0;
889
890   /**
891    * as mouseOverSequence but only route event to SequenceListeners
892    * 
893    * @param sequenceI
894    * @param position
895    *          in an alignment sequence
896    */
897   public void mouseOverVamsasSequence(SequenceI sequenceI, int position,
898           VamsasSource source)
899   {
900     handlingVamsasMo = true;
901     long msg = sequenceI.hashCode() * (1 + position);
902     if (lastmsg != msg)
903     {
904       lastmsg = msg;
905       mouseOverSequence(sequenceI, position, -1, source);
906     }
907     handlingVamsasMo = false;
908   }
909
910   public Annotation[] colourSequenceFromStructure(SequenceI seq,
911           String pdbid)
912   {
913     return null;
914     // THIS WILL NOT BE AVAILABLE IN JALVIEW 2.3,
915     // UNTIL THE COLOUR BY ANNOTATION IS REWORKED
916     /*
917      * Annotation [] annotations = new Annotation[seq.getLength()];
918      * 
919      * StructureListener sl; int atomNo = 0; for (int i = 0; i <
920      * listeners.size(); i++) { if (listeners.elementAt(i) instanceof
921      * StructureListener) { sl = (StructureListener) listeners.elementAt(i);
922      * 
923      * for (int j = 0; j < mappings.length; j++) {
924      * 
925      * if (mappings[j].sequence == seq && mappings[j].getPdbId().equals(pdbid)
926      * && mappings[j].pdbfile.equals(sl.getPdbFile())) {
927      * System.out.println(pdbid+" "+mappings[j].getPdbId() +"
928      * "+mappings[j].pdbfile);
929      * 
930      * java.awt.Color col; for(int index=0; index<seq.getLength(); index++) {
931      * if(jalview.util.Comparison.isGap(seq.getCharAt(index))) continue;
932      * 
933      * atomNo = mappings[j].getAtomNum(seq.findPosition(index)); col =
934      * java.awt.Color.white; if (atomNo > 0) { col = sl.getColour(atomNo,
935      * mappings[j].getPDBResNum(index), mappings[j].pdbchain,
936      * mappings[j].pdbfile); }
937      * 
938      * annotations[index] = new Annotation("X",null,' ',0,col); } return
939      * annotations; } } } }
940      * 
941      * return annotations;
942      */
943   }
944
945   public void structureSelectionChanged()
946   {
947   }
948
949   public void sequenceSelectionChanged()
950   {
951   }
952
953   public void sequenceColoursChanged(Object source)
954   {
955     StructureListener sl;
956     for (int i = 0; i < listeners.size(); i++)
957     {
958       if (listeners.elementAt(i) instanceof StructureListener)
959       {
960         sl = (StructureListener) listeners.elementAt(i);
961         sl.updateColours(source);
962       }
963     }
964   }
965
966   public StructureMapping[] getMapping(String pdbfile)
967   {
968     List<StructureMapping> tmp = new ArrayList<StructureMapping>();
969     for (StructureMapping sm : mappings)
970     {
971       if (sm.pdbfile.equals(pdbfile))
972       {
973         tmp.add(sm);
974       }
975     }
976     return tmp.toArray(new StructureMapping[tmp.size()]);
977   }
978
979   /**
980    * Returns a readable description of all mappings for the given pdbfile to any
981    * of the given sequences
982    * 
983    * @param pdbfile
984    * @param seqs
985    * @return
986    */
987   public String printMappings(String pdbfile, List<SequenceI> seqs)
988   {
989     if (pdbfile == null || seqs == null || seqs.isEmpty())
990     {
991       return "";
992     }
993
994     StringBuilder sb = new StringBuilder(64);
995     for (StructureMapping sm : mappings)
996     {
997       if (sm.pdbfile.equals(pdbfile) && seqs.contains(sm.sequence))
998       {
999         sb.append(sm.mappingDetails);
1000         sb.append(NEWLINE);
1001         // separator makes it easier to read multiple mappings
1002         sb.append("=====================");
1003         sb.append(NEWLINE);
1004       }
1005     }
1006     sb.append(NEWLINE);
1007
1008     return sb.toString();
1009   }
1010
1011   /**
1012    * Remove the given mapping
1013    * 
1014    * @param acf
1015    */
1016   public void deregisterMapping(AlignedCodonFrame acf)
1017   {
1018     if (acf != null)
1019     {
1020       boolean removed = seqmappings.remove(acf);
1021       if (removed && seqmappings.isEmpty())
1022       { // debug
1023         System.out.println("All mappings removed");
1024       }
1025     }
1026   }
1027
1028   /**
1029    * Add each of the given codonFrames to the stored set, if not aready present.
1030    * 
1031    * @param mappings
1032    */
1033   public void registerMappings(List<AlignedCodonFrame> mappings)
1034   {
1035     if (mappings != null)
1036     {
1037       for (AlignedCodonFrame acf : mappings)
1038       {
1039         registerMapping(acf);
1040       }
1041     }
1042   }
1043
1044   /**
1045    * Add the given mapping to the stored set, unless already stored.
1046    */
1047   public void registerMapping(AlignedCodonFrame acf)
1048   {
1049     if (acf != null)
1050     {
1051       if (!seqmappings.contains(acf))
1052       {
1053         seqmappings.add(acf);
1054       }
1055     }
1056   }
1057
1058   /**
1059    * Resets this object to its initial state by removing all registered
1060    * listeners, codon mappings, PDB file mappings
1061    */
1062   public void resetAll()
1063   {
1064     if (mappings != null)
1065     {
1066       mappings.clear();
1067     }
1068     if (seqmappings != null)
1069     {
1070       seqmappings.clear();
1071     }
1072     if (sel_listeners != null)
1073     {
1074       sel_listeners.clear();
1075     }
1076     if (listeners != null)
1077     {
1078       listeners.clear();
1079     }
1080     if (commandListeners != null)
1081     {
1082       commandListeners.clear();
1083     }
1084     if (view_listeners != null)
1085     {
1086       view_listeners.clear();
1087     }
1088     if (pdbFileNameId != null)
1089     {
1090       pdbFileNameId.clear();
1091     }
1092     if (pdbIdFileName != null)
1093     {
1094       pdbIdFileName.clear();
1095     }
1096   }
1097
1098   public void addSelectionListener(SelectionListener selecter)
1099   {
1100     if (!sel_listeners.contains(selecter))
1101     {
1102       sel_listeners.add(selecter);
1103     }
1104   }
1105
1106   public void removeSelectionListener(SelectionListener toremove)
1107   {
1108     if (sel_listeners.contains(toremove))
1109     {
1110       sel_listeners.remove(toremove);
1111     }
1112   }
1113
1114   public synchronized void sendSelection(
1115           jalview.datamodel.SequenceGroup selection,
1116           jalview.datamodel.ColumnSelection colsel, SelectionSource source)
1117   {
1118     for (SelectionListener slis : sel_listeners)
1119     {
1120       if (slis != source)
1121       {
1122         slis.selection(selection, colsel, source);
1123       }
1124     }
1125   }
1126
1127   Vector<AlignmentViewPanelListener> view_listeners = new Vector<AlignmentViewPanelListener>();
1128
1129   public synchronized void sendViewPosition(
1130           jalview.api.AlignmentViewPanel source, int startRes, int endRes,
1131           int startSeq, int endSeq)
1132   {
1133
1134     if (view_listeners != null && view_listeners.size() > 0)
1135     {
1136       Enumeration<AlignmentViewPanelListener> listeners = view_listeners
1137               .elements();
1138       while (listeners.hasMoreElements())
1139       {
1140         AlignmentViewPanelListener slis = listeners.nextElement();
1141         if (slis != source)
1142         {
1143           slis.viewPosition(startRes, endRes, startSeq, endSeq, source);
1144         }
1145         ;
1146       }
1147     }
1148   }
1149
1150   /**
1151    * release all references associated with this manager provider
1152    * 
1153    * @param jalviewLite
1154    */
1155   public static void release(StructureSelectionManagerProvider jalviewLite)
1156   {
1157     // synchronized (instances)
1158     {
1159       if (instances == null)
1160       {
1161         return;
1162       }
1163       StructureSelectionManager mnger = (instances.get(jalviewLite));
1164       if (mnger != null)
1165       {
1166         instances.remove(jalviewLite);
1167         try
1168         {
1169           mnger.finalize();
1170         } catch (Throwable x)
1171         {
1172         }
1173       }
1174     }
1175   }
1176
1177   public void registerPDBEntry(PDBEntry pdbentry)
1178   {
1179     if (pdbentry.getFile() != null
1180             && pdbentry.getFile().trim().length() > 0)
1181     {
1182       registerPDBFile(pdbentry.getId(), pdbentry.getFile());
1183     }
1184   }
1185
1186   public void addCommandListener(CommandListener cl)
1187   {
1188     if (!commandListeners.contains(cl))
1189     {
1190       commandListeners.add(cl);
1191     }
1192   }
1193
1194   public boolean hasCommandListener(CommandListener cl)
1195   {
1196     return this.commandListeners.contains(cl);
1197   }
1198
1199   public boolean removeCommandListener(CommandListener l)
1200   {
1201     return commandListeners.remove(l);
1202   }
1203
1204   /**
1205    * Forward a command to any command listeners (except for the command's
1206    * source).
1207    * 
1208    * @param command
1209    *          the command to be broadcast (in its form after being performed)
1210    * @param undo
1211    *          if true, the command was being 'undone'
1212    * @param source
1213    */
1214   public void commandPerformed(CommandI command, boolean undo,
1215           VamsasSource source)
1216   {
1217     for (CommandListener listener : commandListeners)
1218     {
1219       listener.mirrorCommand(command, undo, this, source);
1220     }
1221   }
1222
1223   /**
1224    * Returns a new CommandI representing the given command as mapped to the
1225    * given sequences. If no mapping could be made, or the command is not of a
1226    * mappable kind, returns null.
1227    * 
1228    * @param command
1229    * @param undo
1230    * @param mapTo
1231    * @param gapChar
1232    * @return
1233    */
1234   public CommandI mapCommand(CommandI command, boolean undo,
1235           final AlignmentI mapTo, char gapChar)
1236   {
1237     if (command instanceof EditCommand)
1238     {
1239       return MappingUtils.mapEditCommand((EditCommand) command, undo,
1240               mapTo, gapChar, seqmappings);
1241     }
1242     else if (command instanceof OrderCommand)
1243     {
1244       return MappingUtils.mapOrderCommand((OrderCommand) command, undo,
1245               mapTo, seqmappings);
1246     }
1247     return null;
1248   }
1249
1250   public IProgressIndicator getProgressIndicator()
1251   {
1252     return progressIndicator;
1253   }
1254
1255   public void setProgressIndicator(IProgressIndicator progressIndicator)
1256   {
1257     this.progressIndicator = progressIndicator;
1258   }
1259
1260   public long getProgressSessionId()
1261   {
1262     return progressSessionId;
1263   }
1264
1265   public void setProgressSessionId(long progressSessionId)
1266   {
1267     this.progressSessionId = progressSessionId;
1268   }
1269
1270   public void setProgressBar(String message)
1271   {
1272     progressIndicator.setProgressBar(message, progressSessionId);
1273   }
1274
1275   public List<AlignedCodonFrame> getSequenceMappings()
1276   {
1277     return seqmappings;
1278   }
1279
1280 }