JAL-2738 copy to spikes/mungo
[jalview.git] / src / jalview / gui / StructureChooser.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
22 package jalview.gui;
23
24 import jalview.bin.Jalview;
25 import jalview.datamodel.DBRefEntry;
26 import jalview.datamodel.DBRefSource;
27 import jalview.datamodel.PDBEntry;
28 import jalview.datamodel.SequenceI;
29 import jalview.fts.api.FTSData;
30 import jalview.fts.api.FTSDataColumnI;
31 import jalview.fts.api.FTSRestClientI;
32 import jalview.fts.core.FTSRestRequest;
33 import jalview.fts.core.FTSRestResponse;
34 import jalview.fts.service.pdb.PDBFTSRestClient;
35 import jalview.io.DataSourceType;
36 import jalview.jbgui.GStructureChooser;
37 import jalview.structure.StructureMapping;
38 import jalview.structure.StructureSelectionManager;
39 import jalview.util.MessageManager;
40 import jalview.ws.DBRefFetcher;
41 import jalview.ws.sifts.SiftsSettings;
42
43 import java.awt.event.ItemEvent;
44 import java.util.ArrayList;
45 import java.util.Collection;
46 import java.util.HashSet;
47 import java.util.LinkedHashSet;
48 import java.util.List;
49 import java.util.Objects;
50 import java.util.Set;
51 import java.util.Vector;
52
53 import javax.swing.JCheckBox;
54 import javax.swing.JComboBox;
55 import javax.swing.JLabel;
56 import javax.swing.table.AbstractTableModel;
57
58 /**
59  * Provides the behaviors for the Structure chooser Panel
60  * 
61  * @author tcnofoegbu
62  *
63  */
64 @SuppressWarnings("serial")
65 public class StructureChooser extends GStructureChooser
66         implements IProgressIndicator
67 {
68   private static int MAX_QLENGTH = 7820;
69
70   private SequenceI selectedSequence;
71
72   private SequenceI[] selectedSequences;
73
74   private IProgressIndicator progressIndicator;
75
76   private Collection<FTSData> discoveredStructuresSet;
77
78   private FTSRestRequest lastPdbRequest;
79
80   private FTSRestClientI pdbRestCleint;
81
82   private String selectedPdbFileName;
83
84   private boolean isValidPBDEntry;
85
86   private boolean cachedPDBExists;
87
88   public StructureChooser(SequenceI[] selectedSeqs, SequenceI selectedSeq,
89           AlignmentPanel ap)
90   {
91     this.ap = ap;
92     this.selectedSequence = selectedSeq;
93     this.selectedSequences = selectedSeqs;
94     this.progressIndicator = (ap == null) ? null : ap.alignFrame;
95     init();
96   }
97
98   /**
99    * Initializes parameters used by the Structure Chooser Panel
100    */
101   public void init()
102   {
103     if (!Jalview.isHeadlessMode())
104     {
105       progressBar = new ProgressBar(this.statusPanel, this.statusBar);
106     }
107
108     // ensure a filter option is in force for search
109     populateFilterComboBox(true, cachedPDBExists);
110     Thread discoverPDBStructuresThread = new Thread(new Runnable()
111     {
112       @Override
113       public void run()
114       {
115         long startTime = System.currentTimeMillis();
116         updateProgressIndicator(MessageManager
117                 .getString("status.loading_cached_pdb_entries"), startTime);
118         loadLocalCachedPDBEntries();
119         updateProgressIndicator(null, startTime);
120         updateProgressIndicator(MessageManager.getString(
121                 "status.searching_for_pdb_structures"), startTime);
122         fetchStructuresMetaData();
123         // revise filter options if no results were found
124         populateFilterComboBox(isStructuresDiscovered(), cachedPDBExists);
125         updateProgressIndicator(null, startTime);
126         mainFrame.setVisible(true);
127         updateCurrentView();
128       }
129     });
130     discoverPDBStructuresThread.start();
131   }
132
133   /**
134    * Updates the progress indicator with the specified message
135    * 
136    * @param message
137    *          displayed message for the operation
138    * @param id
139    *          unique handle for this indicator
140    */
141   public void updateProgressIndicator(String message, long id)
142   {
143     if (progressIndicator != null)
144     {
145       progressIndicator.setProgressBar(message, id);
146     }
147   }
148
149   /**
150    * Retrieve meta-data for all the structure(s) for a given sequence(s) in a
151    * selection group
152    */
153   public void fetchStructuresMetaData()
154   {
155     long startTime = System.currentTimeMillis();
156     pdbRestCleint = PDBFTSRestClient.getInstance();
157     Collection<FTSDataColumnI> wantedFields = pdbDocFieldPrefs
158             .getStructureSummaryFields();
159
160     discoveredStructuresSet = new LinkedHashSet<FTSData>();
161     HashSet<String> errors = new HashSet<String>();
162     for (SequenceI seq : selectedSequences)
163     {
164       FTSRestRequest pdbRequest = new FTSRestRequest();
165       pdbRequest.setAllowEmptySeq(false);
166       pdbRequest.setResponseSize(500);
167       pdbRequest.setFieldToSearchBy("(");
168       FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
169               .getSelectedItem());
170       pdbRequest.setFieldToSortBy(selectedFilterOpt.getValue(),
171               !chk_invertFilter.isSelected());
172       pdbRequest.setWantedFields(wantedFields);
173       pdbRequest.setSearchTerm(buildQuery(seq) + ")");
174       pdbRequest.setAssociatedSequence(seq);
175       FTSRestResponse resultList;
176       try
177       {
178         resultList = pdbRestCleint.executeRequest(pdbRequest);
179       } catch (Exception e)
180       {
181         e.printStackTrace();
182         errors.add(e.getMessage());
183         continue;
184       }
185       lastPdbRequest = pdbRequest;
186       if (resultList.getSearchSummary() != null
187               && !resultList.getSearchSummary().isEmpty())
188       {
189         discoveredStructuresSet.addAll(resultList.getSearchSummary());
190       }
191     }
192
193     int noOfStructuresFound = 0;
194     String totalTime = (System.currentTimeMillis() - startTime)
195             + " milli secs";
196     if (discoveredStructuresSet != null
197             && !discoveredStructuresSet.isEmpty())
198     {
199       getResultTable().setModel(FTSRestResponse
200               .getTableModel(lastPdbRequest, discoveredStructuresSet));
201       noOfStructuresFound = discoveredStructuresSet.size();
202       mainFrame.setTitle(MessageManager.formatMessage(
203               "label.structure_chooser_no_of_structures",
204               noOfStructuresFound, totalTime));
205     }
206     else
207     {
208       mainFrame.setTitle(MessageManager
209               .getString("label.structure_chooser_manual_association"));
210       if (errors.size() > 0)
211       {
212         StringBuilder errorMsg = new StringBuilder();
213         for (String error : errors)
214         {
215           errorMsg.append(error).append("\n");
216         }
217         JvOptionPane.showMessageDialog(this, errorMsg.toString(),
218                 MessageManager.getString("label.pdb_web-service_error"),
219                 JvOptionPane.ERROR_MESSAGE);
220       }
221     }
222   }
223
224   public void loadLocalCachedPDBEntries()
225   {
226     ArrayList<CachedPDB> entries = new ArrayList<CachedPDB>();
227     for (SequenceI seq : selectedSequences)
228     {
229       if (seq.getDatasetSequence() != null
230               && seq.getDatasetSequence().getAllPDBEntries() != null)
231       {
232         for (PDBEntry pdbEntry : seq.getDatasetSequence()
233                 .getAllPDBEntries())
234         {
235           if (pdbEntry.getFile() != null)
236           {
237             entries.add(new CachedPDB(seq, pdbEntry));
238           }
239         }
240       }
241     }
242     cachedPDBExists = !entries.isEmpty();
243     PDBEntryTableModel tableModelx = new PDBEntryTableModel(entries);
244     tbl_local_pdb.setModel(tableModelx);
245   }
246
247   /**
248    * Builds a query string for a given sequences using its DBRef entries
249    * 
250    * @param seq
251    *          the sequences to build a query for
252    * @return the built query string
253    */
254
255   public static String buildQuery(SequenceI seq)
256   {
257     boolean isPDBRefsFound = false;
258     boolean isUniProtRefsFound = false;
259     StringBuilder queryBuilder = new StringBuilder();
260     Set<String> seqRefs = new LinkedHashSet<String>();
261
262     if (seq.getAllPDBEntries() != null
263             && queryBuilder.length() < MAX_QLENGTH)
264     {
265       for (PDBEntry entry : seq.getAllPDBEntries())
266       {
267         if (isValidSeqName(entry.getId()))
268         {
269           queryBuilder.append("pdb_id:").append(entry.getId().toLowerCase())
270                   .append(" OR ");
271           isPDBRefsFound = true;
272         }
273       }
274     }
275
276     if (seq.getDBRefs() != null && seq.getDBRefs().length != 0)
277     {
278       for (DBRefEntry dbRef : seq.getDBRefs())
279       {
280         if (isValidSeqName(getDBRefId(dbRef))
281                 && queryBuilder.length() < MAX_QLENGTH)
282         {
283           if (dbRef.getSource().equalsIgnoreCase(DBRefSource.UNIPROT))
284           {
285             queryBuilder.append("uniprot_accession:")
286                     .append(getDBRefId(dbRef)).append(" OR ");
287             queryBuilder.append("uniprot_id:").append(getDBRefId(dbRef))
288                     .append(" OR ");
289             isUniProtRefsFound = true;
290           }
291           else if (dbRef.getSource().equalsIgnoreCase(DBRefSource.PDB))
292           {
293
294             queryBuilder.append("pdb_id:")
295                     .append(getDBRefId(dbRef).toLowerCase()).append(" OR ");
296             isPDBRefsFound = true;
297           }
298           else
299           {
300             seqRefs.add(getDBRefId(dbRef));
301           }
302         }
303       }
304     }
305
306     if (!isPDBRefsFound && !isUniProtRefsFound)
307     {
308       String seqName = seq.getName();
309       seqName = sanitizeSeqName(seqName);
310       String[] names = seqName.toLowerCase().split("\\|");
311       for (String name : names)
312       {
313         // System.out.println("Found name : " + name);
314         name.trim();
315         if (isValidSeqName(name))
316         {
317           seqRefs.add(name);
318         }
319       }
320
321       for (String seqRef : seqRefs)
322       {
323         queryBuilder.append("text:").append(seqRef).append(" OR ");
324       }
325     }
326
327     int endIndex = queryBuilder.lastIndexOf(" OR ");
328     if (queryBuilder.toString().length() < 6)
329     {
330       return null;
331     }
332     String query = queryBuilder.toString().substring(0, endIndex);
333     return query;
334   }
335
336   /**
337    * Remove the following special characters from input string +, -, &, !, (, ),
338    * {, }, [, ], ^, ", ~, *, ?, :, \
339    * 
340    * @param seqName
341    * @return
342    */
343   static String sanitizeSeqName(String seqName)
344   {
345     Objects.requireNonNull(seqName);
346     return seqName.replaceAll("\\[\\d*\\]", "")
347             .replaceAll("[^\\dA-Za-z|_]", "").replaceAll("\\s+", "+");
348   }
349
350   /**
351    * Ensures sequence ref names are not less than 3 characters and does not
352    * contain a database name
353    * 
354    * @param seqName
355    * @return
356    */
357   public static boolean isValidSeqName(String seqName)
358   {
359     // System.out.println("seqName : " + seqName);
360     String ignoreList = "pdb,uniprot,swiss-prot";
361     if (seqName.length() < 3)
362     {
363       return false;
364     }
365     if (seqName.contains(":"))
366     {
367       return false;
368     }
369     seqName = seqName.toLowerCase();
370     for (String ignoredEntry : ignoreList.split(","))
371     {
372       if (seqName.contains(ignoredEntry))
373       {
374         return false;
375       }
376     }
377     return true;
378   }
379
380   public static String getDBRefId(DBRefEntry dbRef)
381   {
382     String ref = dbRef.getAccessionId().replaceAll("GO:", "");
383     return ref;
384   }
385
386   /**
387    * Filters a given list of discovered structures based on supplied argument
388    * 
389    * @param fieldToFilterBy
390    *          the field to filter by
391    */
392   public void filterResultSet(final String fieldToFilterBy)
393   {
394     Thread filterThread = new Thread(new Runnable()
395     {
396       @Override
397       public void run()
398       {
399         long startTime = System.currentTimeMillis();
400         pdbRestCleint = PDBFTSRestClient.getInstance();
401         lbl_loading.setVisible(true);
402         Collection<FTSDataColumnI> wantedFields = pdbDocFieldPrefs
403                 .getStructureSummaryFields();
404         Collection<FTSData> filteredResponse = new HashSet<FTSData>();
405         HashSet<String> errors = new HashSet<String>();
406
407         for (SequenceI seq : selectedSequences)
408         {
409           FTSRestRequest pdbRequest = new FTSRestRequest();
410           if (fieldToFilterBy.equalsIgnoreCase("uniprot_coverage"))
411           {
412             pdbRequest.setAllowEmptySeq(false);
413             pdbRequest.setResponseSize(1);
414             pdbRequest.setFieldToSearchBy("(");
415             pdbRequest.setSearchTerm(buildQuery(seq) + ")");
416             pdbRequest.setWantedFields(wantedFields);
417             pdbRequest.setAssociatedSequence(seq);
418             pdbRequest.setFacet(true);
419             pdbRequest.setFacetPivot(fieldToFilterBy + ",entry_entity");
420             pdbRequest.setFacetPivotMinCount(1);
421           }
422           else
423           {
424             pdbRequest.setAllowEmptySeq(false);
425             pdbRequest.setResponseSize(1);
426             pdbRequest.setFieldToSearchBy("(");
427             pdbRequest.setFieldToSortBy(fieldToFilterBy,
428                     !chk_invertFilter.isSelected());
429             pdbRequest.setSearchTerm(buildQuery(seq) + ")");
430             pdbRequest.setWantedFields(wantedFields);
431             pdbRequest.setAssociatedSequence(seq);
432           }
433           FTSRestResponse resultList;
434           try
435           {
436             resultList = pdbRestCleint.executeRequest(pdbRequest);
437           } catch (Exception e)
438           {
439             e.printStackTrace();
440             errors.add(e.getMessage());
441             continue;
442           }
443           lastPdbRequest = pdbRequest;
444           if (resultList.getSearchSummary() != null
445                   && !resultList.getSearchSummary().isEmpty())
446           {
447             filteredResponse.addAll(resultList.getSearchSummary());
448           }
449         }
450
451         String totalTime = (System.currentTimeMillis() - startTime)
452                 + " milli secs";
453         if (!filteredResponse.isEmpty())
454         {
455           final int filterResponseCount = filteredResponse.size();
456           Collection<FTSData> reorderedStructuresSet = new LinkedHashSet<FTSData>();
457           reorderedStructuresSet.addAll(filteredResponse);
458           reorderedStructuresSet.addAll(discoveredStructuresSet);
459           getResultTable().setModel(FTSRestResponse
460                   .getTableModel(lastPdbRequest, reorderedStructuresSet));
461
462           FTSRestResponse.configureTableColumn(getResultTable(),
463                   wantedFields, tempUserPrefs);
464           getResultTable().getColumn("Ref Sequence").setPreferredWidth(120);
465           getResultTable().getColumn("Ref Sequence").setMinWidth(100);
466           getResultTable().getColumn("Ref Sequence").setMaxWidth(200);
467           // Update table selection model here
468           getResultTable().addRowSelectionInterval(0,
469                   filterResponseCount - 1);
470           mainFrame.setTitle(MessageManager.formatMessage(
471                   "label.structure_chooser_filter_time", totalTime));
472         }
473         else
474         {
475           mainFrame.setTitle(MessageManager.formatMessage(
476                   "label.structure_chooser_filter_time", totalTime));
477           if (errors.size() > 0)
478           {
479             StringBuilder errorMsg = new StringBuilder();
480             for (String error : errors)
481             {
482               errorMsg.append(error).append("\n");
483             }
484             JvOptionPane.showMessageDialog(null, errorMsg.toString(),
485                     MessageManager.getString("label.pdb_web-service_error"),
486                     JvOptionPane.ERROR_MESSAGE);
487           }
488         }
489
490         lbl_loading.setVisible(false);
491
492         validateSelections();
493       }
494     });
495     filterThread.start();
496   }
497
498   /**
499    * Handles action event for btn_pdbFromFile
500    */
501   @Override
502   public void pdbFromFile_actionPerformed()
503   {
504     jalview.io.JalviewFileChooser chooser = new jalview.io.JalviewFileChooser(
505             jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
506     chooser.setFileView(new jalview.io.JalviewFileView());
507     chooser.setDialogTitle(
508             MessageManager.formatMessage("label.select_pdb_file_for",
509                     selectedSequence.getDisplayId(false)));
510     chooser.setToolTipText(MessageManager.formatMessage(
511             "label.load_pdb_file_associate_with_sequence",
512             selectedSequence.getDisplayId(false)));
513
514     int value = chooser.showOpenDialog(null);
515     if (value == jalview.io.JalviewFileChooser.APPROVE_OPTION)
516     {
517       selectedPdbFileName = chooser.getSelectedFile().getPath();
518       jalview.bin.Cache.setProperty("LAST_DIRECTORY", selectedPdbFileName);
519       validateSelections();
520     }
521   }
522
523   /**
524    * Populates the filter combo-box options dynamically depending on discovered
525    * structures
526    */
527   protected void populateFilterComboBox(boolean haveData,
528           boolean cachedPDBExists)
529   {
530     /*
531      * temporarily suspend the change listener behaviour
532      */
533     cmb_filterOption.removeItemListener(this);
534
535     cmb_filterOption.removeAllItems();
536     if (haveData)
537     {
538       cmb_filterOption.addItem(new FilterOption("Best Quality",
539               "overall_quality", VIEWS_FILTER, false));
540       cmb_filterOption.addItem(new FilterOption("Best Resolution",
541               "resolution", VIEWS_FILTER, false));
542       cmb_filterOption.addItem(new FilterOption("Most Protein Chain",
543               "number_of_protein_chains", VIEWS_FILTER, false));
544       cmb_filterOption.addItem(new FilterOption("Most Bound Molecules",
545               "number_of_bound_molecules", VIEWS_FILTER, false));
546       cmb_filterOption.addItem(new FilterOption("Most Polymer Residues",
547               "number_of_polymer_residues", VIEWS_FILTER, true));
548     }
549     cmb_filterOption.addItem(
550             new FilterOption("Enter PDB Id", "-", VIEWS_ENTER_ID, false));
551     cmb_filterOption.addItem(
552             new FilterOption("From File", "-", VIEWS_FROM_FILE, false));
553
554     if (cachedPDBExists)
555     {
556       FilterOption cachedOption = new FilterOption("Cached PDB Entries",
557               "-", VIEWS_LOCAL_PDB, false);
558       cmb_filterOption.addItem(cachedOption);
559       cmb_filterOption.setSelectedItem(cachedOption);
560     }
561
562     cmb_filterOption.addItemListener(this);
563   }
564
565   /**
566    * Updates the displayed view based on the selected filter option
567    */
568   protected void updateCurrentView()
569   {
570     FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
571             .getSelectedItem());
572     layout_switchableViews.show(pnl_switchableViews,
573             selectedFilterOpt.getView());
574     String filterTitle = mainFrame.getTitle();
575     mainFrame.setTitle(frameTitle);
576     chk_invertFilter.setVisible(false);
577     if (selectedFilterOpt.getView() == VIEWS_FILTER)
578     {
579       mainFrame.setTitle(filterTitle);
580       chk_invertFilter.setVisible(true);
581       filterResultSet(selectedFilterOpt.getValue());
582     }
583     else if (selectedFilterOpt.getView() == VIEWS_ENTER_ID
584             || selectedFilterOpt.getView() == VIEWS_FROM_FILE)
585     {
586       mainFrame.setTitle(MessageManager
587               .getString("label.structure_chooser_manual_association"));
588       idInputAssSeqPanel.loadCmbAssSeq();
589       fileChooserAssSeqPanel.loadCmbAssSeq();
590     }
591     validateSelections();
592   }
593
594   /**
595    * Validates user selection and activates the view button if all parameters
596    * are correct
597    */
598   @Override
599   public void validateSelections()
600   {
601     FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
602             .getSelectedItem());
603     btn_view.setEnabled(false);
604     String currentView = selectedFilterOpt.getView();
605     if (currentView == VIEWS_FILTER)
606     {
607       if (getResultTable().getSelectedRows().length > 0)
608       {
609         btn_view.setEnabled(true);
610       }
611     }
612     else if (currentView == VIEWS_LOCAL_PDB)
613     {
614       if (tbl_local_pdb.getSelectedRows().length > 0)
615       {
616         btn_view.setEnabled(true);
617       }
618     }
619     else if (currentView == VIEWS_ENTER_ID)
620     {
621       validateAssociationEnterPdb();
622     }
623     else if (currentView == VIEWS_FROM_FILE)
624     {
625       validateAssociationFromFile();
626     }
627   }
628
629   /**
630    * Validates inputs from the Manual PDB entry panel
631    */
632   public void validateAssociationEnterPdb()
633   {
634     AssociateSeqOptions assSeqOpt = (AssociateSeqOptions) idInputAssSeqPanel
635             .getCmb_assSeq().getSelectedItem();
636     lbl_pdbManualFetchStatus.setIcon(errorImage);
637     lbl_pdbManualFetchStatus.setToolTipText("");
638     if (txt_search.getText().length() > 0)
639     {
640       lbl_pdbManualFetchStatus.setToolTipText(JvSwingUtils.wrapTooltip(true,
641               MessageManager.formatMessage("info.no_pdb_entry_found_for",
642                       txt_search.getText())));
643     }
644
645     if (errorWarning.length() > 0)
646     {
647       lbl_pdbManualFetchStatus.setIcon(warningImage);
648       lbl_pdbManualFetchStatus.setToolTipText(
649               JvSwingUtils.wrapTooltip(true, errorWarning.toString()));
650     }
651
652     if (selectedSequences.length == 1 || !assSeqOpt.getName()
653             .equalsIgnoreCase("-Select Associated Seq-"))
654     {
655       txt_search.setEnabled(true);
656       if (isValidPBDEntry)
657       {
658         btn_view.setEnabled(true);
659         lbl_pdbManualFetchStatus.setToolTipText("");
660         lbl_pdbManualFetchStatus.setIcon(goodImage);
661       }
662     }
663     else
664     {
665       txt_search.setEnabled(false);
666       lbl_pdbManualFetchStatus.setIcon(errorImage);
667     }
668   }
669
670   /**
671    * Validates inputs for the manual PDB file selection options
672    */
673   public void validateAssociationFromFile()
674   {
675     AssociateSeqOptions assSeqOpt = (AssociateSeqOptions) fileChooserAssSeqPanel
676             .getCmb_assSeq().getSelectedItem();
677     lbl_fromFileStatus.setIcon(errorImage);
678     if (selectedSequences.length == 1 || (assSeqOpt != null && !assSeqOpt
679             .getName().equalsIgnoreCase("-Select Associated Seq-")))
680     {
681       btn_pdbFromFile.setEnabled(true);
682       if (selectedPdbFileName != null && selectedPdbFileName.length() > 0)
683       {
684         btn_view.setEnabled(true);
685         lbl_fromFileStatus.setIcon(goodImage);
686       }
687     }
688     else
689     {
690       btn_pdbFromFile.setEnabled(false);
691       lbl_fromFileStatus.setIcon(errorImage);
692     }
693   }
694
695   @Override
696   public void cmbAssSeqStateChanged()
697   {
698     validateSelections();
699   }
700
701   /**
702    * Handles the state change event for the 'filter' combo-box and 'invert'
703    * check-box
704    */
705   @Override
706   protected void stateChanged(ItemEvent e)
707   {
708     if (e.getSource() instanceof JCheckBox)
709     {
710       updateCurrentView();
711     }
712     else
713     {
714       if (e.getStateChange() == ItemEvent.SELECTED)
715       {
716         updateCurrentView();
717       }
718     }
719
720   }
721
722   /**
723    * Handles action event for btn_ok
724    */
725   @Override
726   public void ok_ActionPerformed()
727   {
728     final long progressSessionId = System.currentTimeMillis();
729     final StructureSelectionManager ssm = ap.getStructureSelectionManager();
730     final int preferredHeight = pnl_filter.getHeight();
731     ssm.setProgressIndicator(this);
732     ssm.setProgressSessionId(progressSessionId);
733     new Thread(new Runnable()
734     {
735       @Override
736       public void run()
737       {
738         FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
739                 .getSelectedItem());
740         String currentView = selectedFilterOpt.getView();
741         if (currentView == VIEWS_FILTER)
742         {
743           int pdbIdColIndex = getResultTable().getColumn("PDB Id")
744                   .getModelIndex();
745           int refSeqColIndex = getResultTable().getColumn("Ref Sequence")
746                   .getModelIndex();
747           int[] selectedRows = getResultTable().getSelectedRows();
748           PDBEntry[] pdbEntriesToView = new PDBEntry[selectedRows.length];
749           int count = 0;
750           List<SequenceI> selectedSeqsToView = new ArrayList<SequenceI>();
751           for (int row : selectedRows)
752           {
753             String pdbIdStr = getResultTable()
754                     .getValueAt(row, pdbIdColIndex).toString();
755             SequenceI selectedSeq = (SequenceI) getResultTable()
756                     .getValueAt(row, refSeqColIndex);
757             selectedSeqsToView.add(selectedSeq);
758             PDBEntry pdbEntry = selectedSeq.getPDBEntry(pdbIdStr);
759             if (pdbEntry == null)
760             {
761               pdbEntry = getFindEntry(pdbIdStr,
762                       selectedSeq.getAllPDBEntries());
763             }
764             if (pdbEntry == null)
765             {
766               pdbEntry = new PDBEntry();
767               pdbEntry.setId(pdbIdStr);
768               pdbEntry.setType(PDBEntry.Type.PDB);
769               selectedSeq.getDatasetSequence().addPDBId(pdbEntry);
770             }
771             pdbEntriesToView[count++] = pdbEntry;
772           }
773           SequenceI[] selectedSeqs = selectedSeqsToView
774                   .toArray(new SequenceI[selectedSeqsToView.size()]);
775           launchStructureViewer(ssm, pdbEntriesToView, ap, selectedSeqs);
776         }
777         else if (currentView == VIEWS_LOCAL_PDB)
778         {
779           int[] selectedRows = tbl_local_pdb.getSelectedRows();
780           PDBEntry[] pdbEntriesToView = new PDBEntry[selectedRows.length];
781           int count = 0;
782           int pdbIdColIndex = tbl_local_pdb.getColumn("PDB Id")
783                   .getModelIndex();
784           int refSeqColIndex = tbl_local_pdb.getColumn("Ref Sequence")
785                   .getModelIndex();
786           List<SequenceI> selectedSeqsToView = new ArrayList<SequenceI>();
787           for (int row : selectedRows)
788           {
789             PDBEntry pdbEntry = (PDBEntry) tbl_local_pdb.getValueAt(row,
790                     pdbIdColIndex);
791             pdbEntriesToView[count++] = pdbEntry;
792             SequenceI selectedSeq = (SequenceI) tbl_local_pdb
793                     .getValueAt(row, refSeqColIndex);
794             selectedSeqsToView.add(selectedSeq);
795           }
796           SequenceI[] selectedSeqs = selectedSeqsToView
797                   .toArray(new SequenceI[selectedSeqsToView.size()]);
798           launchStructureViewer(ssm, pdbEntriesToView, ap, selectedSeqs);
799         }
800         else if (currentView == VIEWS_ENTER_ID)
801         {
802           SequenceI userSelectedSeq = ((AssociateSeqOptions) idInputAssSeqPanel
803                   .getCmb_assSeq().getSelectedItem()).getSequence();
804           if (userSelectedSeq != null)
805           {
806             selectedSequence = userSelectedSeq;
807           }
808
809           String pdbIdStr = txt_search.getText();
810           PDBEntry pdbEntry = selectedSequence.getPDBEntry(pdbIdStr);
811           if (pdbEntry == null)
812           {
813             pdbEntry = new PDBEntry();
814             if (pdbIdStr.split(":").length > 1)
815             {
816               pdbEntry.setId(pdbIdStr.split(":")[0]);
817               pdbEntry.setChainCode(pdbIdStr.split(":")[1].toUpperCase());
818             }
819             else
820             {
821               pdbEntry.setId(pdbIdStr);
822             }
823             pdbEntry.setType(PDBEntry.Type.PDB);
824             selectedSequence.getDatasetSequence().addPDBId(pdbEntry);
825           }
826
827           PDBEntry[] pdbEntriesToView = new PDBEntry[] { pdbEntry };
828           launchStructureViewer(ssm, pdbEntriesToView, ap,
829                   new SequenceI[]
830                   { selectedSequence });
831         }
832         else if (currentView == VIEWS_FROM_FILE)
833         {
834           SequenceI userSelectedSeq = ((AssociateSeqOptions) fileChooserAssSeqPanel
835                   .getCmb_assSeq().getSelectedItem()).getSequence();
836           if (userSelectedSeq != null)
837           {
838             selectedSequence = userSelectedSeq;
839           }
840           PDBEntry fileEntry = new AssociatePdbFileWithSeq()
841                   .associatePdbWithSeq(selectedPdbFileName,
842                           DataSourceType.FILE, selectedSequence, true,
843                           Desktop.instance);
844
845           launchStructureViewer(ssm, new PDBEntry[] { fileEntry }, ap,
846                   new SequenceI[]
847                   { selectedSequence });
848         }
849         closeAction(preferredHeight);
850       }
851     }).start();
852   }
853
854   private PDBEntry getFindEntry(String id, Vector<PDBEntry> pdbEntries)
855   {
856     Objects.requireNonNull(id);
857     Objects.requireNonNull(pdbEntries);
858     PDBEntry foundEntry = null;
859     for (PDBEntry entry : pdbEntries)
860     {
861       if (entry.getId().equalsIgnoreCase(id))
862       {
863         return entry;
864       }
865     }
866     return foundEntry;
867   }
868
869   private void launchStructureViewer(StructureSelectionManager ssm,
870           final PDBEntry[] pdbEntriesToView,
871           final AlignmentPanel alignPanel, SequenceI[] sequences)
872   {
873     ssm.setProgressBar(MessageManager
874             .getString("status.launching_3d_structure_viewer"));
875     final StructureViewer sViewer = new StructureViewer(ssm);
876
877     if (SiftsSettings.isMapWithSifts())
878     {
879       List<SequenceI> seqsWithoutSourceDBRef = new ArrayList<SequenceI>();
880       int p = 0;
881       // TODO: skip PDBEntry:Sequence pairs where PDBEntry doesn't look like a
882       // real PDB ID. For moment, we can also safely do this if there is already
883       // a known mapping between the PDBEntry and the sequence.
884       for (SequenceI seq : sequences)
885       {
886         PDBEntry pdbe = pdbEntriesToView[p++];
887         if (pdbe != null && pdbe.getFile() != null)
888         {
889           StructureMapping[] smm = ssm.getMapping(pdbe.getFile());
890           if (smm != null && smm.length > 0)
891           {
892             for (StructureMapping sm : smm)
893             {
894               if (sm.getSequence() == seq)
895               {
896                 continue;
897               }
898             }
899           }
900         }
901         if (seq.getPrimaryDBRefs().size() == 0)
902         {
903           seqsWithoutSourceDBRef.add(seq);
904           continue;
905         }
906       }
907       if (!seqsWithoutSourceDBRef.isEmpty())
908       {
909         int y = seqsWithoutSourceDBRef.size();
910         ssm.setProgressBar(null);
911         ssm.setProgressBar(MessageManager.formatMessage(
912                 "status.fetching_dbrefs_for_sequences_without_valid_refs",
913                 y));
914         SequenceI[] seqWithoutSrcDBRef = new SequenceI[y];
915         int x = 0;
916         for (SequenceI fSeq : seqsWithoutSourceDBRef)
917         {
918           seqWithoutSrcDBRef[x++] = fSeq;
919         }
920         DBRefFetcher dbRefFetcher = new DBRefFetcher(seqWithoutSrcDBRef);
921         dbRefFetcher.fetchDBRefs(true);
922       }
923     }
924     if (pdbEntriesToView.length > 1)
925     {
926       ArrayList<SequenceI[]> seqsMap = new ArrayList<SequenceI[]>();
927       for (SequenceI seq : sequences)
928       {
929         seqsMap.add(new SequenceI[] { seq });
930       }
931       SequenceI[][] collatedSeqs = seqsMap.toArray(new SequenceI[0][0]);
932       ssm.setProgressBar(null);
933       ssm.setProgressBar(MessageManager.getString(
934               "status.fetching_3d_structures_for_selected_entries"));
935       sViewer.viewStructures(pdbEntriesToView, collatedSeqs, alignPanel);
936     }
937     else
938     {
939       ssm.setProgressBar(null);
940       ssm.setProgressBar(MessageManager.formatMessage(
941               "status.fetching_3d_structures_for",
942               pdbEntriesToView[0].getId()));
943       sViewer.viewStructures(pdbEntriesToView[0], sequences, alignPanel);
944     }
945   }
946
947   /**
948    * Populates the combo-box used in associating manually fetched structures to
949    * a unique sequence when more than one sequence selection is made.
950    */
951   @Override
952   public void populateCmbAssociateSeqOptions(
953           JComboBox<AssociateSeqOptions> cmb_assSeq,
954           JLabel lbl_associateSeq)
955   {
956     cmb_assSeq.removeAllItems();
957     cmb_assSeq.addItem(
958             new AssociateSeqOptions("-Select Associated Seq-", null));
959     lbl_associateSeq.setVisible(false);
960     if (selectedSequences.length > 1)
961     {
962       for (SequenceI seq : selectedSequences)
963       {
964         cmb_assSeq.addItem(new AssociateSeqOptions(seq));
965       }
966     }
967     else
968     {
969       String seqName = selectedSequence.getDisplayId(false);
970       seqName = seqName.length() <= 40 ? seqName : seqName.substring(0, 39);
971       lbl_associateSeq.setText(seqName);
972       lbl_associateSeq.setVisible(true);
973       cmb_assSeq.setVisible(false);
974     }
975   }
976
977   public boolean isStructuresDiscovered()
978   {
979     return discoveredStructuresSet != null
980             && !discoveredStructuresSet.isEmpty();
981   }
982
983   public Collection<FTSData> getDiscoveredStructuresSet()
984   {
985     return discoveredStructuresSet;
986   }
987
988   @Override
989   protected void txt_search_ActionPerformed()
990   {
991     new Thread()
992     {
993       @Override
994       public void run()
995       {
996         errorWarning.setLength(0);
997         isValidPBDEntry = false;
998         if (txt_search.getText().length() > 0)
999         {
1000           String searchTerm = txt_search.getText().toLowerCase();
1001           searchTerm = searchTerm.split(":")[0];
1002           // System.out.println(">>>>> search term : " + searchTerm);
1003           List<FTSDataColumnI> wantedFields = new ArrayList<FTSDataColumnI>();
1004           FTSRestRequest pdbRequest = new FTSRestRequest();
1005           pdbRequest.setAllowEmptySeq(false);
1006           pdbRequest.setResponseSize(1);
1007           pdbRequest.setFieldToSearchBy("(pdb_id:");
1008           pdbRequest.setWantedFields(wantedFields);
1009           pdbRequest.setSearchTerm(searchTerm + ")");
1010           pdbRequest.setAssociatedSequence(selectedSequence);
1011           pdbRestCleint = PDBFTSRestClient.getInstance();
1012           wantedFields.add(pdbRestCleint.getPrimaryKeyColumn());
1013           FTSRestResponse resultList;
1014           try
1015           {
1016             resultList = pdbRestCleint.executeRequest(pdbRequest);
1017           } catch (Exception e)
1018           {
1019             errorWarning.append(e.getMessage());
1020             return;
1021           } finally
1022           {
1023             validateSelections();
1024           }
1025           if (resultList.getSearchSummary() != null
1026                   && resultList.getSearchSummary().size() > 0)
1027           {
1028             isValidPBDEntry = true;
1029           }
1030         }
1031         validateSelections();
1032       }
1033     }.start();
1034   }
1035
1036   @Override
1037   public void tabRefresh()
1038   {
1039     if (selectedSequences != null)
1040     {
1041       Thread refreshThread = new Thread(new Runnable()
1042       {
1043         @Override
1044         public void run()
1045         {
1046           fetchStructuresMetaData();
1047           filterResultSet(
1048                   ((FilterOption) cmb_filterOption.getSelectedItem())
1049                           .getValue());
1050         }
1051       });
1052       refreshThread.start();
1053     }
1054   }
1055
1056   public class PDBEntryTableModel extends AbstractTableModel
1057   {
1058     String[] columns = { "Ref Sequence", "PDB Id", "Chain", "Type",
1059         "File" };
1060
1061     private List<CachedPDB> pdbEntries;
1062
1063     public PDBEntryTableModel(List<CachedPDB> pdbEntries)
1064     {
1065       this.pdbEntries = new ArrayList<CachedPDB>(pdbEntries);
1066     }
1067
1068     @Override
1069     public String getColumnName(int columnIndex)
1070     {
1071       return columns[columnIndex];
1072     }
1073
1074     @Override
1075     public int getRowCount()
1076     {
1077       return pdbEntries.size();
1078     }
1079
1080     @Override
1081     public int getColumnCount()
1082     {
1083       return columns.length;
1084     }
1085
1086     @Override
1087     public boolean isCellEditable(int row, int column)
1088     {
1089       return false;
1090     }
1091
1092     @Override
1093     public Object getValueAt(int rowIndex, int columnIndex)
1094     {
1095       Object value = "??";
1096       CachedPDB entry = pdbEntries.get(rowIndex);
1097       switch (columnIndex)
1098       {
1099       case 0:
1100         value = entry.getSequence();
1101         break;
1102       case 1:
1103         value = entry.getPdbEntry();
1104         break;
1105       case 2:
1106         value = entry.getPdbEntry().getChainCode() == null ? "_"
1107                 : entry.getPdbEntry().getChainCode();
1108         break;
1109       case 3:
1110         value = entry.getPdbEntry().getType();
1111         break;
1112       case 4:
1113         value = entry.getPdbEntry().getFile();
1114         break;
1115       }
1116       return value;
1117     }
1118
1119     @Override
1120     public Class<?> getColumnClass(int columnIndex)
1121     {
1122       return columnIndex == 0 ? SequenceI.class : PDBEntry.class;
1123     }
1124
1125     public CachedPDB getPDBEntryAt(int row)
1126     {
1127       return pdbEntries.get(row);
1128     }
1129
1130   }
1131
1132   private class CachedPDB
1133   {
1134     private SequenceI sequence;
1135
1136     private PDBEntry pdbEntry;
1137
1138     public CachedPDB(SequenceI sequence, PDBEntry pdbEntry)
1139     {
1140       this.sequence = sequence;
1141       this.pdbEntry = pdbEntry;
1142     }
1143
1144     public SequenceI getSequence()
1145     {
1146       return sequence;
1147     }
1148
1149     public PDBEntry getPdbEntry()
1150     {
1151       return pdbEntry;
1152     }
1153
1154   }
1155
1156   private IProgressIndicator progressBar;
1157
1158   @Override
1159   public void setProgressBar(String message, long id)
1160   {
1161     progressBar.setProgressBar(message, id);
1162   }
1163
1164   @Override
1165   public void registerHandler(long id, IProgressIndicatorHandler handler)
1166   {
1167     progressBar.registerHandler(id, handler);
1168   }
1169
1170   @Override
1171   public boolean operationInProgress()
1172   {
1173     return progressBar.operationInProgress();
1174   }
1175 }