Merge branch 'master' into PROT-9-webservice
[proteocache.git] / engine / compbio / engine / JpredJob.java
index db4a7fe..99981e4 100644 (file)
@@ -17,17 +17,15 @@ public class JpredJob extends Job {
 
        public JpredJob(String jobid, String date1, String date2) {
                super(jobid, date1, date2);
-               this.protein = protein;
                predictions = new ArrayList<FastaSequence>();
-               alignment  = new ArrayList<FastaSequence>();
+               alignment = new ArrayList<FastaSequence>();
                log = "";
        }
 
        public JpredJob(String jobid, String date1, String date2, List<FastaSequence> alignment, List<FastaSequence> predictions) {
                super(jobid, date1, date2);
-               this.protein = protein;
                this.alignment = alignment;
-               this.predictions = predictions; 
+               this.predictions = predictions;
        }
 
        public void setProtein(String protein) {