JAL-2010 unused prototype method removed
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 25 Jun 2020 12:53:44 +0000 (13:53 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 25 Jun 2020 12:53:44 +0000 (13:53 +0100)
src/jalview/ext/rbvi/chimera/JalviewChimeraBinding.java

index c8875b4..487e93b 100644 (file)
@@ -535,34 +535,6 @@ public abstract class JalviewChimeraBinding extends AAStructureBindingModel
   }
 
   /**
-   * Send a 'show' command for all atoms in the currently selected columns
-   * 
-   * TODO: pull up to abstract structure viewer interface
-   * 
-   * @param vp
-   */
-  public void highlightSelection(AlignmentViewPanel vp)
-  {
-    List<Integer> cols = vp.getAlignViewport().getColumnSelection()
-            .getSelected();
-    AlignmentI alignment = vp.getAlignment();
-    StructureSelectionManager sm = getSsm();
-    for (SequenceI seq : alignment.getSequences())
-    {
-      /*
-       * convert selected columns into sequence positions
-       */
-      int[] positions = new int[cols.size()];
-      int i = 0;
-      for (Integer col : cols)
-      {
-        positions[i++] = seq.findPosition(col);
-      }
-      sm.highlightStructure(this, seq, positions);
-    }
-  }
-
-  /**
    * Constructs and send commands to Chimera to set attributes on residues for
    * features visible in Jalview.
    * <p>