2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.jws2;
23 import jalview.api.AlignViewportI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.datamodel.AlignmentAnnotation;
26 import jalview.datamodel.Annotation;
27 import jalview.datamodel.SequenceI;
28 import jalview.gui.AlignFrame;
29 import jalview.util.MessageManager;
30 import jalview.ws.jws2.jabaws2.Jws2Instance;
31 import jalview.ws.params.WsParamSetI;
33 import java.util.Iterator;
34 import java.util.List;
36 import compbio.data.msa.MsaWS;
37 import compbio.data.sequence.Alignment;
38 import compbio.data.sequence.Score;
39 import compbio.metadata.Argument;
40 import compbio.metadata.ChunkHolder;
41 import compbio.metadata.JobStatus;
42 import compbio.metadata.JobSubmissionException;
43 import compbio.metadata.ResultNotAvailableException;
44 import compbio.metadata.WrongParameterException;
46 public abstract class JabawsMsaInterfaceAlignCalcWorker extends
47 AbstractJabaCalcWorker
50 @SuppressWarnings("unchecked")
51 protected MsaWS msaservice;
53 protected Alignment msascoreset;
55 public JabawsMsaInterfaceAlignCalcWorker(AlignViewportI alignViewport,
56 AlignmentViewPanel alignPanel)
58 super(alignViewport, alignPanel);
61 public JabawsMsaInterfaceAlignCalcWorker(Jws2Instance service,
62 AlignFrame alignFrame, WsParamSetI preset, List<Argument> paramset)
64 this(alignFrame.getCurrentView(), alignFrame.alignPanel);
65 this.guiProgress = alignFrame;
67 this.arguments = paramset;
68 this.service = service;
69 msaservice = (MsaWS) service.service;
74 ChunkHolder pullExecStatistics(String rslt, long rpos)
76 return msaservice.pullExecStatistics(rslt, rpos);
80 boolean collectAnnotationResultsFor(String rslt)
81 throws ResultNotAvailableException
83 msascoreset = msaservice.getResult(rslt);
84 if (msascoreset != null)
92 boolean cancelJob(String rslt) throws Exception
94 return msaservice.cancelJob(rslt);
98 protected JobStatus getJobStatus(String rslt) throws Exception
100 return msaservice.getJobStatus(rslt);
106 return msaservice != null;
110 protected boolean isInteractiveUpdate()
112 return false; // this instanceof AAConClient;
116 protected String submitToService(
117 List<compbio.data.sequence.FastaSequence> seqs)
118 throws JobSubmissionException
121 if (preset == null && arguments == null)
123 rslt = msaservice.align(seqs);
129 rslt = msaservice.customAlign(seqs, getJabaArguments());
130 } catch (WrongParameterException x)
132 throw new JobSubmissionException(
134 .getString("exception.jobsubmission_invalid_params_set"),
141 protected void createAnnotationRowsForScores(
142 List<AlignmentAnnotation> ourAnnot, String calcId, int alWidth,
145 // simple annotation row
146 AlignmentAnnotation annotation = alignViewport.getAlignment()
147 .findOrCreateAnnotation(scr.getMethod(), calcId, true, null,
149 if (alWidth == gapMap.length) // scr.getScores().size())
151 constructAnnotationFromScore(annotation, 0, alWidth, scr);
152 ourAnnot.add(annotation);
156 protected AlignmentAnnotation createAnnotationRowsForScores(
157 List<AlignmentAnnotation> ourAnnot, String typeName,
158 String calcId, SequenceI dseq, int base, Score scr)
160 System.out.println("Creating annotation on dseq:" + dseq.getStart()
161 + " base is " + base + " and length=" + dseq.getLength()
162 + " == " + scr.getScores().size());
163 // AlignmentAnnotation annotation = new AlignmentAnnotation(
164 // scr.getMethod(), typeName, new Annotation[]
165 // {}, 0, -1, AlignmentAnnotation.LINE_GRAPH);
166 // annotation.setCalcId(calcId);
167 AlignmentAnnotation annotation = alignViewport.getAlignment()
168 .findOrCreateAnnotation(typeName, calcId, false, dseq, null);
169 constructAnnotationFromScore(annotation, 0, dseq.getLength(), scr);
170 annotation.createSequenceMapping(dseq, base, false);
171 annotation.adjustForAlignment();
172 dseq.addAlignmentAnnotation(annotation);
173 ourAnnot.add(annotation);
177 private void constructAnnotationFromScore(AlignmentAnnotation annotation,
178 int base, int alWidth, Score scr)
180 Annotation[] elm = new Annotation[alWidth];
181 Iterator<Float> vals = scr.getScores().iterator();
182 float m = 0f, x = 0f;
183 for (int i = 0; vals.hasNext(); i++)
185 float val = vals.next().floatValue();
203 // if we're at a gapped column then skip to next ungapped position
204 if (gapMap != null && gapMap.length > 0)
208 elm[i++] = new Annotation("", "", ' ', Float.NaN);
211 elm[i] = new Annotation("", "" + val, ' ', val);
214 annotation.annotations = elm;
215 annotation.belowAlignment = true;
221 annotation.graphMax = x;
222 annotation.graphMin = m;
223 annotation.validateRangeAndDisplay();