remove system.out
[jalview.git] / src / jalview / structure / StructureSelectionManager.java
index c0ab6f9..48f46ed 100644 (file)
@@ -69,9 +69,11 @@ public class StructureSelectionManager
      There will be better ways of doing this in the future, for now we'll use
      the tried and tested MCview pdb mapping
    */
-  synchronized public MCview.PDBfile setMapping(SequenceI[] sequence,
-                           String pdbFile,
-                           String protocol)
+  synchronized public MCview.PDBfile setMapping(
+      SequenceI[] sequence,
+      String[] targetChains,
+      String pdbFile,
+      String protocol)
   {
     MCview.PDBfile pdb = null;
     try
@@ -84,15 +86,19 @@ public class StructureSelectionManager
       return null;
     }
 
+    String targetChain;
     for (int s = 0; s < sequence.length; s++)
     {
-      String targetChain = "";
-
-      if (sequence[s].getName().indexOf("|") > -1)
+      if(targetChains!=null && targetChains[s]!=null)
+        targetChain = targetChains[s];
+      else if (sequence[s].getName().indexOf("|") > -1)
       {
         targetChain = sequence[s].getName().substring(
             sequence[s].getName().lastIndexOf("|") + 1);
       }
+      else
+        targetChain = "";
+
 
       int max = -10;
       AlignSeq maxAlignseq = null;
@@ -188,6 +194,7 @@ public class StructureSelectionManager
       mappings[mappings.length - 1]
           = new StructureMapping(sequence[s], pdbFile, pdb.id, maxChainId,
                                  mapping, mappingDetails.toString());
+      maxChain.transferResidueAnnotation(mappings[mappings.length-1]);
     }
     /////////
 
@@ -248,8 +255,6 @@ public class StructureSelectionManager
                                  mappings[j].getSeqPos(pdbResNum));
           }
         }
-
-        sl.highlightSequence(null, pdbResNum);
       }
     }
   }
@@ -285,7 +290,10 @@ public class StructureSelectionManager
 
   public Annotation[] colourSequenceFromStructure(SequenceI seq, String pdbid)
   {
-    Annotation [] annotations = new Annotation[seq.getLength()];
+    return null;
+    //THIS WILL NOT BE AVAILABLE IN JALVIEW 2.3,
+    //UNTIL THE COLOUR BY ANNOTATION IS REWORKED
+   /* Annotation [] annotations = new Annotation[seq.getLength()];
 
     StructureListener sl;
     int atomNo = 0;
@@ -319,9 +327,6 @@ public class StructureSelectionManager
                                  mappings[j].getPDBResNum(index),
                                  mappings[j].pdbchain,
                                  mappings[j].pdbfile);
-
-            //    System.out.println(atomNo+" "+mappings[j].getPDBResNum(index)
-            //                     +" "+index+" "+col);
               }
 
               annotations[index] = new Annotation("X",null,' ',0,col);
@@ -332,27 +337,15 @@ public class StructureSelectionManager
       }
     }
 
-    return annotations;
+    return annotations;*/
   }
 
 
   public void structureSelectionChanged()
-  {
-    StructureListener svl;
-    for (int i = 0; i < listeners.size(); i++)
-    {
-      svl = (StructureListener) listeners.elementAt(i);
-    }
-  }
+  {  }
 
   public void sequenceSelectionChanged()
-  {
-    StructureListener svl;
-    for (int i = 0; i < listeners.size(); i++)
-    {
-      svl = (StructureListener) listeners.elementAt(i);
-    }
-  }
+  {  }
 
   public void sequenceColoursChanged(Object source)
   {