JAL-3949 Complete new abstracted logging framework in jalview.log. Updated log calls...
[jalview.git] / src / jalview / ws / jws2 / AADisorderClient.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.ws.jws2;
22
23 import jalview.api.FeatureColourI;
24 import jalview.bin.Cache;
25 import jalview.datamodel.AlignmentAnnotation;
26 import jalview.datamodel.GraphLine;
27 import jalview.datamodel.SequenceFeature;
28 import jalview.datamodel.SequenceI;
29 import jalview.gui.AlignFrame;
30 import jalview.schemes.FeatureColour;
31 import jalview.util.ColorUtils;
32 import jalview.ws.jws2.jabaws2.Jws2Instance;
33 import jalview.ws.params.WsParamSetI;
34
35 import java.awt.Color;
36 import java.util.ArrayList;
37 import java.util.HashMap;
38 import java.util.Hashtable;
39 import java.util.Iterator;
40 import java.util.List;
41 import java.util.Map;
42
43 import compbio.data.sequence.FastaSequence;
44 import compbio.data.sequence.Range;
45 import compbio.data.sequence.Score;
46 import compbio.data.sequence.ScoreManager.ScoreHolder;
47 import compbio.metadata.Argument;
48
49 public class AADisorderClient extends JabawsCalcWorker
50 {
51
52   private static final String THRESHOLD = "THRESHOLD";
53
54   private static final String RANGE = "RANGE";
55
56   String typeName;
57
58   String methodName;
59
60   String groupName;
61
62   AlignFrame af;
63
64   public AADisorderClient(Jws2Instance sh, AlignFrame alignFrame,
65           WsParamSetI thePreset, List<Argument> paramset)
66   {
67     super(sh, alignFrame, thePreset, paramset);
68     af = alignFrame;
69     typeName = sh.action;
70     methodName = sh.serviceType;
71
72     submitGaps = false;
73     alignedSeqs = false;
74     nucleotidesAllowed = false;
75     proteinAllowed = true;
76     bySequence = true;
77   }
78
79   @Override
80   public String getServiceActionText()
81   {
82     return "Submitting amino acid sequences for disorder prediction.";
83   }
84
85   @Override
86   boolean checkValidInputSeqs(boolean dynamic, List<FastaSequence> seqs)
87   {
88     return (seqs.size() > 0);
89   }
90
91   private static Map<String, Map<String, String[]>> featureMap;
92
93   private static Map<String, Map<String, Map<String, Object>>> annotMap;
94
95   private static String DONTCOMBINE = "DONTCOMBINE";
96
97   private static String INVISIBLE = "INVISIBLE";
98   static
99   {
100     // TODO: turn this into some kind of configuration file that's a bit easier
101     // to edit
102     featureMap = new HashMap<>();
103     Map<String, String[]> fmap;
104     featureMap.put(compbio.ws.client.Services.IUPredWS.toString(),
105             fmap = new HashMap<>());
106     fmap.put("Glob",
107             new String[]
108             { "Globular Domain", "Predicted globular domain" });
109     featureMap.put(compbio.ws.client.Services.JronnWS.toString(),
110             fmap = new HashMap<>());
111     featureMap.put(compbio.ws.client.Services.DisemblWS.toString(),
112             fmap = new HashMap<>());
113     fmap.put("REM465", new String[] { "REM465", "Missing density" });
114     fmap.put("HOTLOOPS", new String[] { "HOTLOOPS", "Flexible loops" });
115     fmap.put("COILS", new String[] { "COILS", "Random coil" });
116     featureMap.put(compbio.ws.client.Services.GlobPlotWS.toString(),
117             fmap = new HashMap<>());
118     fmap.put("GlobDoms",
119             new String[]
120             { "Globular Domain", "Predicted globular domain" });
121     fmap.put("Disorder",
122             new String[]
123             { "Protein Disorder", "Probable unstructured peptide region" });
124     Map<String, Map<String, Object>> amap;
125     annotMap = new HashMap<>();
126     annotMap.put(compbio.ws.client.Services.GlobPlotWS.toString(),
127             amap = new HashMap<>());
128     amap.put("Dydx", new HashMap<String, Object>());
129     amap.get("Dydx").put(DONTCOMBINE, DONTCOMBINE);
130     amap.get("Dydx").put(THRESHOLD, new double[] { 1, 0 });
131     amap.get("Dydx").put(RANGE, new float[] { -1, +1 });
132
133     amap.put("SmoothedScore", new HashMap<String, Object>());
134     amap.get("SmoothedScore").put(INVISIBLE, INVISIBLE);
135     amap.put("RawScore", new HashMap<String, Object>());
136     amap.get("RawScore").put(INVISIBLE, INVISIBLE);
137     annotMap.put(compbio.ws.client.Services.DisemblWS.toString(),
138             amap = new HashMap<>());
139     amap.put("COILS", new HashMap<String, Object>());
140     amap.put("HOTLOOPS", new HashMap<String, Object>());
141     amap.put("REM465", new HashMap<String, Object>());
142     amap.get("COILS").put(THRESHOLD, new double[] { 1, 0.516 });
143     amap.get("COILS").put(RANGE, new float[] { 0, 1 });
144
145     amap.get("HOTLOOPS").put(THRESHOLD, new double[] { 1, 0.6 });
146     amap.get("HOTLOOPS").put(RANGE, new float[] { 0, 1 });
147     amap.get("REM465").put(THRESHOLD, new double[] { 1, 0.1204 });
148     amap.get("REM465").put(RANGE, new float[] { 0, 1 });
149
150     annotMap.put(compbio.ws.client.Services.IUPredWS.toString(),
151             amap = new HashMap<>());
152     amap.put("Long", new HashMap<String, Object>());
153     amap.put("Short", new HashMap<String, Object>());
154     amap.get("Long").put(THRESHOLD, new double[] { 1, 0.5 });
155     amap.get("Long").put(RANGE, new float[] { 0, 1 });
156     amap.get("Short").put(THRESHOLD, new double[] { 1, 0.5 });
157     amap.get("Short").put(RANGE, new float[] { 0, 1 });
158     annotMap.put(compbio.ws.client.Services.JronnWS.toString(),
159             amap = new HashMap<>());
160     amap.put("JRonn", new HashMap<String, Object>());
161     amap.get("JRonn").put(THRESHOLD, new double[] { 1, 0.5 });
162     amap.get("JRonn").put(RANGE, new float[] { 0, 1 });
163   }
164
165   @Override
166   public void updateResultAnnotation(boolean immediate)
167   {
168
169     if (immediate || !calcMan.isWorking(this) && scoremanager != null)
170     {
171       Map<String, String[]> featureTypeMap = featureMap
172               .get(service.serviceType);
173       Map<String, Map<String, Object>> annotTypeMap = annotMap
174               .get(service.serviceType);
175       boolean dispFeatures = false;
176       Map<String, Object> fc = new Hashtable<>();
177       List<AlignmentAnnotation> ourAnnot = new ArrayList<>();
178       /**
179        * grouping for any annotation rows created
180        */
181       int graphGroup = 1;
182       if (alignViewport.getAlignment().getAlignmentAnnotation() != null)
183       {
184         for (AlignmentAnnotation ala : alignViewport.getAlignment()
185                 .getAlignmentAnnotation())
186         {
187           if (ala.graphGroup > graphGroup)
188           {
189             graphGroup = ala.graphGroup;
190           }
191         }
192       }
193
194       for (String seqId : seqNames.keySet())
195       {
196         boolean sameGroup = false;
197         SequenceI dseq, aseq, seq = seqNames.get(seqId);
198         int base = seq.findPosition(start) - 1;
199         aseq = seq;
200         while ((dseq = seq).getDatasetSequence() != null)
201         {
202           seq = seq.getDatasetSequence();
203         }
204         ScoreHolder scores = null;
205         try
206         {
207           scores = scoremanager.getAnnotationForSequence(seqId);
208         } catch (Exception q)
209         {
210           Cache.info("Couldn't recover disorder prediction for sequence "
211                           + seq.getName() + "(Prediction name was " + seqId
212                           + ")"
213                           + "\nSee http://issues.jalview.org/browse/JAL-1319 for one possible reason why disorder predictions might fail.");
214         }
215         float last = Float.NaN, val = Float.NaN;
216         int lastAnnot = ourAnnot.size();
217         if (scores != null && scores.scores != null)
218         {
219           for (Score scr : scores.scores)
220           {
221
222             if (scr.getRanges() != null && scr.getRanges().size() > 0)
223             {
224               Iterator<Float> vals = scr.getScores().iterator();
225               // make features on sequence
226               for (Range rn : scr.getRanges())
227               {
228
229                 SequenceFeature sf;
230                 String[] type = featureTypeMap.get(scr.getMethod());
231                 if (type == null)
232                 {
233                   // create a default type for this feature
234                   type = new String[] {
235                       typeName + " (" + scr.getMethod() + ")",
236                       service.getActionText() };
237                 }
238                 if (vals.hasNext())
239                 {
240                   val = vals.next().floatValue();
241                   sf = new SequenceFeature(type[0], type[1],
242                           base + rn.from, base + rn.to, val, methodName);
243                 }
244                 else
245                 {
246                   sf = new SequenceFeature(type[0], type[1],
247                           base + rn.from, base + rn.to, methodName);
248                 }
249                 dseq.addSequenceFeature(sf);
250                 if (last != val && !Float.isNaN(last))
251                 {
252                   fc.put(sf.getType(), sf);
253                 }
254                 last = val;
255                 dispFeatures = true;
256               }
257             }
258             else
259             {
260               if (scr.getScores().size() == 0)
261               {
262                 continue;
263               }
264               String typename, calcName;
265               AlignmentAnnotation annot = createAnnotationRowsForScores(
266                       ourAnnot,
267                       typename = service.serviceType + " ("
268                               + scr.getMethod() + ")",
269                       calcName = service.getServiceTypeURI() + "/"
270                               + scr.getMethod(),
271                       aseq, base + 1, scr);
272               annot.graph = AlignmentAnnotation.LINE_GRAPH;
273
274               Map<String, Object> styleMap = (annotTypeMap == null) ? null
275                       : annotTypeMap.get(scr.getMethod());
276
277               annot.visible = (styleMap == null
278                       || styleMap.get(INVISIBLE) == null);
279               double[] thrsh = (styleMap == null) ? null
280                       : (double[]) styleMap.get(THRESHOLD);
281               float[] range = (styleMap == null) ? null
282                       : (float[]) styleMap.get(RANGE);
283               if (range != null)
284               {
285                 annot.graphMin = range[0];
286                 annot.graphMax = range[1];
287               }
288               if (styleMap == null || styleMap.get(DONTCOMBINE) == null)
289               {
290                 {
291                   if (!sameGroup)
292                   {
293                     graphGroup++;
294                     sameGroup = true;
295                   }
296
297                   annot.graphGroup = graphGroup;
298                 }
299               }
300
301               annot.description = "<html>" + service.getActionText()
302                       + " - raw scores";
303               if (thrsh != null)
304               {
305                 String threshNote = (thrsh[0] > 0 ? "Above " : "Below ")
306                         + thrsh[1] + " indicates disorder";
307                 annot.threshold = new GraphLine((float) thrsh[1],
308                         threshNote, Color.red);
309                 annot.description += "<br/>" + threshNote;
310               }
311               annot.description += "</html>";
312               Color col = ColorUtils
313                       .createColourFromName(typeName + scr.getMethod());
314               for (int p = 0, ps = annot.annotations.length; p < ps; p++)
315               {
316                 if (annot.annotations[p] != null)
317                 {
318                   annot.annotations[p].colour = col;
319                 }
320               }
321               annot._linecolour = col;
322               // finally, update any dataset annotation
323               replaceAnnotationOnAlignmentWith(annot, typename, calcName,
324                       aseq);
325             }
326           }
327         }
328         if (lastAnnot + 1 == ourAnnot.size())
329         {
330           // remove singleton alignment annotation row
331           ourAnnot.get(lastAnnot).graphGroup = -1;
332         }
333       }
334       {
335         if (dispFeatures)
336         {
337           jalview.api.FeatureRenderer fr = ((jalview.gui.AlignmentPanel) ap)
338                   .cloneFeatureRenderer();
339           for (String ft : fc.keySet())
340           {
341             FeatureColourI gc = fr.getFeatureStyle(ft);
342             if (gc.isSimpleColour())
343             {
344               // set graduated color as fading to white for minimum, and
345               // autoscaling to values on alignment
346               FeatureColourI ggc = new FeatureColour(gc.getColour(),
347                       Color.white, gc.getColour(), Color.white,
348                       Float.MIN_VALUE, Float.MAX_VALUE);
349               ggc.setAutoScaled(true);
350               fr.setColour(ft, ggc);
351             }
352           }
353           // TODO: JAL-1150 - create sequence feature settings API for defining
354           // styles and enabling/disabling feature overlay on alignment panel
355           ((jalview.gui.AlignmentPanel) ap).updateFeatureRendererFrom(fr);
356           if (af.alignPanel == ap)
357           {
358             // only do this if the alignFrame is currently showing this view.
359             af.setShowSeqFeatures(true);
360           }
361         }
362         if (ourAnnot.size() > 0)
363         {
364           // Modify the visible annotation on the alignment viewport with the
365           // new alignment annotation rows created.
366           updateOurAnnots(ourAnnot);
367           ap.adjustAnnotationHeight();
368           ap.paintAlignment(true, true);
369         }
370       }
371     }
372   }
373
374   @Override
375   public String getCalcId()
376   {
377     // Disorder predictions are not dynamically updated so we return null
378     return null;
379   }
380
381 }