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