Apply formatting
[proteocache.git] / engine / compbio / engine / JpredJob.java
index a606746..522ad9f 100644 (file)
@@ -3,7 +3,7 @@ package compbio.engine;
 import java.util.ArrayList;
 import java.util.List;
 
-import compbio.cassandra.FastaSequence;
+import compbio.data.sequence.FastaSequence;
 
 public class JpredJob extends Job {
        private String protein;
@@ -19,7 +19,7 @@ public class JpredJob extends Job {
                super(jobid, date1, date2);
                this.protein = protein;
                predictions = new ArrayList<FastaSequence>();
-               alignment  = new ArrayList<FastaSequence>();
+               alignment = new ArrayList<FastaSequence>();
                log = "";
        }
 
@@ -27,7 +27,7 @@ public class JpredJob extends Job {
                super(jobid, date1, date2);
                this.protein = protein;
                this.alignment = alignment;
-               this.predictions = predictions; 
+               this.predictions = predictions;
        }
 
        public void setProtein(String protein) {