JAL-2795 moved ForesterMatrix to ext.forester
authorkjvdheide <kjvanderheide@dundee.ac.uk>
Sat, 28 Oct 2017 19:58:37 +0000 (20:58 +0100)
committerkjvdheide <kjvanderheide@dundee.ac.uk>
Sat, 28 Oct 2017 19:58:37 +0000 (20:58 +0100)
src/jalview/ext/forester/ForesterMatrix.java [moved from src/jalview/ext/archaeopteryx/ForesterMatrix.java with 89% similarity]

@@ -1,4 +1,4 @@
-package jalview.ext.archaeopteryx;
+package jalview.ext.forester;
 
 import jalview.math.MatrixI;
 
@@ -11,6 +11,10 @@ public class ForesterMatrix implements DistanceMatrix
   public ForesterMatrix(MatrixI jalviewInputMatrix)
   {
     this.jalviewMatrix = jalviewInputMatrix;
+    if (jalviewMatrix.width() != jalviewMatrix.height())
+    {
+
+    }
 
   }
 
@@ -30,7 +34,7 @@ public class ForesterMatrix implements DistanceMatrix
   @Override
   public int getSize()
   {
-    return 0;
+    return jalviewMatrix.width();
   }
 
   @Override