2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
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;
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;
51 import java.util.Vector;
53 import javax.swing.JCheckBox;
54 import javax.swing.JComboBox;
55 import javax.swing.JLabel;
56 import javax.swing.table.AbstractTableModel;
59 * Provides the behaviors for the Structure chooser Panel
64 @SuppressWarnings("serial")
65 public class StructureChooser extends GStructureChooser
66 implements IProgressIndicator
68 private static int MAX_QLENGTH = 7820;
70 private SequenceI selectedSequence;
72 private SequenceI[] selectedSequences;
74 private IProgressIndicator progressIndicator;
76 private Collection<FTSData> discoveredStructuresSet;
78 private FTSRestRequest lastPdbRequest;
80 private FTSRestClientI pdbRestCleint;
82 private String selectedPdbFileName;
84 private boolean isValidPBDEntry;
86 private boolean cachedPDBExists;
88 public StructureChooser(SequenceI[] selectedSeqs, SequenceI selectedSeq,
92 this.selectedSequence = selectedSeq;
93 this.selectedSequences = selectedSeqs;
94 this.progressIndicator = (ap == null) ? null : ap.alignFrame;
99 * Initializes parameters used by the Structure Chooser Panel
103 if (!Jalview.isHeadlessMode())
105 progressBar = new ProgressBar(this.statusPanel, this.statusBar);
108 // ensure a filter option is in force for search
109 populateFilterComboBox(true, cachedPDBExists);
110 Thread discoverPDBStructuresThread = new Thread(new Runnable()
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);
130 discoverPDBStructuresThread.start();
134 * Updates the progress indicator with the specified message
137 * displayed message for the operation
139 * unique handle for this indicator
141 public void updateProgressIndicator(String message, long id)
143 if (progressIndicator != null)
145 progressIndicator.setProgressBar(message, id);
150 * Retrieve meta-data for all the structure(s) for a given sequence(s) in a
153 public void fetchStructuresMetaData()
155 long startTime = System.currentTimeMillis();
156 pdbRestCleint = PDBFTSRestClient.getInstance();
157 Collection<FTSDataColumnI> wantedFields = pdbDocFieldPrefs
158 .getStructureSummaryFields();
160 discoveredStructuresSet = new LinkedHashSet<>();
161 HashSet<String> errors = new HashSet<>();
162 for (SequenceI seq : selectedSequences)
164 FTSRestRequest pdbRequest = new FTSRestRequest();
165 pdbRequest.setAllowEmptySeq(false);
166 pdbRequest.setResponseSize(500);
167 pdbRequest.setFieldToSearchBy("(");
168 FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
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;
178 resultList = pdbRestCleint.executeRequest(pdbRequest);
179 } catch (Exception e)
182 errors.add(e.getMessage());
185 lastPdbRequest = pdbRequest;
186 if (resultList.getSearchSummary() != null
187 && !resultList.getSearchSummary().isEmpty())
189 discoveredStructuresSet.addAll(resultList.getSearchSummary());
193 int noOfStructuresFound = 0;
194 String totalTime = (System.currentTimeMillis() - startTime)
196 if (discoveredStructuresSet != null
197 && !discoveredStructuresSet.isEmpty())
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));
208 mainFrame.setTitle(MessageManager
209 .getString("label.structure_chooser_manual_association"));
210 if (errors.size() > 0)
212 StringBuilder errorMsg = new StringBuilder();
213 for (String error : errors)
215 errorMsg.append(error).append("\n");
217 JvOptionPane.showMessageDialog(this, errorMsg.toString(),
218 MessageManager.getString("label.pdb_web-service_error"),
219 JvOptionPane.ERROR_MESSAGE);
224 public void loadLocalCachedPDBEntries()
226 ArrayList<CachedPDB> entries = new ArrayList<>();
227 for (SequenceI seq : selectedSequences)
229 if (seq.getDatasetSequence() != null
230 && seq.getDatasetSequence().getAllPDBEntries() != null)
232 for (PDBEntry pdbEntry : seq.getDatasetSequence()
235 if (pdbEntry.getFile() != null)
237 entries.add(new CachedPDB(seq, pdbEntry));
242 cachedPDBExists = !entries.isEmpty();
243 PDBEntryTableModel tableModelx = new PDBEntryTableModel(entries);
244 tbl_local_pdb.setModel(tableModelx);
248 * Builds a query string for a given sequences using its DBRef entries
251 * the sequences to build a query for
252 * @return the built query string
255 public static String buildQuery(SequenceI seq)
257 boolean isPDBRefsFound = false;
258 boolean isUniProtRefsFound = false;
259 StringBuilder queryBuilder = new StringBuilder();
260 Set<String> seqRefs = new LinkedHashSet<>();
262 if (seq.getAllPDBEntries() != null
263 && queryBuilder.length() < MAX_QLENGTH)
265 for (PDBEntry entry : seq.getAllPDBEntries())
267 if (isValidSeqName(entry.getId()))
269 queryBuilder.append("pdb_id:").append(entry.getId().toLowerCase())
271 isPDBRefsFound = true;
276 if (seq.getDBRefs() != null && seq.getDBRefs().length != 0)
278 for (DBRefEntry dbRef : seq.getDBRefs())
280 if (isValidSeqName(getDBRefId(dbRef))
281 && queryBuilder.length() < MAX_QLENGTH)
283 if (dbRef.getSource().equalsIgnoreCase(DBRefSource.UNIPROT))
285 queryBuilder.append("uniprot_accession:")
286 .append(getDBRefId(dbRef)).append(" OR ");
287 queryBuilder.append("uniprot_id:").append(getDBRefId(dbRef))
289 isUniProtRefsFound = true;
291 else if (dbRef.getSource().equalsIgnoreCase(DBRefSource.PDB))
294 queryBuilder.append("pdb_id:")
295 .append(getDBRefId(dbRef).toLowerCase()).append(" OR ");
296 isPDBRefsFound = true;
300 seqRefs.add(getDBRefId(dbRef));
306 if (!isPDBRefsFound && !isUniProtRefsFound)
308 String seqName = seq.getName();
309 seqName = sanitizeSeqName(seqName);
310 String[] names = seqName.toLowerCase().split("\\|");
311 for (String name : names)
313 // System.out.println("Found name : " + name);
315 if (isValidSeqName(name))
321 for (String seqRef : seqRefs)
323 queryBuilder.append("text:").append(seqRef).append(" OR ");
327 int endIndex = queryBuilder.lastIndexOf(" OR ");
328 if (queryBuilder.toString().length() < 6)
332 String query = queryBuilder.toString().substring(0, endIndex);
337 * Remove the following special characters from input string +, -, &, !, (, ),
338 * {, }, [, ], ^, ", ~, *, ?, :, \
343 static String sanitizeSeqName(String seqName)
345 Objects.requireNonNull(seqName);
346 return seqName.replaceAll("\\[\\d*\\]", "")
347 .replaceAll("[^\\dA-Za-z|_]", "").replaceAll("\\s+", "+");
351 * Ensures sequence ref names are not less than 3 characters and does not
352 * contain a database name
357 public static boolean isValidSeqName(String seqName)
359 // System.out.println("seqName : " + seqName);
360 String ignoreList = "pdb,uniprot,swiss-prot";
361 if (seqName.length() < 3)
365 if (seqName.contains(":"))
369 seqName = seqName.toLowerCase();
370 for (String ignoredEntry : ignoreList.split(","))
372 if (seqName.contains(ignoredEntry))
380 public static String getDBRefId(DBRefEntry dbRef)
382 String ref = dbRef.getAccessionId().replaceAll("GO:", "");
387 * Filters a given list of discovered structures based on supplied argument
389 * @param fieldToFilterBy
390 * the field to filter by
392 public void filterResultSet(final String fieldToFilterBy)
394 Thread filterThread = new Thread(new Runnable()
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<>();
405 HashSet<String> errors = new HashSet<>();
407 for (SequenceI seq : selectedSequences)
409 FTSRestRequest pdbRequest = new FTSRestRequest();
410 if (fieldToFilterBy.equalsIgnoreCase("uniprot_coverage"))
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);
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);
433 FTSRestResponse resultList;
436 resultList = pdbRestCleint.executeRequest(pdbRequest);
437 } catch (Exception e)
440 errors.add(e.getMessage());
443 lastPdbRequest = pdbRequest;
444 if (resultList.getSearchSummary() != null
445 && !resultList.getSearchSummary().isEmpty())
447 filteredResponse.addAll(resultList.getSearchSummary());
451 String totalTime = (System.currentTimeMillis() - startTime)
453 if (!filteredResponse.isEmpty())
455 final int filterResponseCount = filteredResponse.size();
456 Collection<FTSData> reorderedStructuresSet = new LinkedHashSet<>();
457 reorderedStructuresSet.addAll(filteredResponse);
458 reorderedStructuresSet.addAll(discoveredStructuresSet);
459 getResultTable().setModel(FTSRestResponse
460 .getTableModel(lastPdbRequest, reorderedStructuresSet));
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));
475 mainFrame.setTitle(MessageManager.formatMessage(
476 "label.structure_chooser_filter_time", totalTime));
477 if (errors.size() > 0)
479 StringBuilder errorMsg = new StringBuilder();
480 for (String error : errors)
482 errorMsg.append(error).append("\n");
484 JvOptionPane.showMessageDialog(null, errorMsg.toString(),
485 MessageManager.getString("label.pdb_web-service_error"),
486 JvOptionPane.ERROR_MESSAGE);
490 lbl_loading.setVisible(false);
492 validateSelections();
495 filterThread.start();
499 * Handles action event for btn_pdbFromFile
502 public void pdbFromFile_actionPerformed()
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)));
514 int value = chooser.showOpenDialog(null);
515 if (value == jalview.io.JalviewFileChooser.APPROVE_OPTION)
517 selectedPdbFileName = chooser.getSelectedFile().getPath();
518 jalview.bin.Cache.setProperty("LAST_DIRECTORY", selectedPdbFileName);
519 validateSelections();
524 * Populates the filter combo-box options dynamically depending on discovered
527 protected void populateFilterComboBox(boolean haveData,
528 boolean cachedPDBExist)
531 * temporarily suspend the change listener behaviour
533 cmb_filterOption.removeItemListener(this);
535 cmb_filterOption.removeAllItems();
538 cmb_filterOption.addItem(new FilterOption(
539 MessageManager.getString("label.best_quality"),
540 "overall_quality", VIEWS_FILTER, false));
541 cmb_filterOption.addItem(new FilterOption(
542 MessageManager.getString("label.best_resolution"),
543 "resolution", VIEWS_FILTER, false));
544 cmb_filterOption.addItem(new FilterOption(
545 MessageManager.getString("label.most_protein_chain"),
546 "number_of_protein_chains", VIEWS_FILTER, false));
547 cmb_filterOption.addItem(new FilterOption(
548 MessageManager.getString("label.most_bound_molecules"),
549 "number_of_bound_molecules", VIEWS_FILTER, false));
550 cmb_filterOption.addItem(new FilterOption(
551 MessageManager.getString("label.most_polymer_residues"),
552 "number_of_polymer_residues", VIEWS_FILTER, true));
554 cmb_filterOption.addItem(
555 new FilterOption(MessageManager.getString("label.enter_pdb_id"),
556 "-", VIEWS_ENTER_ID, false));
557 cmb_filterOption.addItem(
558 new FilterOption(MessageManager.getString("label.from_file"),
559 "-", VIEWS_FROM_FILE, false));
563 FilterOption cachedOption = new FilterOption(
564 MessageManager.getString("label.cached_structures"),
565 "-", VIEWS_LOCAL_PDB, false);
566 cmb_filterOption.addItem(cachedOption);
567 cmb_filterOption.setSelectedItem(cachedOption);
570 cmb_filterOption.addItemListener(this);
574 * Updates the displayed view based on the selected filter option
576 protected void updateCurrentView()
578 FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
580 layout_switchableViews.show(pnl_switchableViews,
581 selectedFilterOpt.getView());
582 String filterTitle = mainFrame.getTitle();
583 mainFrame.setTitle(frameTitle);
584 chk_invertFilter.setVisible(false);
585 if (selectedFilterOpt.getView() == VIEWS_FILTER)
587 mainFrame.setTitle(filterTitle);
588 chk_invertFilter.setVisible(true);
589 filterResultSet(selectedFilterOpt.getValue());
591 else if (selectedFilterOpt.getView() == VIEWS_ENTER_ID
592 || selectedFilterOpt.getView() == VIEWS_FROM_FILE)
594 mainFrame.setTitle(MessageManager
595 .getString("label.structure_chooser_manual_association"));
596 idInputAssSeqPanel.loadCmbAssSeq();
597 fileChooserAssSeqPanel.loadCmbAssSeq();
599 validateSelections();
603 * Validates user selection and activates the view button if all parameters
607 public void validateSelections()
609 FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
611 btn_view.setEnabled(false);
612 String currentView = selectedFilterOpt.getView();
613 if (currentView == VIEWS_FILTER)
615 if (getResultTable().getSelectedRows().length > 0)
617 btn_view.setEnabled(true);
620 else if (currentView == VIEWS_LOCAL_PDB)
622 if (tbl_local_pdb.getSelectedRows().length > 0)
624 btn_view.setEnabled(true);
627 else if (currentView == VIEWS_ENTER_ID)
629 validateAssociationEnterPdb();
631 else if (currentView == VIEWS_FROM_FILE)
633 validateAssociationFromFile();
638 * Validates inputs from the Manual PDB entry panel
640 public void validateAssociationEnterPdb()
642 AssociateSeqOptions assSeqOpt = (AssociateSeqOptions) idInputAssSeqPanel
643 .getCmb_assSeq().getSelectedItem();
644 lbl_pdbManualFetchStatus.setIcon(errorImage);
645 lbl_pdbManualFetchStatus.setToolTipText("");
646 if (txt_search.getText().length() > 0)
648 lbl_pdbManualFetchStatus.setToolTipText(JvSwingUtils.wrapTooltip(true,
649 MessageManager.formatMessage("info.no_pdb_entry_found_for",
650 txt_search.getText())));
653 if (errorWarning.length() > 0)
655 lbl_pdbManualFetchStatus.setIcon(warningImage);
656 lbl_pdbManualFetchStatus.setToolTipText(
657 JvSwingUtils.wrapTooltip(true, errorWarning.toString()));
660 if (selectedSequences.length == 1 || !assSeqOpt.getName()
661 .equalsIgnoreCase("-Select Associated Seq-"))
663 txt_search.setEnabled(true);
666 btn_view.setEnabled(true);
667 lbl_pdbManualFetchStatus.setToolTipText("");
668 lbl_pdbManualFetchStatus.setIcon(goodImage);
673 txt_search.setEnabled(false);
674 lbl_pdbManualFetchStatus.setIcon(errorImage);
679 * Validates inputs for the manual PDB file selection options
681 public void validateAssociationFromFile()
683 AssociateSeqOptions assSeqOpt = (AssociateSeqOptions) fileChooserAssSeqPanel
684 .getCmb_assSeq().getSelectedItem();
685 lbl_fromFileStatus.setIcon(errorImage);
686 if (selectedSequences.length == 1 || (assSeqOpt != null && !assSeqOpt
687 .getName().equalsIgnoreCase("-Select Associated Seq-")))
689 btn_pdbFromFile.setEnabled(true);
690 if (selectedPdbFileName != null && selectedPdbFileName.length() > 0)
692 btn_view.setEnabled(true);
693 lbl_fromFileStatus.setIcon(goodImage);
698 btn_pdbFromFile.setEnabled(false);
699 lbl_fromFileStatus.setIcon(errorImage);
704 public void cmbAssSeqStateChanged()
706 validateSelections();
710 * Handles the state change event for the 'filter' combo-box and 'invert'
714 protected void stateChanged(ItemEvent e)
716 if (e.getSource() instanceof JCheckBox)
722 if (e.getStateChange() == ItemEvent.SELECTED)
731 * Handles action event for btn_ok
734 public void ok_ActionPerformed()
736 final StructureSelectionManager ssm = ap.getStructureSelectionManager();
738 final int preferredHeight = pnl_filter.getHeight();
740 new Thread(new Runnable()
745 FilterOption selectedFilterOpt = ((FilterOption) cmb_filterOption
747 String currentView = selectedFilterOpt.getView();
748 if (currentView == VIEWS_FILTER)
750 int pdbIdColIndex = getResultTable().getColumn("PDB Id")
752 int refSeqColIndex = getResultTable().getColumn("Ref Sequence")
754 int[] selectedRows = getResultTable().getSelectedRows();
755 PDBEntry[] pdbEntriesToView = new PDBEntry[selectedRows.length];
757 List<SequenceI> selectedSeqsToView = new ArrayList<>();
758 for (int row : selectedRows)
760 String pdbIdStr = getResultTable()
761 .getValueAt(row, pdbIdColIndex).toString();
762 SequenceI selectedSeq = (SequenceI) getResultTable()
763 .getValueAt(row, refSeqColIndex);
764 selectedSeqsToView.add(selectedSeq);
765 PDBEntry pdbEntry = selectedSeq.getPDBEntry(pdbIdStr);
766 if (pdbEntry == null)
768 pdbEntry = getFindEntry(pdbIdStr,
769 selectedSeq.getAllPDBEntries());
772 if (pdbEntry == null)
774 pdbEntry = new PDBEntry();
775 pdbEntry.setId(pdbIdStr);
776 pdbEntry.setType(PDBEntry.Type.PDB);
777 selectedSeq.getDatasetSequence().addPDBId(pdbEntry);
779 pdbEntriesToView[count++] = pdbEntry;
781 SequenceI[] selectedSeqs = selectedSeqsToView
782 .toArray(new SequenceI[selectedSeqsToView.size()]);
783 launchStructureViewer(ssm, pdbEntriesToView, ap, selectedSeqs);
785 else if (currentView == VIEWS_LOCAL_PDB)
787 int[] selectedRows = tbl_local_pdb.getSelectedRows();
788 PDBEntry[] pdbEntriesToView = new PDBEntry[selectedRows.length];
790 int pdbIdColIndex = tbl_local_pdb.getColumn("PDB Id")
792 int refSeqColIndex = tbl_local_pdb.getColumn("Ref Sequence")
794 List<SequenceI> selectedSeqsToView = new ArrayList<>();
795 for (int row : selectedRows)
797 PDBEntry pdbEntry = (PDBEntry) tbl_local_pdb.getValueAt(row,
799 pdbEntriesToView[count++] = pdbEntry;
800 SequenceI selectedSeq = (SequenceI) tbl_local_pdb
801 .getValueAt(row, refSeqColIndex);
802 selectedSeqsToView.add(selectedSeq);
804 SequenceI[] selectedSeqs = selectedSeqsToView
805 .toArray(new SequenceI[selectedSeqsToView.size()]);
806 launchStructureViewer(ssm, pdbEntriesToView, ap, selectedSeqs);
808 else if (currentView == VIEWS_ENTER_ID)
810 SequenceI userSelectedSeq = ((AssociateSeqOptions) idInputAssSeqPanel
811 .getCmb_assSeq().getSelectedItem()).getSequence();
812 if (userSelectedSeq != null)
814 selectedSequence = userSelectedSeq;
816 String pdbIdStr = txt_search.getText();
817 PDBEntry pdbEntry = selectedSequence.getPDBEntry(pdbIdStr);
818 if (pdbEntry == null)
820 pdbEntry = new PDBEntry();
821 if (pdbIdStr.split(":").length > 1)
823 pdbEntry.setId(pdbIdStr.split(":")[0]);
824 pdbEntry.setChainCode(pdbIdStr.split(":")[1].toUpperCase());
828 pdbEntry.setId(pdbIdStr);
830 pdbEntry.setType(PDBEntry.Type.PDB);
831 selectedSequence.getDatasetSequence().addPDBId(pdbEntry);
834 PDBEntry[] pdbEntriesToView = new PDBEntry[] { pdbEntry };
835 launchStructureViewer(ssm, pdbEntriesToView, ap,
837 { selectedSequence });
839 else if (currentView == VIEWS_FROM_FILE)
841 SequenceI userSelectedSeq = ((AssociateSeqOptions) fileChooserAssSeqPanel
842 .getCmb_assSeq().getSelectedItem()).getSequence();
843 if (userSelectedSeq != null)
845 selectedSequence = userSelectedSeq;
847 PDBEntry fileEntry = new AssociatePdbFileWithSeq()
848 .associatePdbWithSeq(selectedPdbFileName,
849 DataSourceType.FILE, selectedSequence, true,
852 launchStructureViewer(ssm, new PDBEntry[] { fileEntry }, ap,
854 { selectedSequence });
856 closeAction(preferredHeight);
862 private PDBEntry getFindEntry(String id, Vector<PDBEntry> pdbEntries)
864 Objects.requireNonNull(id);
865 Objects.requireNonNull(pdbEntries);
866 PDBEntry foundEntry = null;
867 for (PDBEntry entry : pdbEntries)
869 if (entry.getId().equalsIgnoreCase(id))
877 private void launchStructureViewer(StructureSelectionManager ssm,
878 final PDBEntry[] pdbEntriesToView,
879 final AlignmentPanel alignPanel, SequenceI[] sequences)
881 long progressId = sequences.hashCode();
882 setProgressBar(MessageManager
883 .getString("status.launching_3d_structure_viewer"), progressId);
884 final StructureViewer sViewer = new StructureViewer(ssm);
885 setProgressBar(null, progressId);
887 if (SiftsSettings.isMapWithSifts())
889 List<SequenceI> seqsWithoutSourceDBRef = new ArrayList<>();
891 // TODO: skip PDBEntry:Sequence pairs where PDBEntry doesn't look like a
892 // real PDB ID. For moment, we can also safely do this if there is already
893 // a known mapping between the PDBEntry and the sequence.
894 for (SequenceI seq : sequences)
896 PDBEntry pdbe = pdbEntriesToView[p++];
897 if (pdbe != null && pdbe.getFile() != null)
899 StructureMapping[] smm = ssm.getMapping(pdbe.getFile());
900 if (smm != null && smm.length > 0)
902 for (StructureMapping sm : smm)
904 if (sm.getSequence() == seq)
911 if (seq.getPrimaryDBRefs().size() == 0)
913 seqsWithoutSourceDBRef.add(seq);
917 if (!seqsWithoutSourceDBRef.isEmpty())
919 int y = seqsWithoutSourceDBRef.size();
920 setProgressBar(MessageManager.formatMessage(
921 "status.fetching_dbrefs_for_sequences_without_valid_refs",
923 SequenceI[] seqWithoutSrcDBRef = new SequenceI[y];
925 for (SequenceI fSeq : seqsWithoutSourceDBRef)
927 seqWithoutSrcDBRef[x++] = fSeq;
930 DBRefFetcher dbRefFetcher = new DBRefFetcher(seqWithoutSrcDBRef);
931 dbRefFetcher.fetchDBRefs(true);
933 setProgressBar("Fetch complete.", progressId); // todo i18n
936 if (pdbEntriesToView.length > 1)
938 setProgressBar(MessageManager.getString(
939 "status.fetching_3d_structures_for_selected_entries"),
941 sViewer.viewStructures(pdbEntriesToView, sequences, alignPanel);
945 setProgressBar(MessageManager.formatMessage(
946 "status.fetching_3d_structures_for",
947 pdbEntriesToView[0].getId()),progressId);
948 sViewer.viewStructures(pdbEntriesToView[0], sequences, alignPanel);
950 setProgressBar(null, progressId);
954 * Populates the combo-box used in associating manually fetched structures to
955 * a unique sequence when more than one sequence selection is made.
958 public void populateCmbAssociateSeqOptions(
959 JComboBox<AssociateSeqOptions> cmb_assSeq,
960 JLabel lbl_associateSeq)
962 cmb_assSeq.removeAllItems();
964 new AssociateSeqOptions("-Select Associated Seq-", null));
965 lbl_associateSeq.setVisible(false);
966 if (selectedSequences.length > 1)
968 for (SequenceI seq : selectedSequences)
970 cmb_assSeq.addItem(new AssociateSeqOptions(seq));
975 String seqName = selectedSequence.getDisplayId(false);
976 seqName = seqName.length() <= 40 ? seqName : seqName.substring(0, 39);
977 lbl_associateSeq.setText(seqName);
978 lbl_associateSeq.setVisible(true);
979 cmb_assSeq.setVisible(false);
983 public boolean isStructuresDiscovered()
985 return discoveredStructuresSet != null
986 && !discoveredStructuresSet.isEmpty();
989 public Collection<FTSData> getDiscoveredStructuresSet()
991 return discoveredStructuresSet;
995 protected void txt_search_ActionPerformed()
1002 errorWarning.setLength(0);
1003 isValidPBDEntry = false;
1004 if (txt_search.getText().length() > 0)
1006 String searchTerm = txt_search.getText().toLowerCase();
1007 searchTerm = searchTerm.split(":")[0];
1008 // System.out.println(">>>>> search term : " + searchTerm);
1009 List<FTSDataColumnI> wantedFields = new ArrayList<>();
1010 FTSRestRequest pdbRequest = new FTSRestRequest();
1011 pdbRequest.setAllowEmptySeq(false);
1012 pdbRequest.setResponseSize(1);
1013 pdbRequest.setFieldToSearchBy("(pdb_id:");
1014 pdbRequest.setWantedFields(wantedFields);
1015 pdbRequest.setSearchTerm(searchTerm + ")");
1016 pdbRequest.setAssociatedSequence(selectedSequence);
1017 pdbRestCleint = PDBFTSRestClient.getInstance();
1018 wantedFields.add(pdbRestCleint.getPrimaryKeyColumn());
1019 FTSRestResponse resultList;
1022 resultList = pdbRestCleint.executeRequest(pdbRequest);
1023 } catch (Exception e)
1025 errorWarning.append(e.getMessage());
1029 validateSelections();
1031 if (resultList.getSearchSummary() != null
1032 && resultList.getSearchSummary().size() > 0)
1034 isValidPBDEntry = true;
1037 validateSelections();
1043 public void tabRefresh()
1045 if (selectedSequences != null)
1047 Thread refreshThread = new Thread(new Runnable()
1052 fetchStructuresMetaData();
1054 ((FilterOption) cmb_filterOption.getSelectedItem())
1058 refreshThread.start();
1062 public class PDBEntryTableModel extends AbstractTableModel
1064 String[] columns = { "Ref Sequence", "PDB Id", "Chain", "Type",
1067 private List<CachedPDB> pdbEntries;
1069 public PDBEntryTableModel(List<CachedPDB> pdbEntries)
1071 this.pdbEntries = new ArrayList<>(pdbEntries);
1075 public String getColumnName(int columnIndex)
1077 return columns[columnIndex];
1081 public int getRowCount()
1083 return pdbEntries.size();
1087 public int getColumnCount()
1089 return columns.length;
1093 public boolean isCellEditable(int row, int column)
1099 public Object getValueAt(int rowIndex, int columnIndex)
1101 Object value = "??";
1102 CachedPDB entry = pdbEntries.get(rowIndex);
1103 switch (columnIndex)
1106 value = entry.getSequence();
1109 value = entry.getPdbEntry();
1112 value = entry.getPdbEntry().getChainCode() == null ? "_"
1113 : entry.getPdbEntry().getChainCode();
1116 value = entry.getPdbEntry().getType();
1119 value = entry.getPdbEntry().getFile();
1126 public Class<?> getColumnClass(int columnIndex)
1128 return columnIndex == 0 ? SequenceI.class : PDBEntry.class;
1131 public CachedPDB getPDBEntryAt(int row)
1133 return pdbEntries.get(row);
1138 private class CachedPDB
1140 private SequenceI sequence;
1142 private PDBEntry pdbEntry;
1144 public CachedPDB(SequenceI sequence, PDBEntry pdbEntry)
1146 this.sequence = sequence;
1147 this.pdbEntry = pdbEntry;
1150 public SequenceI getSequence()
1155 public PDBEntry getPdbEntry()
1162 private IProgressIndicator progressBar;
1165 public void setProgressBar(String message, long id)
1167 progressBar.setProgressBar(message, id);
1171 public void registerHandler(long id, IProgressIndicatorHandler handler)
1173 progressBar.registerHandler(id, handler);
1177 public boolean operationInProgress()
1179 return progressBar.operationInProgress();