JAL-1683 replace year/version strings with tokens in source
[jalview.git] / src / jalview / ws / dbsources / Pdb.java
index a352de6..76e8351 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -21,6 +21,7 @@
 package jalview.ws.dbsources;
 
 import jalview.datamodel.Alignment;
+import jalview.datamodel.AlignmentAnnotation;
 import jalview.datamodel.DBRefEntry;
 import jalview.datamodel.DBRefSource;
 import jalview.datamodel.PDBEntry;
@@ -193,6 +194,13 @@ public class Pdb extends EbiFileRetrievedProxy implements DbSourceProxy
         for (SequenceI pdbcs : toremove)
         {
           pdbfile.deleteSequence(pdbcs);
+          if (pdbcs.getAnnotation()!=null)
+          {
+            for (AlignmentAnnotation aa: pdbcs.getAnnotation())
+            {
+              pdbfile.deleteAnnotation(aa);
+            }
+          }
         }
       }