9d06aef88ff0dfd78a57460e1f76dfa5e0d70740
[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     char insCode = ' ';
611
612     do
613     {
614       Atom tmp = maxChain.atoms.elementAt(index);
615       if ((resNum != tmp.resNumber || insCode != tmp.insCode)
616               && tmp.alignmentMapping != -1)
617       {
618         resNum = tmp.resNumber;
619         insCode = tmp.insCode;
620         if (tmp.alignmentMapping >= -1)
621         {
622           mapping.put(tmp.alignmentMapping + 1, new int[] { tmp.resNumber,
623               tmp.atomIndex });
624         }
625       }
626
627       index++;
628     } while (index < maxChain.atoms.size());
629
630     StructureMapping nwMapping = new StructureMapping(seq, pdbFile,
631             pdb.id, maxChainId, mapping, mappingDetails.toString());
632     maxChain.transferResidueAnnotation(nwMapping, sqmpping);
633     return nwMapping;
634   }
635
636   public void removeStructureViewerListener(Object svl, String[] pdbfiles)
637   {
638     listeners.removeElement(svl);
639     if (svl instanceof SequenceListener)
640     {
641       for (int i = 0; i < listeners.size(); i++)
642       {
643         if (listeners.elementAt(i) instanceof StructureListener)
644         {
645           ((StructureListener) listeners.elementAt(i))
646                   .releaseReferences(svl);
647         }
648       }
649     }
650
651     if (pdbfiles == null)
652     {
653       return;
654     }
655
656     /*
657      * Remove mappings to the closed listener's PDB files, but first check if
658      * another listener is still interested
659      */
660     List<String> pdbs = new ArrayList<String>(Arrays.asList(pdbfiles));
661
662     StructureListener sl;
663     for (int i = 0; i < listeners.size(); i++)
664     {
665       if (listeners.elementAt(i) instanceof StructureListener)
666       {
667         sl = (StructureListener) listeners.elementAt(i);
668         for (String pdbfile : sl.getPdbFile())
669         {
670           pdbs.remove(pdbfile);
671         }
672       }
673     }
674
675     /*
676      * Rebuild the mappings set, retaining only those which are for 'other' PDB
677      * files
678      */
679     if (pdbs.size() > 0)
680     {
681       List<StructureMapping> tmp = new ArrayList<StructureMapping>();
682       for (StructureMapping sm : mappings)
683       {
684         if (!pdbs.contains(sm.pdbfile))
685         {
686           tmp.add(sm);
687         }
688       }
689
690       mappings = tmp;
691     }
692   }
693
694   /**
695    * Propagate mouseover of a single position in a structure
696    * 
697    * @param pdbResNum
698    * @param chain
699    * @param pdbfile
700    */
701   public void mouseOverStructure(int pdbResNum, String chain, String pdbfile)
702   {
703     AtomSpec atomSpec = new AtomSpec(pdbfile, chain, pdbResNum, 0);
704     List<AtomSpec> atoms = Collections.singletonList(atomSpec);
705     mouseOverStructure(atoms);
706   }
707
708   /**
709    * Propagate mouseover or selection of multiple positions in a structure
710    * 
711    * @param atoms
712    */
713   public void mouseOverStructure(List<AtomSpec> atoms)
714   {
715     if (listeners == null)
716     {
717       // old or prematurely sent event
718       return;
719     }
720     boolean hasSequenceListener = false;
721     for (int i = 0; i < listeners.size(); i++)
722     {
723       if (listeners.elementAt(i) instanceof SequenceListener)
724       {
725         hasSequenceListener = true;
726       }
727     }
728     if (!hasSequenceListener)
729     {
730       return;
731     }
732
733     SearchResults results = new SearchResults();
734     for (AtomSpec atom : atoms)
735     {
736       SequenceI lastseq = null;
737       int lastipos = -1;
738       for (StructureMapping sm : mappings)
739       {
740         if (sm.pdbfile.equals(atom.getPdbFile())
741                 && sm.pdbchain.equals(atom.getChain()))
742         {
743           int indexpos = sm.getSeqPos(atom.getPdbResNum());
744           if (lastipos != indexpos && lastseq != sm.sequence)
745           {
746             results.addResult(sm.sequence, indexpos, indexpos);
747             lastipos = indexpos;
748             lastseq = sm.sequence;
749             // construct highlighted sequence list
750             for (AlignedCodonFrame acf : seqmappings)
751             {
752               acf.markMappedRegion(sm.sequence, indexpos, results);
753             }
754           }
755         }
756       }
757     }
758     for (Object li : listeners)
759     {
760       if (li instanceof SequenceListener)
761       {
762         ((SequenceListener) li).highlightSequence(results);
763       }
764     }
765   }
766
767   /**
768    * highlight regions associated with a position (indexpos) in seq
769    * 
770    * @param seq
771    *          the sequence that the mouse over occurred on
772    * @param indexpos
773    *          the absolute position being mouseovered in seq (0 to seq.length())
774    * @param index
775    *          the sequence position (if -1, seq.findPosition is called to
776    *          resolve the residue number)
777    */
778   public void mouseOverSequence(SequenceI seq, int indexpos, int index,
779           VamsasSource source)
780   {
781     boolean hasSequenceListeners = handlingVamsasMo
782             || !seqmappings.isEmpty();
783     SearchResults results = null;
784     if (index == -1)
785     {
786       index = seq.findPosition(indexpos);
787     }
788     for (int i = 0; i < listeners.size(); i++)
789     {
790       Object listener = listeners.elementAt(i);
791       if (listener == source)
792       {
793         // TODO listener (e.g. SeqPanel) is never == source (AlignViewport)
794         // Temporary fudge with SequenceListener.getVamsasSource()
795         continue;
796       }
797       if (listener instanceof StructureListener)
798       {
799         highlightStructure((StructureListener) listener, seq, index);
800       }
801       else
802       {
803         if (listener instanceof SequenceListener)
804         {
805           final SequenceListener seqListener = (SequenceListener) listener;
806           if (hasSequenceListeners
807                   && seqListener.getVamsasSource() != source)
808           {
809             if (relaySeqMappings)
810             {
811               if (results == null)
812               {
813                 results = MappingUtils.buildSearchResults(seq, index,
814                         seqmappings);
815               }
816               if (handlingVamsasMo)
817               {
818                 results.addResult(seq, index, index);
819
820               }
821               if (!results.isEmpty())
822               {
823                 seqListener.highlightSequence(results);
824               }
825             }
826           }
827         }
828         else if (listener instanceof VamsasListener && !handlingVamsasMo)
829         {
830           ((VamsasListener) listener).mouseOverSequence(seq, indexpos,
831                   source);
832         }
833         else if (listener instanceof SecondaryStructureListener)
834         {
835           ((SecondaryStructureListener) listener).mouseOverSequence(seq,
836                   indexpos, index);
837         }
838       }
839     }
840   }
841
842   /**
843    * Send suitable messages to a StructureListener to highlight atoms
844    * corresponding to the given sequence position.
845    * 
846    * @param sl
847    * @param seq
848    * @param index
849    */
850   protected void highlightStructure(StructureListener sl, SequenceI seq,
851           int index)
852   {
853     if (!sl.isListeningFor(seq))
854     {
855       return;
856     }
857     int atomNo;
858     List<AtomSpec> atoms = new ArrayList<AtomSpec>();
859     for (StructureMapping sm : mappings)
860     {
861       if (sm.sequence == seq || sm.sequence == seq.getDatasetSequence())
862       {
863         atomNo = sm.getAtomNum(index);
864
865         if (atomNo > 0)
866         {
867           atoms.add(new AtomSpec(sm.pdbfile, sm.pdbchain, sm
868                   .getPDBResNum(index), atomNo));
869         }
870       }
871     }
872     sl.highlightAtoms(atoms);
873   }
874
875   /**
876    * true if a mouse over event from an external (ie Vamsas) source is being
877    * handled
878    */
879   boolean handlingVamsasMo = false;
880
881   long lastmsg = 0;
882
883   /**
884    * as mouseOverSequence but only route event to SequenceListeners
885    * 
886    * @param sequenceI
887    * @param position
888    *          in an alignment sequence
889    */
890   public void mouseOverVamsasSequence(SequenceI sequenceI, int position,
891           VamsasSource source)
892   {
893     handlingVamsasMo = true;
894     long msg = sequenceI.hashCode() * (1 + position);
895     if (lastmsg != msg)
896     {
897       lastmsg = msg;
898       mouseOverSequence(sequenceI, position, -1, source);
899     }
900     handlingVamsasMo = false;
901   }
902
903   public Annotation[] colourSequenceFromStructure(SequenceI seq,
904           String pdbid)
905   {
906     return null;
907     // THIS WILL NOT BE AVAILABLE IN JALVIEW 2.3,
908     // UNTIL THE COLOUR BY ANNOTATION IS REWORKED
909     /*
910      * Annotation [] annotations = new Annotation[seq.getLength()];
911      * 
912      * StructureListener sl; int atomNo = 0; for (int i = 0; i <
913      * listeners.size(); i++) { if (listeners.elementAt(i) instanceof
914      * StructureListener) { sl = (StructureListener) listeners.elementAt(i);
915      * 
916      * for (int j = 0; j < mappings.length; j++) {
917      * 
918      * if (mappings[j].sequence == seq && mappings[j].getPdbId().equals(pdbid)
919      * && mappings[j].pdbfile.equals(sl.getPdbFile())) {
920      * System.out.println(pdbid+" "+mappings[j].getPdbId() +"
921      * "+mappings[j].pdbfile);
922      * 
923      * java.awt.Color col; for(int index=0; index<seq.getLength(); index++) {
924      * if(jalview.util.Comparison.isGap(seq.getCharAt(index))) continue;
925      * 
926      * atomNo = mappings[j].getAtomNum(seq.findPosition(index)); col =
927      * java.awt.Color.white; if (atomNo > 0) { col = sl.getColour(atomNo,
928      * mappings[j].getPDBResNum(index), mappings[j].pdbchain,
929      * mappings[j].pdbfile); }
930      * 
931      * annotations[index] = new Annotation("X",null,' ',0,col); } return
932      * annotations; } } } }
933      * 
934      * return annotations;
935      */
936   }
937
938   public void structureSelectionChanged()
939   {
940   }
941
942   public void sequenceSelectionChanged()
943   {
944   }
945
946   public void sequenceColoursChanged(Object source)
947   {
948     StructureListener sl;
949     for (int i = 0; i < listeners.size(); i++)
950     {
951       if (listeners.elementAt(i) instanceof StructureListener)
952       {
953         sl = (StructureListener) listeners.elementAt(i);
954         sl.updateColours(source);
955       }
956     }
957   }
958
959   public StructureMapping[] getMapping(String pdbfile)
960   {
961     List<StructureMapping> tmp = new ArrayList<StructureMapping>();
962     for (StructureMapping sm : mappings)
963     {
964       if (sm.pdbfile.equals(pdbfile))
965       {
966         tmp.add(sm);
967       }
968     }
969     return tmp.toArray(new StructureMapping[tmp.size()]);
970   }
971
972   /**
973    * Returns a readable description of all mappings for the given pdbfile to any
974    * of the given sequences
975    * 
976    * @param pdbfile
977    * @param seqs
978    * @return
979    */
980   public String printMappings(String pdbfile, List<SequenceI> seqs)
981   {
982     if (pdbfile == null || seqs == null || seqs.isEmpty())
983     {
984       return "";
985     }
986
987     StringBuilder sb = new StringBuilder(64);
988     for (StructureMapping sm : mappings)
989     {
990       if (sm.pdbfile.equals(pdbfile) && seqs.contains(sm.sequence))
991       {
992         sb.append(sm.mappingDetails);
993         sb.append(NEWLINE);
994         // separator makes it easier to read multiple mappings
995         sb.append("=====================");
996         sb.append(NEWLINE);
997       }
998     }
999     sb.append(NEWLINE);
1000
1001     return sb.toString();
1002   }
1003
1004   /**
1005    * Remove the given mapping
1006    * 
1007    * @param acf
1008    */
1009   public void deregisterMapping(AlignedCodonFrame acf)
1010   {
1011     if (acf != null)
1012     {
1013       boolean removed = seqmappings.remove(acf);
1014       if (removed && seqmappings.isEmpty())
1015       { // debug
1016         System.out.println("All mappings removed");
1017       }
1018     }
1019   }
1020
1021   /**
1022    * Add each of the given codonFrames to the stored set, if not aready present.
1023    * 
1024    * @param set
1025    */
1026   public void registerMappings(Set<AlignedCodonFrame> set)
1027   {
1028     if (set != null)
1029     {
1030       for (AlignedCodonFrame acf : set)
1031       {
1032         registerMapping(acf);
1033       }
1034     }
1035   }
1036
1037   /**
1038    * Add the given mapping to the stored set, unless already stored.
1039    */
1040   public void registerMapping(AlignedCodonFrame acf)
1041   {
1042     if (acf != null)
1043     {
1044       if (!seqmappings.contains(acf))
1045       {
1046         seqmappings.add(acf);
1047       }
1048     }
1049   }
1050
1051   /**
1052    * Resets this object to its initial state by removing all registered
1053    * listeners, codon mappings, PDB file mappings
1054    */
1055   public void resetAll()
1056   {
1057     if (mappings != null)
1058     {
1059       mappings.clear();
1060     }
1061     if (seqmappings != null)
1062     {
1063       seqmappings.clear();
1064     }
1065     if (sel_listeners != null)
1066     {
1067       sel_listeners.clear();
1068     }
1069     if (listeners != null)
1070     {
1071       listeners.clear();
1072     }
1073     if (commandListeners != null)
1074     {
1075       commandListeners.clear();
1076     }
1077     if (view_listeners != null)
1078     {
1079       view_listeners.clear();
1080     }
1081     if (pdbFileNameId != null)
1082     {
1083       pdbFileNameId.clear();
1084     }
1085     if (pdbIdFileName != null)
1086     {
1087       pdbIdFileName.clear();
1088     }
1089   }
1090
1091   public void addSelectionListener(SelectionListener selecter)
1092   {
1093     if (!sel_listeners.contains(selecter))
1094     {
1095       sel_listeners.add(selecter);
1096     }
1097   }
1098
1099   public void removeSelectionListener(SelectionListener toremove)
1100   {
1101     if (sel_listeners.contains(toremove))
1102     {
1103       sel_listeners.remove(toremove);
1104     }
1105   }
1106
1107   public synchronized void sendSelection(
1108           jalview.datamodel.SequenceGroup selection,
1109           jalview.datamodel.ColumnSelection colsel, SelectionSource source)
1110   {
1111     for (SelectionListener slis : sel_listeners)
1112     {
1113       if (slis != source)
1114       {
1115         slis.selection(selection, colsel, source);
1116       }
1117     }
1118   }
1119
1120   Vector<AlignmentViewPanelListener> view_listeners = new Vector<AlignmentViewPanelListener>();
1121
1122   public synchronized void sendViewPosition(
1123           jalview.api.AlignmentViewPanel source, int startRes, int endRes,
1124           int startSeq, int endSeq)
1125   {
1126
1127     if (view_listeners != null && view_listeners.size() > 0)
1128     {
1129       Enumeration<AlignmentViewPanelListener> listeners = view_listeners
1130               .elements();
1131       while (listeners.hasMoreElements())
1132       {
1133         AlignmentViewPanelListener slis = listeners.nextElement();
1134         if (slis != source)
1135         {
1136           slis.viewPosition(startRes, endRes, startSeq, endSeq, source);
1137         }
1138         ;
1139       }
1140     }
1141   }
1142
1143   /**
1144    * release all references associated with this manager provider
1145    * 
1146    * @param jalviewLite
1147    */
1148   public static void release(StructureSelectionManagerProvider jalviewLite)
1149   {
1150     // synchronized (instances)
1151     {
1152       if (instances == null)
1153       {
1154         return;
1155       }
1156       StructureSelectionManager mnger = (instances.get(jalviewLite));
1157       if (mnger != null)
1158       {
1159         instances.remove(jalviewLite);
1160         try
1161         {
1162           mnger.finalize();
1163         } catch (Throwable x)
1164         {
1165         }
1166       }
1167     }
1168   }
1169
1170   public void registerPDBEntry(PDBEntry pdbentry)
1171   {
1172     if (pdbentry.getFile() != null
1173             && pdbentry.getFile().trim().length() > 0)
1174     {
1175       registerPDBFile(pdbentry.getId(), pdbentry.getFile());
1176     }
1177   }
1178
1179   public void addCommandListener(CommandListener cl)
1180   {
1181     if (!commandListeners.contains(cl))
1182     {
1183       commandListeners.add(cl);
1184     }
1185   }
1186
1187   public boolean hasCommandListener(CommandListener cl)
1188   {
1189     return this.commandListeners.contains(cl);
1190   }
1191
1192   public boolean removeCommandListener(CommandListener l)
1193   {
1194     return commandListeners.remove(l);
1195   }
1196
1197   /**
1198    * Forward a command to any command listeners (except for the command's
1199    * source).
1200    * 
1201    * @param command
1202    *          the command to be broadcast (in its form after being performed)
1203    * @param undo
1204    *          if true, the command was being 'undone'
1205    * @param source
1206    */
1207   public void commandPerformed(CommandI command, boolean undo,
1208           VamsasSource source)
1209   {
1210     for (CommandListener listener : commandListeners)
1211     {
1212       listener.mirrorCommand(command, undo, this, source);
1213     }
1214   }
1215
1216   /**
1217    * Returns a new CommandI representing the given command as mapped to the
1218    * given sequences. If no mapping could be made, or the command is not of a
1219    * mappable kind, returns null.
1220    * 
1221    * @param command
1222    * @param undo
1223    * @param mapTo
1224    * @param gapChar
1225    * @return
1226    */
1227   public CommandI mapCommand(CommandI command, boolean undo,
1228           final AlignmentI mapTo, char gapChar)
1229   {
1230     if (command instanceof EditCommand)
1231     {
1232       return MappingUtils.mapEditCommand((EditCommand) command, undo,
1233               mapTo, gapChar, seqmappings);
1234     }
1235     else if (command instanceof OrderCommand)
1236     {
1237       return MappingUtils.mapOrderCommand((OrderCommand) command, undo,
1238               mapTo, seqmappings);
1239     }
1240     return null;
1241   }
1242
1243   public IProgressIndicator getProgressIndicator()
1244   {
1245     return progressIndicator;
1246   }
1247
1248   public void setProgressIndicator(IProgressIndicator progressIndicator)
1249   {
1250     this.progressIndicator = progressIndicator;
1251   }
1252
1253   public long getProgressSessionId()
1254   {
1255     return progressSessionId;
1256   }
1257
1258   public void setProgressSessionId(long progressSessionId)
1259   {
1260     this.progressSessionId = progressSessionId;
1261   }
1262
1263   public void setProgressBar(String message)
1264   {
1265     progressIndicator.setProgressBar(message, progressSessionId);
1266   }
1267
1268 }