JAL-1517 source formatting
[jalview.git] / src / jalview / viewmodel / PCAModel.java
index a501793..2983851 100644 (file)
@@ -47,7 +47,7 @@ public class PCAModel
   AlignmentView seqstrings;
 
   SequenceI[] seqs;
-  
+
   /**
    * Score matrix used to calculate PC
    */
@@ -70,7 +70,8 @@ public class PCAModel
   public void run()
   {
 
-    pca = new PCA(seqstrings.getSequenceStrings(' '), nucleotide, score_matrix);
+    pca = new PCA(seqstrings.getSequenceStrings(' '), nucleotide,
+            score_matrix);
     pca.setJvCalcMode(jvCalcMode);
     pca.run();
 
@@ -241,5 +242,5 @@ public class PCAModel
   {
     this.score_matrix = score_matrix;
   }
-  
+
 }