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