Add support RNAML format
[jalview.git] / src / jalview / gui / AssociatePdbFileWithSeq.java
index 6f36a79..ddcd310 100644 (file)
 package jalview.gui;
 
 import javax.swing.JOptionPane;
+import javax.xml.parsers.ParserConfigurationException;
+
+import org.xml.sax.SAXException;
+
+import fr.orsay.lri.varna.exceptions.ExceptionFileFormatOrSyntax;
+import fr.orsay.lri.varna.exceptions.ExceptionLoadingFailed;
+import fr.orsay.lri.varna.exceptions.ExceptionPermissionDenied;
 
 import jalview.datamodel.PDBEntry;
 import jalview.datamodel.Sequence;
 import jalview.datamodel.SequenceI;
+import jalview.io.FileParse;
+import jalview.io.IdentifyFile;
 
 /**
  * GUI related routines for associating PDB files with sequences
@@ -35,12 +44,21 @@ public class AssociatePdbFileWithSeq
  * assocate the given PDB file with 
  * @param choice
  * @param sequence
+ * @throws SAXException 
+ * @throws ParserConfigurationException 
+ * @throws ExceptionFileFormatOrSyntax 
+ * @throws ExceptionLoadingFailed 
+ * @throws ExceptionPermissionDenied 
  */
-  public PDBEntry associatePdbWithSeq(String choice, String protocol, SequenceI sequence, boolean prompt)
+  public PDBEntry associatePdbWithSeq(String choice, String protocol, SequenceI sequence, boolean prompt) throws ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed
   {
     PDBEntry entry = new PDBEntry();
     try
     {
+               System.out.println("This is a annotation PDB");
+       
+       
       MCview.PDBfile pdbfile = new MCview.PDBfile(choice,
               protocol);
 
@@ -65,6 +83,7 @@ public class AssociatePdbFileWithSeq
       {
         entry.setId(pdbfile.id);
       }
+       
     } catch (java.io.IOException ex)
     {
       ex.printStackTrace();
@@ -73,6 +92,7 @@ public class AssociatePdbFileWithSeq
     entry.setFile(choice);
     sequence.getDatasetSequence().addPDBId(entry);
     return entry;
+    
   }
 
 }