Fix output points column labels
authorMorellThomas <morellth@yahoo.co.jp>
Wed, 31 Jan 2024 08:09:20 +0000 (09:09 +0100)
committerMorellThomas <morellth@yahoo.co.jp>
Wed, 31 Jan 2024 08:09:20 +0000 (09:09 +0100)
src/jalview/analysis/PaSiMap.java
src/jalview/viewmodel/PaSiMapModel.java

index a67f901..89bfff0 100755 (executable)
@@ -309,4 +309,9 @@ public class PaSiMap implements Runnable
   {
     return alignment.getAlignmentOutput();
   }
+
+  public byte getDim()
+  {
+    return dim;
+  }
 }
index 84cc366..ba9ad6a 100644 (file)
@@ -198,7 +198,7 @@ public class PaSiMapModel
     }
     else
     {
-      for (int d = 1, dmax = pasimap.component(1).length; d <= dmax; d++)
+      for (int d = 1, dmax = (int) pasimap.getDim(); d <= dmax; d++)
       {
         csv.append("," + d);
       }