Merge branch 'develop' into dev_from_2_8_1
[jalview.git] / src / jalview / gui / AssociatePdbFileWithSeq.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.gui;
19
20 import javax.swing.JOptionPane;
21 import javax.xml.parsers.ParserConfigurationException;
22
23 import org.xml.sax.SAXException;
24
25 import fr.orsay.lri.varna.exceptions.ExceptionFileFormatOrSyntax;
26 import fr.orsay.lri.varna.exceptions.ExceptionLoadingFailed;
27 import fr.orsay.lri.varna.exceptions.ExceptionPermissionDenied;
28 import fr.orsay.lri.varna.exceptions.ExceptionUnmatchedClosingParentheses;
29
30 import jalview.datamodel.PDBEntry;
31 import jalview.datamodel.SequenceI;
32 import jalview.util.MessageManager;
33
34 /**
35  * GUI related routines for associating PDB files with sequences
36  * 
37  * @author JimP
38  * 
39  */
40 public class AssociatePdbFileWithSeq
41 {
42
43   /**
44    * assocate the given PDB file with
45    * 
46    * @param choice
47    * @param sequence
48    */
49   public PDBEntry associatePdbWithSeq(String choice, String protocol,
50           SequenceI sequence, boolean prompt)
51   {
52     PDBEntry entry = new PDBEntry();
53     try
54     {
55       MCview.PDBfile pdbfile = new MCview.PDBfile(choice, protocol);
56
57       if (pdbfile.id == null)
58       {
59         String reply = null;
60
61         if (prompt)
62         {
63           reply = JOptionPane
64                   .showInternalInputDialog(
65                           Desktop.desktop,
66                           MessageManager.getString("label.couldnt_find_pdb_id_in_file"),
67                           MessageManager.getString("label.no_pdb_id_in_file"), JOptionPane.QUESTION_MESSAGE);
68         }
69         if (reply == null)
70         {
71           return null;
72         }
73
74         entry.setId(reply);
75       }
76       else
77       {
78         entry.setId(pdbfile.id);
79       }
80
81     } catch (java.io.IOException ex)
82     {
83       ex.printStackTrace();
84     }
85
86     entry.setFile(choice);
87     sequence.getDatasetSequence().addPDBId(entry);
88     return entry;
89   }
90 }