X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fstructure%2FStructureSelectionManager.java;h=83a055e7392ba1c5063701e20abd806ca54cf7dd;hb=f2eadfd123e9540bd9af1e5c0ff73f6080ec03c7;hp=ac14b529706f3599434c41cfe71562fe022fd3ad;hpb=21fccb30635d61dbf7ad0f266a88f07fb87358f7;p=jalview.git diff --git a/src/jalview/structure/StructureSelectionManager.java b/src/jalview/structure/StructureSelectionManager.java index ac14b52..83a055e 100644 --- a/src/jalview/structure/StructureSelectionManager.java +++ b/src/jalview/structure/StructureSelectionManager.java @@ -20,23 +20,6 @@ */ package jalview.structure; -import java.io.PrintStream; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.Enumeration; -import java.util.HashMap; -import java.util.IdentityHashMap; -import java.util.LinkedHashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.Vector; - -import MCview.Atom; -import MCview.PDBChain; -import MCview.PDBfile; - import jalview.analysis.AlignSeq; import jalview.api.StructureSelectionManagerProvider; import jalview.commands.CommandI; @@ -46,12 +29,36 @@ import jalview.datamodel.AlignedCodonFrame; import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.AlignmentI; import jalview.datamodel.Annotation; +import jalview.datamodel.HiddenColumns; import jalview.datamodel.PDBEntry; import jalview.datamodel.SearchResults; +import jalview.datamodel.SearchResultsI; import jalview.datamodel.SequenceI; +import jalview.ext.jmol.JmolParser; +import jalview.gui.IProgressIndicator; import jalview.io.AppletFormatAdapter; +import jalview.io.DataSourceType; +import jalview.io.StructureFile; import jalview.util.MappingUtils; import jalview.util.MessageManager; +import jalview.ws.sifts.SiftsClient; +import jalview.ws.sifts.SiftsException; +import jalview.ws.sifts.SiftsSettings; + +import java.io.PrintStream; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.Enumeration; +import java.util.HashMap; +import java.util.IdentityHashMap; +import java.util.List; +import java.util.Map; +import java.util.Vector; + +import MCview.Atom; +import MCview.PDBChain; +import MCview.PDBfile; public class StructureSelectionManager { @@ -67,16 +74,16 @@ public class StructureSelectionManager private boolean addTempFacAnnot = false; - /* - * Set of any registered mappings between (dataset) sequences. - */ - Set seqmappings = new LinkedHashSet(); + private IProgressIndicator progressIndicator; + + private SiftsClient siftsClient = null; + + private long progressSessionId; /* - * Reference counters for the above mappings. Remove mappings when ref count - * goes to zero. + * Set of any registered mappings between (dataset) sequences. */ - Map seqMappingRefCounts = new HashMap(); + private List seqmappings = new ArrayList(); private List commandListeners = new ArrayList(); @@ -154,8 +161,8 @@ public class StructureSelectionManager } else { - System.err.println("reportMapping: There are " + mappings.size() - + " mappings."); + System.err.println( + "reportMapping: There are " + mappings.size() + " mappings."); int i = 0; for (StructureMapping sm : mappings) { @@ -207,9 +214,8 @@ public class StructureSelectionManager { if (instances != null) { - throw new Error( - MessageManager - .getString("error.implementation_error_structure_selection_manager_null"), + throw new Error(MessageManager.getString( + "error.implementation_error_structure_selection_manager_null"), new NullPointerException(MessageManager .getString("exception.ssm_context_is_null"))); } @@ -317,8 +323,8 @@ public class StructureSelectionManager * - how to resolve data from resource * @return null or the structure data parsed as a pdb file */ - synchronized public PDBfile setMapping(SequenceI[] sequence, - String[] targetChains, String pdbFile, String protocol) + synchronized public StructureFile setMapping(SequenceI[] sequence, + String[] targetChains, String pdbFile, DataSourceType protocol) { return setMapping(true, sequence, targetChains, pdbFile, protocol); } @@ -330,20 +336,22 @@ public class StructureSelectionManager * @param forStructureView * when true, record the mapping for use in mouseOvers * - * @param sequence + * @param sequenceArray * - one or more sequences to be mapped to pdbFile - * @param targetChains + * @param targetChainIds * - optional chain specification for mapping each sequence to pdb - * (may be nill, individual elements may be nill) + * (may be nill, individual elements may be nill) - JBPNote: JAL-2693 + * - this should be List>, empty lists indicate no + * predefined mappings * @param pdbFile * - structure data resource - * @param protocol + * @param sourceType * - how to resolve data from resource * @return null or the structure data parsed as a pdb file */ - synchronized public PDBfile setMapping(boolean forStructureView, - SequenceI[] sequence, String[] targetChains, String pdbFile, - String protocol) + synchronized public StructureFile setMapping(boolean forStructureView, + SequenceI[] sequenceArray, String[] targetChainIds, + String pdbFile, DataSourceType sourceType) { /* * There will be better ways of doing this in the future, for now we'll use @@ -352,7 +360,7 @@ public class StructureSelectionManager boolean parseSecStr = processSecondaryStructure; if (isPDBFileRegistered(pdbFile)) { - for (SequenceI sq : sequence) + for (SequenceI sq : sequenceArray) { SequenceI ds = sq; while (ds.getDatasetSequence() != null) @@ -375,66 +383,92 @@ public class StructureSelectionManager } } } - PDBfile pdb = null; + StructureFile pdb = null; + boolean isMapUsingSIFTs = SiftsSettings.isMapWithSifts(); try { - pdb = new PDBfile(addTempFacAnnot, parseSecStr, secStructServices, - pdbFile, protocol); - if (pdb.id != null && pdb.id.trim().length() > 0 - && AppletFormatAdapter.FILE.equals(protocol)) + sourceType = AppletFormatAdapter.checkProtocol(pdbFile); + pdb = new JmolParser(pdbFile, sourceType); + + if (pdb.getId() != null && pdb.getId().trim().length() > 0 + && DataSourceType.FILE == sourceType) { - registerPDBFile(pdb.id.trim(), pdbFile); + registerPDBFile(pdb.getId().trim(), pdbFile); } + // if PDBId is unavailable then skip SIFTS mapping execution path + isMapUsingSIFTs = isMapUsingSIFTs && pdb.isPPDBIdAvailable(); + } catch (Exception ex) { ex.printStackTrace(); return null; } - String targetChain; - for (int s = 0; s < sequence.length; s++) + try + { + if (isMapUsingSIFTs) + { + siftsClient = new SiftsClient(pdb); + } + } catch (SiftsException e) + { + isMapUsingSIFTs = false; + e.printStackTrace(); + } + + String targetChainId; + for (int s = 0; s < sequenceArray.length; s++) { boolean infChain = true; - final SequenceI seq = sequence[s]; - if (targetChains != null && targetChains[s] != null) + final SequenceI seq = sequenceArray[s]; + SequenceI ds = seq; + while (ds.getDatasetSequence() != null) + { + ds = ds.getDatasetSequence(); + } + + if (targetChainIds != null && targetChainIds[s] != null) { infChain = false; - targetChain = targetChains[s]; + targetChainId = targetChainIds[s]; } else if (seq.getName().indexOf("|") > -1) { - targetChain = seq.getName().substring( - seq.getName().lastIndexOf("|") + 1); - if (targetChain.length() > 1) + targetChainId = seq.getName() + .substring(seq.getName().lastIndexOf("|") + 1); + if (targetChainId.length() > 1) { - if (targetChain.trim().length() == 0) + if (targetChainId.trim().length() == 0) { - targetChain = " "; + targetChainId = " "; } else { // not a valid chain identifier - targetChain = ""; + targetChainId = ""; } } } else { - targetChain = ""; + targetChainId = ""; } /* * Attempt pairwise alignment of the sequence with each chain in the PDB, * and remember the highest scoring chain */ - int max = -10; + float max = -10; AlignSeq maxAlignseq = null; String maxChainId = " "; PDBChain maxChain = null; boolean first = true; - for (PDBChain chain : pdb.chains) + List maximalChain = new ArrayList<>(); + List maximalAlignseqs = new ArrayList<>(); + List maximalChainIds = new ArrayList<>(); + for (PDBChain chain : pdb.getChains()) { - if (targetChain.length() > 0 && !targetChain.equals(chain.id) + if (targetChainId.length() > 0 && !targetChainId.equals(chain.id) && !infChain) { continue; // don't try to map chains don't match. @@ -449,97 +483,277 @@ public class StructureSelectionManager // as.calcScoreMatrix(); // as.traceAlignment(); - if (first || as.maxscore > max - || (as.maxscore == max && chain.id.equals(targetChain))) + if (targetChainId.length() > 0 && chain.id.equals(targetChainId)) { - first = false; + // Don't care - just pick this chain as the mapping maxChain = chain; max = as.maxscore; maxAlignseq = as; maxChainId = chain.id; + // if targetChainId is specified then it is expected to be unique, so + // precisely one maximal chain will be added + maximalChainIds.add(chain.id); + maximalChain.add(chain); + maximalAlignseqs.add(as); + } + else + { + // select chains with maximal mappings to this sequence + if (first || as.maxscore > max) + { + // clear out old maximal mappings (if any) + max = as.maxscore; + maximalChain.clear(); + maxChain = chain; + max = as.maxscore; + maxAlignseq = as; + maxChainId = chain.id; + first = false; + } + if (as.maxscore == max) + { + maximalChainIds.add(chain.id); + maximalChain.add(chain); + maximalAlignseqs.add(as); + } } } if (maxChain == null) { continue; } - final StringBuilder mappingDetails = new StringBuilder(128); - mappingDetails.append(NEWLINE).append("PDB Sequence is :") - .append(NEWLINE).append("Sequence = ") - .append(maxChain.sequence.getSequenceAsString()); - mappingDetails.append(NEWLINE).append("No of residues = ") - .append(maxChain.residues.size()).append(NEWLINE) - .append(NEWLINE); - PrintStream ps = new PrintStream(System.out) + + if (sourceType == DataSourceType.PASTE) + { + pdbFile = "INLINE" + pdb.getId(); + } + + List seqToStrucMapping = new ArrayList<>(); + if (isMapUsingSIFTs && seq.isProtein()) { - @Override - public void print(String x) + setProgressBar(null); + setProgressBar(MessageManager + .getString("status.obtaining_mapping_with_sifts")); + jalview.datamodel.Mapping sqmpping = maxAlignseq + .getMappingFromS1(false); + if (targetChainId != null && !targetChainId.trim().isEmpty()) { - mappingDetails.append(x); + StructureMapping siftsMapping; + try + { + siftsMapping = getStructureMapping(seq, pdbFile, targetChainId, + pdb, maxChain, sqmpping, maxAlignseq); + seqToStrucMapping.add(siftsMapping); + maxChain.makeExactMapping(maxAlignseq, seq); + maxChain.transferRESNUMFeatures(seq, null);// FIXME: is this + // "IEA:SIFTS" ? + maxChain.transferResidueAnnotation(siftsMapping, sqmpping); + ds.addPDBId(maxChain.sequence.getAllPDBEntries().get(0)); + + } catch (SiftsException e) + { + // fall back to NW alignment + System.err.println(e.getMessage()); + StructureMapping nwMapping = getNWMappings(seq, pdbFile, + maximalChainIds, maximalChain, pdb, maximalAlignseqs) + .get(0); + seqToStrucMapping.add(nwMapping); + maxChain.makeExactMapping(maxAlignseq, seq); + maxChain.transferRESNUMFeatures(seq, null); // FIXME: is this + // "IEA:Jalview" ? + maxChain.transferResidueAnnotation(nwMapping, sqmpping); + ds.addPDBId(maxChain.sequence.getAllPDBEntries().get(0)); + } } - - @Override - public void println() + else { - mappingDetails.append(NEWLINE); + List foundSiftsMappings = new ArrayList<>(); + for (PDBChain chain : pdb.getChains()) + { + try + { + StructureMapping siftsMapping = getStructureMapping(seq, + pdbFile, chain.id, pdb, chain, sqmpping, maxAlignseq); + foundSiftsMappings.add(siftsMapping); + } catch (SiftsException e) + { + System.err.println(e.getMessage()); + } + } + if (!foundSiftsMappings.isEmpty()) + { + seqToStrucMapping.addAll(foundSiftsMappings); + maxChain.makeExactMapping(maxAlignseq, seq); + maxChain.transferRESNUMFeatures(seq, null);// FIXME: is this + // "IEA:SIFTS" ? + maxChain.transferResidueAnnotation(foundSiftsMappings.get(0), + sqmpping); + ds.addPDBId(sqmpping.getTo().getAllPDBEntries().get(0)); + } + else + { + StructureMapping nwMapping = getNWMappings(seq, pdbFile, + maximalChainIds, maximalChain, pdb, maximalAlignseqs) + .get(0); + seqToStrucMapping.add(nwMapping); + maxChain.transferRESNUMFeatures(seq, null); // FIXME: is this + // "IEA:Jalview" ? + maxChain.transferResidueAnnotation(nwMapping, sqmpping); + ds.addPDBId(maxChain.sequence.getAllPDBEntries().get(0)); + } } - }; - - maxAlignseq.printAlignment(ps); - - mappingDetails.append(NEWLINE).append("PDB start/end "); - mappingDetails.append(String.valueOf(maxAlignseq.seq2start)).append( - " "); - mappingDetails.append(String.valueOf(maxAlignseq.seq2end)); - - mappingDetails.append(NEWLINE).append("SEQ start/end "); - mappingDetails.append( - String.valueOf(maxAlignseq.seq1start + seq.getStart() - 1)) - .append(" "); - mappingDetails.append(String.valueOf(maxAlignseq.seq1end - + seq.getEnd() - 1)); - - maxChain.makeExactMapping(maxAlignseq, seq); - jalview.datamodel.Mapping sqmpping = maxAlignseq - .getMappingFromS1(false); - jalview.datamodel.Mapping omap = new jalview.datamodel.Mapping( - sqmpping.getMap().getInverse()); - maxChain.transferRESNUMFeatures(seq, null); - - // allocate enough slots to store the mapping from positions in - // sequence[s] to the associated chain - int[][] mapping = new int[seq.findPosition(seq.getLength()) + 2][2]; - int resNum = -10000; - int index = 0; - - do + } + else { - Atom tmp = maxChain.atoms.elementAt(index); - if (resNum != tmp.resNumber && tmp.alignmentMapping != -1) + setProgressBar(null); + setProgressBar(MessageManager + .getString("status.obtaining_mapping_with_nw_alignment")); + List nwMapping = getNWMappings(seq, pdbFile, + maximalChainIds, maximalChain, pdb, maximalAlignseqs); + seqToStrucMapping.addAll(nwMapping); + for (PDBChain mc : maximalChain) { - resNum = tmp.resNumber; - mapping[tmp.alignmentMapping + 1][0] = tmp.resNumber; - mapping[tmp.alignmentMapping + 1][1] = tmp.atomIndex; + ds.addPDBId(mc.sequence.getAllPDBEntries().get(0)); } + ; - index++; - } while (index < maxChain.atoms.size()); + } - if (protocol.equals(jalview.io.AppletFormatAdapter.PASTE)) + if (forStructureView) { - pdbFile = "INLINE" + pdb.id; + mappings.addAll(seqToStrucMapping); } - StructureMapping newMapping = new StructureMapping(seq, pdbFile, - pdb.id, maxChainId, mapping, mappingDetails.toString()); - if (forStructureView) + } + return pdb; + } + + public void addStructureMapping(StructureMapping sm) + { + mappings.add(sm); + } + + /** + * retrieve a mapping for seq from SIFTs using associated DBRefEntry for + * uniprot or PDB + * + * @param seq + * @param pdbFile + * @param targetChainId + * @param pdb + * @param maxChain + * @param sqmpping + * @param maxAlignseq + * @return + * @throws SiftsException + */ + private StructureMapping getStructureMapping(SequenceI seq, + String pdbFile, String targetChainId, StructureFile pdb, + PDBChain maxChain, jalview.datamodel.Mapping sqmpping, + AlignSeq maxAlignseq) throws SiftsException + { + StructureMapping curChainMapping = siftsClient + .getSiftsStructureMapping(seq, pdbFile, targetChainId); + try + { + PDBChain chain = pdb.findChain(targetChainId); + if (chain != null) { - mappings.add(newMapping); + chain.transferResidueAnnotation(curChainMapping, sqmpping); } - maxChain.transferResidueAnnotation(newMapping, sqmpping); + } catch (Exception e) + { + e.printStackTrace(); } - // /////// + return curChainMapping; + } - return pdb; + private List getNWMappings(SequenceI seq, + String pdbFile, + List maximalChainId, List maximalChain, + StructureFile pdb, List maximalAlignseq) + { + List nwMappings = new ArrayList(); + for (int ch = 0; ch < maximalChain.size(); ch++) + { + String maxChainId = maximalChainId.get(ch); + PDBChain maxChain = maximalChain.get(ch); + AlignSeq maxAlignseq = maximalAlignseq.get(ch); + final StringBuilder mappingDetails = new StringBuilder(128); + mappingDetails.append(NEWLINE) + .append("Sequence \u27f7 Structure mapping details"); + mappingDetails.append(NEWLINE); + mappingDetails + .append("Method: inferred with Needleman & Wunsch alignment"); + mappingDetails.append(NEWLINE).append("PDB Sequence is :") + .append(NEWLINE).append("Sequence = ") + .append(maxChain.sequence.getSequenceAsString()); + mappingDetails.append(NEWLINE).append("No of residues = ") + .append(maxChain.residues.size()).append(NEWLINE) + .append(NEWLINE); + PrintStream ps = new PrintStream(System.out) + { + @Override + public void print(String x) + { + mappingDetails.append(x); + } + + @Override + public void println() + { + mappingDetails.append(NEWLINE); + } + }; + + maxAlignseq.printAlignment(ps); + + mappingDetails.append(NEWLINE).append("PDB start/end "); + mappingDetails.append(String.valueOf(maxAlignseq.seq2start)) + .append(" "); + mappingDetails.append(String.valueOf(maxAlignseq.seq2end)); + mappingDetails.append(NEWLINE).append("SEQ start/end "); + mappingDetails + .append(String + .valueOf(maxAlignseq.seq1start + (seq.getStart() - 1))) + .append(" "); + mappingDetails.append( + String.valueOf(maxAlignseq.seq1end + (seq.getStart() - 1))); + mappingDetails.append(NEWLINE); + maxChain.makeExactMapping(maxAlignseq, seq); + jalview.datamodel.Mapping sqmpping = maxAlignseq + .getMappingFromS1(false); + maxChain.transferRESNUMFeatures(seq, null); + + HashMap mapping = new HashMap(); + int resNum = -10000; + int index = 0; + char insCode = ' '; + + do + { + Atom tmp = maxChain.atoms.elementAt(index); + if ((resNum != tmp.resNumber || insCode != tmp.insCode) + && tmp.alignmentMapping != -1) + { + resNum = tmp.resNumber; + insCode = tmp.insCode; + if (tmp.alignmentMapping >= -1) + { + mapping.put(tmp.alignmentMapping + 1, + new int[] + { tmp.resNumber, tmp.atomIndex }); + } + } + + index++; + } while (index < maxChain.atoms.size()); + + StructureMapping nwMapping = new StructureMapping(seq, pdbFile, + pdb.getId(), maxChainId, mapping, mappingDetails.toString()); + maxChain.transferResidueAnnotation(nwMapping, sqmpping); + nwMappings.add(nwMapping); + } + return nwMappings; } public void removeStructureViewerListener(Object svl, String[] pdbfiles) @@ -574,7 +788,7 @@ public class StructureSelectionManager if (listeners.elementAt(i) instanceof StructureListener) { sl = (StructureListener) listeners.elementAt(i); - for (String pdbfile : sl.getPdbFile()) + for (String pdbfile : sl.getStructureFiles()) { pdbs.remove(pdbfile); } @@ -607,7 +821,8 @@ public class StructureSelectionManager * @param chain * @param pdbfile */ - public void mouseOverStructure(int pdbResNum, String chain, String pdbfile) + public void mouseOverStructure(int pdbResNum, String chain, + String pdbfile) { AtomSpec atomSpec = new AtomSpec(pdbfile, chain, pdbResNum, 0); List atoms = Collections.singletonList(atomSpec); @@ -639,7 +854,29 @@ public class StructureSelectionManager return; } - SearchResults results = new SearchResults(); + SearchResultsI results = findAlignmentPositionsForStructurePositions( + atoms); + for (Object li : listeners) + { + if (li instanceof SequenceListener) + { + ((SequenceListener) li).highlightSequence(results); + } + } + } + + /** + * Constructs a SearchResults object holding regions (if any) in the Jalview + * alignment which have a mapping to the structure viewer positions in the + * supplied list + * + * @param atoms + * @return + */ + public SearchResultsI findAlignmentPositionsForStructurePositions( + List atoms) + { + SearchResultsI results = new SearchResults(); for (AtomSpec atom : atoms) { SequenceI lastseq = null; @@ -664,13 +901,7 @@ public class StructureSelectionManager } } } - for (Object li : listeners) - { - if (li instanceof SequenceListener) - { - ((SequenceListener) li).highlightSequence(results); - } - } + return results; } /** @@ -680,19 +911,19 @@ public class StructureSelectionManager * the sequence that the mouse over occurred on * @param indexpos * the absolute position being mouseovered in seq (0 to seq.length()) - * @param index + * @param seqPos * the sequence position (if -1, seq.findPosition is called to * resolve the residue number) */ - public void mouseOverSequence(SequenceI seq, int indexpos, int index, + public void mouseOverSequence(SequenceI seq, int indexpos, int seqPos, VamsasSource source) { boolean hasSequenceListeners = handlingVamsasMo || !seqmappings.isEmpty(); - SearchResults results = null; - if (index == -1) + SearchResultsI results = null; + if (seqPos == -1) { - index = seq.findPosition(indexpos); + seqPos = seq.findPosition(indexpos); } for (int i = 0; i < listeners.size(); i++) { @@ -705,7 +936,7 @@ public class StructureSelectionManager } if (listener instanceof StructureListener) { - highlightStructure((StructureListener) listener, seq, index); + highlightStructure((StructureListener) listener, seq, seqPos); } else { @@ -719,15 +950,18 @@ public class StructureSelectionManager { if (results == null) { - results = MappingUtils.buildSearchResults(seq, index, + results = MappingUtils.buildSearchResults(seq, seqPos, seqmappings); } if (handlingVamsasMo) { - results.addResult(seq, index, index); + results.addResult(seq, seqPos, seqPos); } - seqListener.highlightSequence(results); + if (!results.isEmpty()) + { + seqListener.highlightSequence(results); + } } } } @@ -739,7 +973,7 @@ public class StructureSelectionManager else if (listener instanceof SecondaryStructureListener) { ((SecondaryStructureListener) listener).mouseOverSequence(seq, - indexpos, index); + indexpos, seqPos); } } } @@ -747,14 +981,14 @@ public class StructureSelectionManager /** * Send suitable messages to a StructureListener to highlight atoms - * corresponding to the given sequence position. + * corresponding to the given sequence position(s) * * @param sl * @param seq - * @param index + * @param positions */ - protected void highlightStructure(StructureListener sl, SequenceI seq, - int index) + public void highlightStructure(StructureListener sl, SequenceI seq, + int... positions) { if (!sl.isListeningFor(seq)) { @@ -764,14 +998,19 @@ public class StructureSelectionManager List atoms = new ArrayList(); for (StructureMapping sm : mappings) { - if (sm.sequence == seq || sm.sequence == seq.getDatasetSequence()) + if (sm.sequence == seq || sm.sequence == seq.getDatasetSequence() + || (sm.sequence.getDatasetSequence() != null && sm.sequence + .getDatasetSequence() == seq.getDatasetSequence())) { - atomNo = sm.getAtomNum(index); - - if (atomNo > 0) + for (int index : positions) { - atoms.add(new AtomSpec(sm.pdbfile, sm.pdbchain, sm - .getPDBResNum(index), atomNo)); + atomNo = sm.getAtomNum(index); + + if (atomNo > 0) + { + atoms.add(new AtomSpec(sm.pdbfile, sm.pdbchain, + sm.getPDBResNum(index), atomNo)); + } } } } @@ -908,80 +1147,89 @@ public class StructureSelectionManager } /** - * Decrement the reference counter for each of the given mappings, and remove - * it entirely if its reference counter reduces to zero. + * Remove the given mapping * - * @param set + * @param acf */ - public void removeMappings(Set set) + public void deregisterMapping(AlignedCodonFrame acf) { - if (set != null) + if (acf != null) { - for (AlignedCodonFrame acf : set) - { - removeMapping(acf); + boolean removed = seqmappings.remove(acf); + if (removed && seqmappings.isEmpty()) + { // debug + System.out.println("All mappings removed"); } } } /** - * Decrement the reference counter for the given mapping, and remove it - * entirely if its reference counter reduces to zero. + * Add each of the given codonFrames to the stored set, if not aready present. * - * @param acf + * @param mappings */ - public void removeMapping(AlignedCodonFrame acf) + public void registerMappings(List mappings) { - if (acf != null && seqmappings.contains(acf)) + if (mappings != null) { - int count = seqMappingRefCounts.get(acf); - count--; - if (count > 0) - { - seqMappingRefCounts.put(acf, count); - } - else + for (AlignedCodonFrame acf : mappings) { - seqmappings.remove(acf); - seqMappingRefCounts.remove(acf); + registerMapping(acf); } } } /** - * Add each of the given codonFrames to the stored set. If not aready present, - * increments its reference count instead. - * - * @param set + * Add the given mapping to the stored set, unless already stored. */ - public void addMappings(Set set) + public void registerMapping(AlignedCodonFrame acf) { - if (set != null) + if (acf != null) { - for (AlignedCodonFrame acf : set) + if (!seqmappings.contains(acf)) { - addMapping(acf); + seqmappings.add(acf); } } } /** - * Add the given mapping to the stored set, or if already stored, increment - * its reference counter. + * Resets this object to its initial state by removing all registered + * listeners, codon mappings, PDB file mappings */ - public void addMapping(AlignedCodonFrame acf) + public void resetAll() { - if (acf != null) + if (mappings != null) { - if (seqmappings.contains(acf)) - { - seqMappingRefCounts.put(acf, seqMappingRefCounts.get(acf) + 1); - } - else - { - seqmappings.add(acf); - seqMappingRefCounts.put(acf, 1); - } + mappings.clear(); + } + if (seqmappings != null) + { + seqmappings.clear(); + } + if (sel_listeners != null) + { + sel_listeners.clear(); + } + if (listeners != null) + { + listeners.clear(); + } + if (commandListeners != null) + { + commandListeners.clear(); + } + if (view_listeners != null) + { + view_listeners.clear(); + } + if (pdbFileNameId != null) + { + pdbFileNameId.clear(); + } + if (pdbIdFileName != null) + { + pdbIdFileName.clear(); } } @@ -1003,13 +1251,14 @@ public class StructureSelectionManager public synchronized void sendSelection( jalview.datamodel.SequenceGroup selection, - jalview.datamodel.ColumnSelection colsel, SelectionSource source) + jalview.datamodel.ColumnSelection colsel, HiddenColumns hidden, + SelectionSource source) { for (SelectionListener slis : sel_listeners) { if (slis != source) { - slis.selection(selection, colsel, source); + slis.selection(selection, colsel, hidden, source); } } } @@ -1126,8 +1375,8 @@ public class StructureSelectionManager { if (command instanceof EditCommand) { - return MappingUtils.mapEditCommand((EditCommand) command, undo, - mapTo, gapChar, seqmappings); + return MappingUtils.mapEditCommand((EditCommand) command, undo, mapTo, + gapChar, seqmappings); } else if (command instanceof OrderCommand) { @@ -1136,4 +1385,39 @@ public class StructureSelectionManager } return null; } + + public IProgressIndicator getProgressIndicator() + { + return progressIndicator; + } + + public void setProgressIndicator(IProgressIndicator progressIndicator) + { + this.progressIndicator = progressIndicator; + } + + public long getProgressSessionId() + { + return progressSessionId; + } + + public void setProgressSessionId(long progressSessionId) + { + this.progressSessionId = progressSessionId; + } + + public void setProgressBar(String message) + { + if (progressIndicator == null) + { + return; + } + progressIndicator.setProgressBar(message, progressSessionId); + } + + public List getSequenceMappings() + { + return seqmappings; + } + }